UMBC CMSC211

Extra Credit Project Due: 15 May

Requirements Specfication

Write a program that will read the first sector (sector 0) on a floppy disk and then print out any strings in the 512 bytes, one string per line. Remember, this is not a file, so you can use the open file INT. You must use the one that reads an absolute sector. You must set up the registers, so that it will read the correct device and the right number of sectors. For this project, a string will be two or more displayable characters, where the displayable characters are in the range of 32 to 126. Sometimes the string is garbage, sometimes it is good.

Sample Output

(Blue letters are from the program and red letters are user input.) Use the following comment block at the beginning of your source code:

@@..>
This is a hidden message

Program Header Comment Block

Use the following comment block at the beginning of your source code:
;; Filename:       projEC.asm
;; Name:           Ima Student
;; SSAN:           6789  
;; Date:           3 Feb 2001
;; Course:         CMSC-211 
;; Description:    (Your psuedocode goes here.  Must be detailed)
;; Notes:          (As needed, such has how to compile)


UMBC CMSC211