feat(pic): use remap_pic

This commit is contained in:
Malo Lecomte 2021-07-15 16:53:44 +02:00
parent ff0f7f79bd
commit d5a8623acd

2
k/k.c
View File

@ -26,6 +26,7 @@
#include "gdt.h"
#include "idt.h"
#include "multiboot.h"
#include "pic.h"
#include "serial.h"
#include "stdio.h"
@ -34,6 +35,7 @@ static void k_init(void)
init_serial();
init_gdt();
init_idt();
remap_pic();
}
void k_main(unsigned long magic, multiboot_info_t *info)