;;myfirst.asm- my first assembly language program. Displays the  
;;line 'HEllo, my name is Usman Malik' with macro coding

INCLUDE PCMAC.INC	
		.MODEL SMALL
		;.586
		.STACK 100h

		.DATA
CR		 EQU	13
LF		 EQU	10		
Message	 DB 'Hello, my name is Usman Malik',CR,LF, '$'

		.CODE
Hello    PROC
		_Begin
		_PutStr	Message
		_Exit	0 ; Return to Dos with (normal) return code 0edit 
           
Hello 	 ENDP

		 END Hello		;Tells where to start execution			