;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- ; ;--------------------------------------------------; ; ; SDT 351. CSD ; ; ; [ creates the reconfigured SDT 351 ] ; ; ;--------------------------------------------------; ; ; compile the user configuration module PLM86 sdt351.dir/src/sdt351cnf.p86 LARGE & PRINT (sdt351.dir/lst/sdt351cnf.lst) & OBJECT(sdt351.dir/obj/sdt351cnf.obj) ; ;--------------------------------------------------; ; ; Link the object files ; ; ;--------------------------------------------------; LINK86 & monitor/sdtmon.lnk, & ** the test monitor, of course ** monitor/cmnlrg.lib, & ** the GPCP-SDTMON interface ** sdt351.dir/obj/mline.lnk, & ** the main and utility procedures ** sdt351.dir/obj/sdt351cnf.obj, & ** the configuration module ** sdt351.dir/obj/tests.lnk, & ** and THE TESTS THEMSELVES ** monitor/sdtlrg.lib & ** and the monitor library ** & TO sdt351.dir/obj/sdt351.lnk & PRINT(sdt351.dir/lst/sdt351.mp1) INITCODE ; ;--------------------------------------------------; ; ; Locate the linked files ; ; ;--------------------------------------------------; LOC86 sdt351.dir/obj/sdt351.lnk & TO SDT351 & PRINT(sdt351.dir/lst/sdt351.mp2) RESERVE(00h to 0100FH) ; ;--------------------------------------------------; ; ; sdt351.csd completed ; ; ; The reconfigured sdt351 can now be invoked by ; ; ; booting /sdtdir/sdt351 ; ; ;--------------------------------------------------; ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-