Pages

Pages

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

No comments:

Post a Comment