ptos: mm: Add physical memory groundwork

Signed-off-by: Chloe M <chloe@mensia.org>
This commit is contained in:
2026-07-10 18:26:29 -04:00
parent 5026a758ec
commit 27b9d726ff
4 changed files with 91 additions and 0 deletions
+4
View File
@@ -9,6 +9,7 @@
#include <ptdef.h>
#include <ke/bpal.h>
#include <ex/trace.h>
#include <mm/pm.h>
#include <hal/serial.h>
#include <drivers/bootvid/fbio.h>
#include <machine/pio.h>
@@ -45,4 +46,7 @@ KiKernelInit(VOID)
/* Initialize the boot video console */
BootVidInitCons(NULL);
/* Initialize physical memory */
MmPmInit();
}