From 7393db6692c861bc66164c0dd9b83f23a554775b Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Wed, 26 Nov 2014 23:17:55 +0100 Subject: changes, improvements and cleanup --- asm/int_irq0.asm | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 asm/int_irq0.asm (limited to 'asm/int_irq0.asm') 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 $ -- cgit v1.2.3