UMBC CMSC 211

CSEE | 211 | Current | lectures | news | help


Project 6

Requirements Specfication

Print out the Interrupt Vector Table. This table starts at address 0000:0000. Print out the segment and offset for each of the 256 interrupts.

Output will be in the form of (not valid address):

Interrupt  Address
---------  -------
    0      1234:2345
    1      2345:3456
    2      3456:4567
    3      4567:5678
.
.(this is left out of my example, you must do all of them!)
.
  255      1234:2345
  

Program Header Block

;; Filename:       first.asm
;; Name:           Ima Student  (This is your name.  Without it, you don't
;;                               get a grade.)
;; SSAN:           6789  
;; Date:           3 October 2000
;; Course:         CMSC-211 
;; Description:    (Your psuedocode goes here)
;; Notes:          (As needed, such has how to assembly)


CSEE | 211 | Current | lectures | news | help