以下程序执行起来出了一个我无法解析的问题。循环执行到cx=3时,add bx,2执行后居然出现乱跳转的情况,目前还没搞清楚到底怎么一回事。
assume cs:code
a segment
dw 1,2,3,4,5,6,7,8,9,0ah,0bh,0ch,0dh,0eh,0fh,0ffh
a ends
b segment
dw 0,0,0,0,0,0,0,0
b ends
code segment
start:
mov ax,b
mov ss,ax
mov ax,10h
mov sp,ax
mov ax,a
mov ds,ax
mov bx,0h
mov cx,8h
s:
mov ax,[bx]
push ax
add bx,2h
loop s
mov ax,4c00h
int 21h
code ends
end start