From ffd8072d07fff825fa7114715397ab5235c54b05 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 16 Nov 2025 11:31:01 -0500 Subject: kern: vm: Add initial physical memory management Signed-off-by: Ian Moffett --- sys/kern/kern_init.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/kern/kern_init.c') diff --git a/sys/kern/kern_init.c b/sys/kern/kern_init.c index bba8cea..74e17c4 100644 --- a/sys/kern/kern_init.c +++ b/sys/kern/kern_init.c @@ -30,6 +30,7 @@ #include #include #include +#include struct console g_bootcons; void kmain(void); @@ -39,4 +40,5 @@ kmain(void) { console_reset(&g_bootcons); trace("bootcons: console online\n"); + vm_phys_init(); } -- cgit v1.2.3