汇编语言 我找了几遍不知错在哪,麻烦帮帮我
assume cs:codecodesegment
mov ax,0ffff
mov ds,ax
mov bx,6
mov al,
mov ah,0
mov dx,0
mov cx,123
s: add dx,ax
loop s
mov ax,4c00h
int 21h
code ends
end
0ffff后面没有加H。因为在asm文件中,如果是十六进制表示,需要要加H,否则编译器不知道那是什么。 @小靚同学Leon Thank You!
页:
[1]