UMBC CMSC 211

CSEE | 211 | Current | lectures | news | help


Project Extra Credit

Requirements Specification

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

/*****************************************************/
/* Program Header Block                              */
/* Filename:       projEC1.asm                       */
/* Name:           Ima Student                       */
/* SSAN:           123-45-6789 (could be XXX-XX-6789)*/
/* Date:           6 April 1998                      */
/* Course/section: CMSC-211                          */
/* Description:                                      */
/*     Analysis:                                     */
/*         Input:                                    */
/*         Output:                                   */
/*         Constraints:                              */
/*         Formulas:                                 */
/*         Assumptions:                              */
/*     Design:                                       */
/*         (Your psuedocode goes here.)              */
/*                                                   */
/* Notes:          (As needed.)                      */
/*****************************************************/


CSEE | 211 | Current | lectures | news | help