求大家帮忙看下,王爽书中的程序6.3,我编写的代码无法编译
assume cs::codesgcodesg segment
dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h
dw 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
start: mov ax,cs
mov ss,ax
mov sp,30h
mov bx,0
mov cx,8
s: push cs:
add bx,2
loop s
mov bx,0
mov cx,8
s0: pop cs:
add bx,2
loop s0
mov ax,4c00h
int 21h
codesg ends
end start
谁能好心帮我看看哪里错了么?
assume cs:codesg, 不能是两个冒号啊,后面因为假设对应错了,才找不到cs上午,改一下应该就可以了 恩冒号打的多了 和CS联系不上 去掉一个冒号试试 assume cs:codesg, 不能是两个冒号
页:
[1]