UMBC CMSC211

Project 1 Due: 24 Sep

Requirements Specfication

Write an assembly language program that will do the following:

Sample Output


My name is Gary
Enter the list four digits of your SSN: 1234
You entered 1234
Today is 09/15/2002
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.

Program Header Comment Block

Use the following comment block at the beginning of your source code:
;;
;; Filename:       6789proj1.asm
;; Name:           Ima Student
;; SSAN:           6789  
;; Date:           3 Dec 2001
;; Course:         CMSC-211 
;;
;; Description (What are the program requirements):
;;    
;; Analysis (five parts):   
;;       Input:
;;       Output:
;;       Formulas:
;;       Constraints:
;;       Assumptions:
;;
;; Design:     (Your psuedocode goes here.  Must be detailed)
;;
;; Notes:          (As needed, such has how to assemble, if
;;                   it is necessary to do anything other than
;;                   ml 6789proj1.asm util.lib)
;;


UMBC CMSC211