data segment ;数据段
string db 'Hello World!$'
data ends
code segment ;代码段
assume cs:code,ds:data
start:
mov dx,offset string;获取string的偏移地址并存在dx中
mov ah,9;输出dx指出的以$结尾的字符串
int 21h
code ends
end start
汇编hello world
最新推荐文章于 2024-11-02 22:50:43 发布