assume cs:codesg
codesg segment
dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h
start: mov ax,0
mov ds,ax
mov bx,0
mov cx,8
s:mov ax,[bx]
mov cs:[bx],ax
add bx,2
loop s
mov ax,4c00h
int 21h
codesg ends
end start
------解决方案--------------------
不是程序里修改的吧,应该是调试软件该的 01 和 03 中断以指向调试软件的相应中断功能入口,从而可以实现自己的调试功能。