From 36b51236b35d79aa8a4d74bfdc9b2f51ac561aaa Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Mon, 12 Mar 2018 14:53:48 +0100 Subject: [PATCH] with the remap line --- kernel-rs/src/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }