Move away from using recursive mapping for page tables.

Having the HHDM-based mapping allows us to more easily map data into
non-resident processes.
This commit is contained in:
Drew Galbraith 2023-05-30 01:06:01 -07:00
parent c6921b5459
commit f6609983d2
3 changed files with 73 additions and 66 deletions

View file

@ -17,9 +17,6 @@ extern "C" void zion() {
InitGdt();
InitIdt();
dbgln("[boot] Init Paging.");
InitPaging();
dbgln("[boot] Init Physical Memory Manager.");
phys_mem::InitBootstrapPageAllocation();
KernelHeap heap(0xFFFFFFFF'40000000, 0xFFFFFFFF'80000000);