Nigel
dea8ab7d71
Added new entries to .gitignore Moved away from source directory as central spot for all source code
17 lines
388 B
C
17 lines
388 B
C
#pragma once
|
|
#include "../terminal/kterm.h"
|
|
#include "../i386/processor.h"
|
|
#include "PhysicalMemoryManager.h"
|
|
|
|
|
|
void SetupVMM();
|
|
|
|
void AllocatePage(uint32_t v_addr );
|
|
void FreePage(uint32_t v_addr);
|
|
|
|
void Immediate_Map(uint32_t vaddr, uint32_t paddr);
|
|
void Immediate_Unmap (uint32_t v_addr);
|
|
|
|
// void Demand_map(uint32_t p_addr, uint32_t v_addr);
|
|
// void Demand_Unmap (uint32_t v_addr);
|