;; FIRST.ASM--Our first Assembly Language Program. This program displays the line 'Hello my name is Andre Long' on the screen .MODEL SMALL .586 ;Allows Pentium instructions. Must come after >MODEL .STACK 100h .DATA Message DB 'Hello my name is Andre Long student SCC CISP 310', 13, 10, '$' .CODE Hello PROC mov ax, @data mov ds, ax mov dx, OFFSET Message mov ah, 9h ; Function code for Displaying String int 21h ; The standard way to call the OS mov al, 0 ; Return code of 0 mov ah, 4ch ; Function code for Exit to OS int 21h Hello ENDP END Hello ; Tells where to start execution