with the remap line

This commit is contained in:
Jack Halford 2018-03-12 14:53:48 +01:00
parent ec1e7c8a5b
commit 36b51236b3

View file

@ -103,6 +103,6 @@ fn context() -> &'static mut Context {
pub fn init(multiboot_info_addr: usize) { pub fn init(multiboot_info_addr: usize) {
unsafe { CONTEXT = Some(Context::new(multiboot_info_addr)) }; 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(); self::init_screen();
} }