summaryrefslogtreecommitdiff
path: root/trap.c
diff options
context:
space:
mode:
Diffstat (limited to 'trap.c')
-rw-r--r--trap.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/trap.c b/trap.c
index f35f8de..f95e563 100644
--- a/trap.c
+++ b/trap.c
@@ -62,6 +62,11 @@ trap(struct trapframe *tf)
kbdintr();
lapiceoi();
break;
+ case IRQ_OFFSET + IRQ_COM1:
+ uartintr();
+ lapiceoi();
+ break;
+ case IRQ_OFFSET + 7:
case IRQ_OFFSET + IRQ_SPURIOUS:
cprintf("cpu%d: spurious interrupt at %x:%x\n",
cpu(), tf->cs, tf->eip);