yyj0073 发表于 2013-6-13 20:43:57

为什么显示不出来'welcom to masm!'

assume cs:code

data segment
   db 'welcom to masm','$'
data ends

code segment
start:mov ah,2
      mov bh,0
      mov dh,5
          mov dl,12
          int 10h
          
          mov ah,9
          mov ax,data
          mov ds,ax
          mov dx,0
          int 21h
          
          mov ax,4c00h
          int 21h
          
          
code ends
end start

          
                
页: [1]
查看完整版本: 为什么显示不出来'welcom to masm!'