stos: vmm: Initialize virtual memory manager

Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
Chloe M.
2026-06-22 23:27:26 +00:00
parent 32a1463b92
commit eb8861e641
3 changed files with 44 additions and 0 deletions
+4
View File
@@ -13,6 +13,7 @@
#include <hal/kpcr.h>
#include <drivers/bootvid/fbio.h>
#include <mm/pmm.h>
#include <mm/vmm.h>
#include <stdef.h>
#define DTRACE(Fmt, ...) \
@@ -52,6 +53,9 @@ KiKernelEntry(VOID)
/* Initialize physical memory */
MmInitPmm();
/* Initialize virtual memory */
MmInitVmm();
/* Phase 1 initialization the bootstrap core */
HalKpcrP1Init(&BootstrapCore);
}