;字符串显示
;作者任嫱
;2007/10/21
;汇编语言最基础的程序
data segment
str db 'hello world!$'
data ends
code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
mov ah,09h
mov dx,offset str
int 21h
mov ah,4ch
int 21h
code ends
end start
;字符串显示
;作者任嫱
;2007/10/21
;汇编语言最基础的程序
data segment
str db 'hello world!$'
data ends
code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
mov ah,09h
mov dx,offset str
int 21h
mov ah,4ch
int 21h
code ends
end start