diff options
Diffstat (limited to 'kernel/kernel.c')
| -rw-r--r-- | kernel/kernel.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/kernel.c b/kernel/kernel.c index b45703a..a5bbfcc 100644 --- a/kernel/kernel.c +++ b/kernel/kernel.c @@ -12,6 +12,7 @@ #include "spinlock.h" #include "syscalls.h" #include "mem.h" +#include "vmem.h" #include "interrupts.h" #include "acpi.h" #include "mp.h" @@ -153,10 +154,7 @@ void kernel_main(uint32_t initial_stack, int mp) // // Activate Virtual Memory (paging) // - // paging (pass the vesa physbase address for identity mapping) - // TODO: we will work on this later (not needed so urgently yet) - // - //vmem_init(vesa_physbase); + vmem_init(); // // Scan the PCI Bus |
