Started Page Frame Allocator

This commit is contained in:
2026-01-28 17:34:08 +11:00
parent 6ee9dbc0f2
commit 459972c176
7 changed files with 131 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include "efiMemory.h"
#include <stdint.h>
#include "Bitmap.h"
#include "memory.h"
class pageFrameAllocator {
public:
void ReadEFIMemoryMap(EFI_MEMORY_DESCRIPTOR* mMap, size_t mMapSize, size_t mMapDescSize);
private:
void InitBitmap(size_t bitmap, void* bufferAddress);
}