我想编写简单的程序,将与定制一个只应递减某个变量代替标准键盘中断。 但是它不会没有旧处理程序调用工作。 这里是我的中断处理程序:
handler proc
push ax
push di
dec EF
;pushf ;when these to instructions commented keyboard interrupts handling hangs
;call [OLD]
mov al,20h
out 20h,al
pop di
pop ax
iret
handler endp
什么样的行动我也应该执行在我的处理程序,使其工作没有旧的处理程序? 谢谢。