aboutsummaryrefslogtreecommitdiff
path: root/i686/isr.c
diff options
context:
space:
mode:
Diffstat (limited to 'i686/isr.c')
-rw-r--r--i686/isr.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/i686/isr.c b/i686/isr.c
index 3f99425..6fbe200 100644
--- a/i686/isr.c
+++ b/i686/isr.c
@@ -36,5 +36,12 @@ __attribute__((interrupt)) void
irq0x01(struct interrupt_frame *)
{
ps2_keyboard_irq_handler();
- pic_clear(0x00);
+ pic_clear(0x01);
+}
+
+__attribute__((interrupt)) void
+irq0x0c(struct interrupt_frame *)
+{
+ printf("irq 0x0c\n");
+ pic_clear(0x0c);
}