From 49e44e032d43d12dc3b8686d5993382fc2a96ca4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 15 Sep 2019 22:29:44 +0200 Subject: Removed unnecessary lines --- src/interrupts/idt.c | 1 - src/interrupts/isr.asm | 1 - 2 files changed, 2 deletions(-) (limited to 'src/interrupts') 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 -- cgit v1.2.3