Untitled_Kernel/include/physmem.h
lordtet ffd3b2fee4 Partially implemented physical frame management.
I'm tired. I'll think more about this tomorrow.
2025-07-11 01:38:26 -04:00

12 lines
228 B
C

#ifndef PHYSMEM_H
#define PHYSMEM_H
#include <stdint.h>
#include "kmultiboot.h"
#define PAGE_SIZE 0x1000
#define MEM_MAX 0xFFFFFFFF
extern uint8_t* pmem_bitmap;
void build_bitmap(mb_mmap_entry_t* mmap, int mmap_size);
#endif