page table manager working

This commit is contained in:
2026-01-28 20:32:55 +11:00
parent 823b13234e
commit e4620f60c9
14 changed files with 110 additions and 14 deletions

View File

@@ -4,6 +4,7 @@ uint64_t freeMemory;
uint64_t reservedMemory;
uint64_t usedMemory;
bool Initialized = false;
PageFrameAllocator GlobalAllocator;
void PageFrameAllocator::ReadEFIMemoryMap(EFI_MEMORY_DESCRIPTOR* mMap, size_t mMapSize, size_t mMapDescSize){
if (Initialized) return;