Files
nub-os/src/arch/arch.h
nub31 71c73dd493 ...
2025-09-03 14:57:07 +02:00

21 lines
303 B
C

#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);
extern memory_map_t memory_map;