This commit is contained in:
nub31
2025-09-03 14:57:07 +02:00
parent 33239034a7
commit 71c73dd493
4 changed files with 20 additions and 21 deletions

View File

@@ -1,4 +1,21 @@
#pragma once
#include <stddef.h>
#include <stdint.h>
typedef struct
{
uint64_t base_address;
size_t length;
} memory_region_t;
typedef struct
{
memory_region_t* regions;
size_t num_regions;
} memory_map_t;
void panic();
void put_char(char character);
void put_char(char character);
extern memory_map_t memory_map;