Page fault when returning from IRQ7 dummy
Posted: Sat Mar 04, 2006 11:48 am
I have read in the FAQ that you may need a IRQ7 dummy so I have tried to implement one because I got a few IRQ7 calls recently but now I get a Page fault at 0x27 instead.
This is how I do:
my asm skills isn't verry good at the moment, been to lazy ::)
This is how I do:
Code: Select all
; 39: IRQ7
_isr39:
cli
push byte 0
push byte 39
push eax
mov eax, 0x0B
out 0x20, eax
in eax, 0x20
or eax, 0x80
jz NotSet
pop eax
ret
NotSet:
pop eax
jmp isr_common_stub