masm.masm
424 Bytes
; Syntax Highlighting Test File for MASM
; Comment Line's are like this
; Hello world in MASM Assembly
.MODEL tiny
.CODE
ORG 100h
HELLO PROC
MOV AH,09h
LEA DX,msg
INT 21h ;Display Hello World
MOV AX,4C00h ;Exit to DOS
INT 21h
HELLO ENDP
msg DB 'Hello World$'
END HELLO