mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-21 20:57:25 +00:00
11 lines
117 B
C
11 lines
117 B
C
|
|
#include "fpu.h"
|
|
#include "pic.h"
|
|
#include "idt.h"
|
|
|
|
void cpu_init(void)
|
|
{
|
|
pic_remap();
|
|
idt_init();
|
|
fpu_init();
|
|
}
|