Move vmm fully into hal

This commit is contained in:
2025-09-02 07:51:02 +02:00
parent 0fb3a1ca75
commit 920de10025
13 changed files with 76 additions and 186 deletions

View File

@ -4,7 +4,6 @@
#include "hal/hal.h"
#include "bootinfo/bootinfo.h"
#include "pmm/pmm.h"
#include "vmm/vmm.h"
#include "term/term.h"
#include "dlmalloc/malloc.h"
#include "vfs/vfs.h"
@ -61,7 +60,7 @@ void kmain(void) {
log_bootinfo();
hal_init();
pmm_init();
vmm_init();
hal_vmm_init();
dlmalloc_check();
storedev_init();
baseimg_init();