aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/interrupts/isr.asm
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/interrupts/isr.asm')
-rw-r--r--src/kernel/interrupts/isr.asm11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/kernel/interrupts/isr.asm b/src/kernel/interrupts/isr.asm
index adabac6..00d986a 100644
--- a/src/kernel/interrupts/isr.asm
+++ b/src/kernel/interrupts/isr.asm
@@ -47,28 +47,33 @@ ISR_NOERRCODE 28
ISR_NOERRCODE 29
ISR_NOERRCODE 30
ISR_NOERRCODE 31
+ISR_NOERRCODE 128
extern fault_handler
isr_common_stub:
-push ds
+ pusha
+
+ push ds
push es
push fs
push gs
- pusha
mov ax, 0x10
mov ds, ax
mov es, ax
mov fs, ax
mov gs, ax
+ cld
push esp
call fault_handler
add esp, 4
- popa
pop gs
pop fs
pop es
pop ds
+ popa
+
+ add esp, 8
iret \ No newline at end of file