汇编语言中字符串存储时DB DW怎么确定是选用DB存储还是DW存储?
发布网友
发布时间:2022-05-20 04:19
我来回答
共1个回答
热心网友
时间:2023-10-24 02:56
字符串存储必须用db(单字节顺序存放),
不能用dw(双字节顺序存放,且要分开编辑。按低到低字节、高到高位字节对应)
code segment
assume cs:code
org 100h
start:
jmp bbb
nop
msg1 dw 'he','ll','o ','wo','rl','d ',' $'
bbb:
push cs
pop ds
lea dx,msg1
mov ah,9
int 21h
mov ah,4ch
int 21h
code ends
end start
上例输出的是“ehll oowlr d”,而不是“hello world”