feat: completely functional PMM

This commit is contained in:
karina
2026-04-26 15:12:04 +04:00
parent 785a61b451
commit 55335013a9
4 changed files with 78 additions and 9 deletions
+5 -1
View File
@@ -16,4 +16,8 @@ typedef struct {
VMMemoryRegion totalRAM;
VMMemoryRegion reserved[kVMMaxReservedRegions];
UInt32 reservedCount;
} VMBootMemoryMap;
} VMBootMemoryMap;
void PMMInitialize(VMBootMemoryMap* bootMap);
Pointer PMMAllocatePage();
void PMMFreePage(Address address);