summaryrefslogtreecommitdiff
path: root/asm/int_irq0.asm
diff options
context:
space:
mode:
Diffstat (limited to 'asm/int_irq0.asm')
-rw-r--r--asm/int_irq0.asm9
1 files changed, 9 insertions, 0 deletions
diff --git a/asm/int_irq0.asm b/asm/int_irq0.asm
new file mode 100644
index 0000000..a713774
--- /dev/null
+++ b/asm/int_irq0.asm
@@ -0,0 +1,9 @@
+global int_irq0
+[extern exception_handle]
+
+[bits 32]
+int_irq0:
+
+ cli
+ call exception_handle ;this will never return due to panic!
+ jmp $