当前位置: 代码迷 >> 汇编语言 >> 关于string db 'hello world!','$'中的$,该怎么处理
  详细解决方案

关于string db 'hello world!','$'中的$,该怎么处理

热度:3007   发布时间:2013-02-26 00:00:00.0
关于string db 'hello world!','$'中的$
string db 'hello world!','$'
这里$是什么作用
为什么没有这个$的话
 MOV AX,DATAS
  MOV DS,AX
  string db 'hello world!','$'
 
  mov ah,9
  mov dx,seg string
  mov ds,dx
  mov dx,offset string
  int 21h
  MOV AH,4CH
  INT 21H
这个运行时就会不正常输出结果


------解决方案--------------------------------------------------------
'$' 代表字符串结束,相当c里的‘\0’
  相关解决方案