Add missing import

This commit is contained in:
Philipp Oppermann
2019-09-14 19:08:05 +02:00
parent 8d3d712cef
commit f56e4d24e3

View File

@@ -16,6 +16,7 @@ entry_point!(kernel_main);
fn kernel_main(boot_info: &'static BootInfo) -> ! { fn kernel_main(boot_info: &'static BootInfo) -> ! {
use blog_os::allocator; use blog_os::allocator;
use blog_os::memory::{self, BootInfoFrameAllocator}; use blog_os::memory::{self, BootInfoFrameAllocator};
use x86_64::VirtAddr;
println!("Hello World{}", "!"); println!("Hello World{}", "!");
blog_os::init(); blog_os::init();