A Simple Assemply Language Program - MASM

Program:
.model small
.stack 20h
.data
          msg db 'Hello World$'
.code
.startup
          mov ah,09h
          mov dx,offset msg
          int 21h
          mov ah,4ch
          mov bx,00h
          int 21h
end

0 comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...