fix(Memmap): Cleanup

This commit is contained in:
Daniel Hammer
2025-03-08 00:14:44 +01:00
parent da424ae7b3
commit 88f7862a53
-11
View File
@@ -34,16 +34,5 @@ namespace Memory {
}
return currentLargestSection;
// PageAllocator pa(currentLargestSection);
// uint64_t alloc1 = (uint64_t)pa.Allocate();
// uint64_t alloc2 = (uint64_t)pa.Allocate();
// pa.Free((void *)alloc2);
// uint64_t alloc3 = (uint64_t)pa.Allocate();
// kout << "0x" << base::hex << alloc1 << "\n";
// kout << "0x" << base::hex << alloc2 << "\n";
// kout << "0x" << base::hex << alloc3 << "\n";
}
};