left operant must have segment
实验五第一题写完出现报错:left operant must have segement按照书上抄的 不知哪里有问题 希望各位大神帮我看一下assume cs:code,ds:data,ss:stack
data segment
dw 0123H,0456H,0789h,0abch,0defh,0fedh,0cbah,0987h
data ends
stack segment
dw 0,0,0,0,0,0,0,0
stack ends
code segment
start: mov ax,stack
mov ss,ax
mov sp,16
mov ax,data
mov ds,ax
push ds:
push ds:
popds:
popds:
mov ax:4c00h
int 21h
code ends
end start 哦哦 问题找到了 mov ax:4c00 mov ax,4c00 厉害
页:
[1]