diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-03 23:04:38 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-03 23:04:38 -0400 |
commit | d0854aa095421f225f7004cdcca0b8ad074303c5 (patch) | |
tree | d7c52aee6c0aa574e1b4230b5f28d49342470862 /kernel/cpu/cpu.c | |
parent | load multiboot memory map, heap is done!!! (diff) | |
download | comus-d0854aa095421f225f7004cdcca0b8ad074303c5.tar.gz comus-d0854aa095421f225f7004cdcca0b8ad074303c5.tar.bz2 comus-d0854aa095421f225f7004cdcca0b8ad074303c5.zip |
fmt
Diffstat (limited to 'kernel/cpu/cpu.c')
-rw-r--r-- | kernel/cpu/cpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/cpu/cpu.c b/kernel/cpu/cpu.c index 8f37402..a77baac 100644 --- a/kernel/cpu/cpu.c +++ b/kernel/cpu/cpu.c @@ -3,7 +3,8 @@ #include "pic.h" #include "idt.h" -void cpu_init(void) { +void cpu_init(void) +{ pic_remap(); idt_init(); fpu_init(); |