feature: both physical and virtual allocators should be done

This commit is contained in:
2024-09-26 16:18:06 +02:00
parent 9ade568a64
commit a66f9174f4
19 changed files with 571 additions and 62 deletions

View File

@ -1,5 +1,6 @@
#include "alloc.h"
#include "gdt.h"
#include "kpanic.h"
#include "kprintf.h"
#include "memory.h"
#include "shell.h"
@ -32,5 +33,6 @@ void kernel_main(void)
kprintf(KERN_NOTICE "KERN_NOTICE\n");
kprintf(KERN_INFO "KERN_INFO\n");
kprintf(KERN_DEBUG "KERN_DEBUG\n");
vmalloc(10);
shell_init();
}