注册 登录
编程论坛 汇编论坛

关于Symbol type conflict 的问题

czsbc 发布于 2010-04-15 22:18, 2159 次点击
由于本人刚学汇编,对masm编译器不甚了解,下面的程序在masm5.00里没有错误,而在masm9.00里有错误
data segment
string db 'hello world!',13,10,'$'
data ends
code segment
assume ds:data,cs:code
start:  mov ax,data
        mov ds,ax
        mov dx,offset string
        mov ah,09h
        int 21h
        mov ah,4ch
        int 21h
code ends
end start

错误如下
(6)error A2004:symbol type conflict
请问为什么会出现这个错误,应该怎么改才对,感谢!!
1 回复
#2
zklhp2010-04-16 13:51
mov ax,seg data

貌似改成这样就对
1