 ;; FIRST.ASM--Our first Assembly Language Program.  This program 
;;   displays the line 'Hello, my name is Bill Jones' on the CRT screen.
;;
;;  Program text from "Assembly Language for the IBM PC Family" by
;;   William B. Jones, (c) Copyright 1992, 1997, 2001, Scott/Jones Inc.
;;
INCLUDE PCMAC.INC      
        .MODEL  SMALL
        .586

        .STACK  100h

        .DATA
CR      EQU     13
LF      EQU     10
Message DB      'My name is Hov', CR, LF, '$'
Mess2	DB      'HOV', CR, LF, '$'
Mess3	DB      'HOVVVVV', CR, LF, '$'
Mess4	DB      '(Whew!)', CR, LF, '$'

        .CODE
Hello   PROC
        _Begin
        _PutStr Message
        _PutStr Mess2
        _PutStr Mess3
        _PutStr Mess4
        
        _Exit   0
Hello   ENDP

        END     Hello ; Tells where to start execution
