Call gdt::init from blog_os::init

This commit is contained in:
Philipp Oppermann
2019-04-25 18:28:50 +02:00
parent 3c59321b54
commit 4774893a93
2 changed files with 1 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ pub mod serial;
pub mod vga_buffer;
pub fn init() {
gdt::init();
interrupts::init_idt();
}