;Program TEST.ASM: Testing the MASM installation. ; .MODEL SMALL .DATA MSG DB 'Way to go... MASM works!',13,10,'$' .CODE .STARTUP LEA DX,MSG ;set up pointer to greeting MOV AH,9 ;display string function INT 21H ;DOS call .EXIT END