Files
SplenkOS/kernel/src/PageFrameAllocator.h

14 lines
303 B
C
Raw Normal View History

2026-01-28 17:34:08 +11:00
#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);
}