在读 王爽的 《汇编语言》5.3小节 。 主要讲的 是 如何 将 ffff:0006 单元的内容 * 3 保存下来。
在看到这个问题,我并没有 急于 去看 下面的 代码,而是 自己 去 写了一个 asm:
assume cs:codesg
;将 ffff:0006 单元的 内容 * 3
codesg segment
mov ax,ffffH
mov ds,ax
mov bx,6
mov ax,[bx]
mov cx,2
s:add ax,[bx]
loop s
mov ax,4c00H
int 21H
codesg ends
end
1.这段代码 编译 不过去,因为 汇编源代码中的数据不能以字母打头,所以得将 ffffh 修改成 0ffffh
2.其次 在 用 debug 跟踪 这个 exe 的时候,发现 程序 结果 不对。错误 出现在 mov ax,[bx] 和 add ax,[bx] 代码中。
mov ax,[bx] 是 将 ffff:6 ~ ffff:7 内存单元中的 内容 拷贝至 ax, 而不是 拷贝 ffff:6 单元。
add ax,[bx] 跟上面代码 错的 原因一致。
3.以及 masm 处理 mov ax,[3] 当做 mov ax,3 来看待。。。这个问题。代码中 不存在.
下面给出 正确的 汇编代码:
assume cs:codesg
;将 ffff:0006 单元的 内容 * 3
codesg segment
mov ax,0ffffH
mov ds,ax
mov bx,6
mov al,[bx]
mov ah,0
mov dx,0
mov cx,3
s:add dx,ax
loop s
mov ax,4c00H
int 21H
codesg ends
end