Nigel
0f0fc9f252
Moved the PMM away from being object orientated as it is just plain annoying renamed src folder to source Set timeout to 5 seconds in the grub config
25 lines
333 B
C++
25 lines
333 B
C++
#include "VirtualMemoryManager.h"
|
|
|
|
extern "C" void loadPageDirectory (uint32_t* addr );
|
|
extern "C" void enablePaging();
|
|
|
|
void AllocatePage(uint32_t vaddr)
|
|
{
|
|
|
|
}
|
|
|
|
void FreePage(uint32_t vaddr )
|
|
{
|
|
|
|
}
|
|
|
|
void Map ( uint32_t vaddr, uint32_t paddr)
|
|
{
|
|
|
|
}
|
|
|
|
void Unmap(uint32_t vaddr)
|
|
{
|
|
// NOTE: I will implement lazy unmapping for now
|
|
}
|