|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
定义数据 并累加进ax中
书上代码
assume cs:code
code segment
dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h
mov ax,0
mov bx,0
mov cx,8
s: add ax,cs:[bx]
add bx,2
loop s
mov ax,4c00h
int 21h
code ends
end
因为[bx]为一个字节8位
代码 add ax.cs[bx]与原意相违背
修改代码如下
assume cs:code
code segment
dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h
mov ax,0
mov bx,0
mov cx,8
s: mov dl,cs:[bx]
inc bx
mov dh,cs:[bx]
add ax,dx
inc bx
loop s
mov ax,4c00h
int 21h
code ends
end
如有不对请大家指出
|
|