【发布时间】:2015-02-02 12:31:57
【问题描述】:
我的masm源文件如下:
qq.asm
assume cs:codesegment
codesegment segment
mov ax, 0ffffh
mov ds, ax
mov al, 00ffh
mov bx, 0006h
mov [bx], al
mov al, [0006]
mov ah, 0
mov dx, 0
mov cx, 3
s: add dx, ax
loop s
mov ax, 4c00h
int 21h
codesegment ends
end
我用masm程序生成了一个.exe文件,名字叫qq.exe。我用debug qq.exe -u时,图中教官如下:
我混淆了我的 qq.asm 中的“mov al, [0006]”教练在 qq.exe 中变成了“mov AL,06”。 任何帮助将不胜感激。
【问题讨论】:
标签: assembly windows-7 64-bit masm dosbox