diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-15 22:50:36 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-15 22:50:36 -0400 |
commit | 210d325b15041eda279d36e1b155095238b2b393 (patch) | |
tree | 9cf5ed7fa81cc0882ddceca4b3c399d554d0b843 /kernel/cpu | |
parent | procs stub from wrc baseline (diff) | |
download | comus-210d325b15041eda279d36e1b155095238b2b393.tar.gz comus-210d325b15041eda279d36e1b155095238b2b393.tar.bz2 comus-210d325b15041eda279d36e1b155095238b2b393.zip |
fmt
Diffstat (limited to 'kernel/cpu')
-rw-r--r-- | kernel/cpu/idt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/cpu/idt.c b/kernel/cpu/idt.c index 250f939..8b4465f 100644 --- a/kernel/cpu/idt.c +++ b/kernel/cpu/idt.c @@ -110,7 +110,8 @@ char *EXCEPTIONS[] = { "Reserved", }; -void idt_exception_handler(uint64_t exception, uint64_t code, struct cpu_regs *state) +void idt_exception_handler(uint64_t exception, uint64_t code, + struct cpu_regs *state) { uint64_t cr2; |