UMBC CMSC 211 Fall 200 |
;; Filename: project0.asm ;; Name: Ima Student ;; SSAN: 6789 ;; Date: 27 Sep 99 ;; Course/section: CMSC-211 ;; Description: (Your psuedocode goes here) ;; Notes: (As needed, such has how to assembly)
;; Filename: project0.asm ;; Name: Ima Student ;; SSAN: 6789 ;; Date: 27 Sep 99 ;; Course/section: CMSC-211 ;; Description: (Your psuedocode goes here) ;; Notes: (As needed, such has how to assembly) .MODEL SMALL .STACK 100H INCLUDE PCMAC.INC .DATA Message DB 'Hello, my name is Ima Student', 13, 10, '$' .CODE Hello PROC MOV AX, @data MOV DS, AX _PutStr Message _Exit Hello ENDP END Hello