diff options
Diffstat (limited to 'src/interrupts')
-rw-r--r-- | src/interrupts/idt.c | 1 | ||||
-rw-r--r-- | src/interrupts/isr.asm | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/interrupts/idt.c b/src/interrupts/idt.c index c75d378..0fb95df 100644 --- a/src/interrupts/idt.c +++ b/src/interrupts/idt.c @@ -31,7 +31,6 @@ void idt_set_gate(unsigned char num, unsigned long base, unsigned short sel, uns idt[num].flags = flags; } - // Install IDT void idt_install() { // Set IDT pointer and limit diff --git a/src/interrupts/isr.asm b/src/interrupts/isr.asm index d99a3dc..cf75157 100644 --- a/src/interrupts/isr.asm +++ b/src/interrupts/isr.asm @@ -249,7 +249,6 @@ isr31: push byte 31 jmp isr_common_stub - extern fault_handler ; Stores the ISR in the stack and calls the C fault handler |