关于Symbol type conflict 的问题
由于本人刚学汇编,对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
请问为什么会出现这个错误,应该怎么改才对,感谢!!