;; JUNK2.ASM--More hacking around ;; INCLUDE PCMAC.INC .MODEL SMALL .586 .STACK 100h .DATA CR EQU 13 LF EQU 10 Message DB 'Hello, This is a line of text', CR, LF, '$' Mess2 DB 'The answer is: ' Answer DB 'x' Answer2 DB 'y' Answer3 DB 'z' Close DB CR, LF, '$' .CODE Hello PROC _Begin _PutStr Message mov al, Answer add al, 2 mov Answer, al mov al, Answer2 mov ah, Answer3 add ax, 1 mov Answer2, al mov Answer3, ah _PutStr Mess2 ; Show the 2nd msg. etc. _Exit 0 Hello ENDP END Hello ; Tells where to start execution