diff --git a/kernel-rs/src/context.rs b/kernel-rs/src/context.rs index fd258849..0ac48644 100644 --- a/kernel-rs/src/context.rs +++ b/kernel-rs/src/context.rs @@ -103,6 +103,6 @@ fn context() -> &'static mut Context { pub fn init(multiboot_info_addr: usize) { unsafe { CONTEXT = Some(Context::new(multiboot_info_addr)) }; - // memory::remap_the_kernel(frame_allocator(), boot_info()); + memory::remap_the_kernel(frame_allocator(), boot_info()); self::init_screen(); }