i fixed your code bro :/

This commit is contained in:
2026-01-28 17:46:17 +11:00
parent 459972c176
commit 7c94d21e31
11 changed files with 16 additions and 15 deletions

View File

@@ -5,10 +5,11 @@
#include "Bitmap.h"
#include "memory.h"
class pageFrameAllocator {
class PageFrameAllocator {
public:
void ReadEFIMemoryMap(EFI_MEMORY_DESCRIPTOR* mMap, size_t mMapSize, size_t mMapDescSize);
Bitmap PageBitmap;
private:
void InitBitmap(size_t bitmap, void* bufferAddress);
}
void InitBitmap(size_t bitmapSize, void* bufferAddress);
};