| CSCI 464 | 100 Points |
//jobname JOB ,'your name'
//*
// JCLLIB ORDER=(T90CSCI.CSCI464.PROCLIB)
//STEP1 EXEC ASSIST
//SYSIN DD *
*SYSLIB EQUREGS
EQUREGS
TITLE '*** CSCI 464 BASE REGISTER REPLACEMENT ROUTINE ***'
*
.
your DSECT (if one is used) for your base register table can go here
.
*
BROPS2 CSECT
. storage for your base register table can be
. declared here in this CSECT
*
.
your BRINIT, BRUSIN, BRDROP, and BRDISP CSECTs go here
.
.
END
EJECT
*SYSLIB BROPSRUN
BROPSRUN
The last 2 lines above simply a) notify ASSIST that a macro called
BROPSRUN is to be copied into this CSECT and b) invoke the macro named BROPSRUN.
This macro is a copy of the test program that will be run to test the operation
of your replacement modules. By invoking this macro, you do not have to type in
the test program; consequently, you do not have to worry about making typing
errors. Note that the *SYSLIB begins in column 1.