diff options
Diffstat (limited to 'src/arch/amd64/shim.c')
-rw-r--r-- | src/arch/amd64/shim.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/amd64/shim.c b/src/arch/amd64/shim.c index 5639aab..ec030db 100644 --- a/src/arch/amd64/shim.c +++ b/src/arch/amd64/shim.c @@ -7,12 +7,15 @@ #include "paging.h" #include "mboot.h" #include "idt.h" +#include "pic.h" + static struct boot_info boot_info; void* amd64_shim(void *mboot_data_ptr) { serial_init(); paging_init(); idt_init(); + pic_remap(); kmap_page(mboot_data_ptr, mboot_data_ptr, F_WRITEABLE); |