aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/interrupts.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/interrupts.c')
-rw-r--r--src/drivers/interrupts.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/drivers/interrupts.c b/src/drivers/interrupts.c
index 1bd0b44..08f4c15 100644
--- a/src/drivers/interrupts.c
+++ b/src/drivers/interrupts.c
@@ -137,7 +137,8 @@ void isr_handler(struct regs *r)
if (handler) {
handler(r);
} else if (r->int_no <= 32) {
- printf("#%d Exception, halting!\n", r->int_no);
+ printf("\n#%d Exception, halting!\n", r->int_no);
+ printf("Error code: %d\n", r->err_code);
__asm__("cli");
while (1) {
};
@@ -181,6 +182,8 @@ void isr_install()
idt_set_gate(29, (u32)isr29, 0x08, 0x8E);
idt_set_gate(30, (u32)isr30, 0x08, 0x8E);
idt_set_gate(31, (u32)isr31, 0x08, 0x8E);
+
+ idt_set_gate(0x80, (u32)isr128, 0x08, 0x8E);
}
/**