UMBC CMSC 211 Fall 200

CSEE | 211 | 211 F'99 | lectures | news | help


Project 0

Requirements Specfication

Enter the assembly language program into a source file, assemble it and when it is working correctly email the file to the TA.

Program Header Comment Block

Use the following comment block at the beginning of your source code. Make sure you use your own name and the last four of your SSAN, so you get the credit you deserve. This block will be used for all your work this semester in this class.
;; 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)

Code

;; 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

Sample output

Hello, my name is Ima Student The part in red is what is typed in when the program executes. The green part is what your program will compute and display. This will change if the part in red is changed at runtime. Obviously, I want your name printed out!


CSEE | 211 | 211 F'99 | lectures | news | help