Untitled_Kernel/include/physmem.h

12 lines
209 B
C
Raw Permalink Normal View History

2025-07-09 21:44:59 +00:00
#ifndef PHYSMEM_H
#define PHYSMEM_H
#include <stdint.h>
#include "kmultiboot.h"
2025-07-09 21:44:59 +00:00
#define PAGE_SIZE 0x1000
extern uint8_t* pmem_bitmap;
unsigned int build_bitmap(mb_mmap_entry_t* mmap, int mmap_size);
2025-07-09 21:44:59 +00:00
#endif