汇编->字符串显示

时间:2021-01-22 22:15:36

 

;字符串显示
;作者任嫱
;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