virtual page allocation

This commit is contained in:
nub31
2025-09-06 18:32:52 +02:00
parent 62680a05bc
commit 5f071104bc
4 changed files with 77 additions and 23 deletions

View File

@@ -26,8 +26,7 @@ void x86_64_main(u32 magic, multiboot_info_t* info)
enable_interrupts();
pmm_init(info);
void* mem = vmm_alloc(1);
vmm_free(mem, 1);
vmm_init();
kernel_main();
}