下面是我改写int 9h的中断程序(在dos下,按下a键松开显示满屏幕的a,其它的键照常处理)。
stack1 segment
db 128 dup(0)
stack1 ends
code segment
assume cs:code,ss:stack1
start: mov ax,stack1 ;安装新的int9h例程
mov ss,ax
mov sp,128
mov ax,0
mov es,ax
push cs
pop ds
mov si, offset newint9h
mov di,204h
mov cx,offset endnewint9h-offset newint9h
cld
rep movsb
push es:[9*4h] ;保存原例程地址
pop es:[200h]
push es:[9*4h+2h]
pop es:[202h]
cli
mov word ptr es:[4*9h],200h ;设置新例程入口
mov word ptr es:[4*9h+2],0
sti
mov ax,4c00h
int 21h
newint9h:
push ax
push bx
push cx
push es
in al,60h
pushf
call dword ptr cs:[200h]
cmp al,9eh
jne int9ret
mov ax,0b800h
mov es,ax
mov bx,0
mov cx,25
s: push cx
mov cx,80
s0: mov byte ptr es:[bx],61h
add bx,2
loop s0
pop cx
loop s
int9ret: pop es
pop cx
pop bx
pop ax
iret
endnewint9h: nop
code ends
end start
通过运行cmd后在dos下:\>debug 我的程序
在debug中有按下a,松开显示满屏幕a的效果,可是回到dos时,就没这个效果了,而重新回到debug状态下又有这种效果了。这时dos中应该是我的新的中断例程呀,可是为什么实际上不是呢?