;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- ; ;--------------------------------------------------; ; ; sdt534.csd ; ; ; Generates the reconfigured sdt534 ; ; ;--------------------------------------------------; ; ; compile the user configuration module PLM86 sdt534.dir/src/sdt534cnf.p86 & PRINT (sdt534.dir/lst/sdt534cnf.lst) & OBJECT (sdt534.dir/obj/sdt534cnf.obj) large optimize (2) ; ;--------------------------------------------------; ; ; Link the object files ; ; ;--------------------------------------------------; LINK86 & monitor/sdtmon.lnk, & ** the test monitor, of course ** sdt534.dir/obj/mline.lnk, & ** the main and utility procedures ** sdt534.dir/obj/sdt534cnf.obj, & ** the configuration module ** sdt534.dir/obj/tests.lnk, & ** and the tests themselves ** monitor/sdtlrg.lib & ** the monitor library ** & TO sdt534.dir/obj/sdt534.lnk & PRINT (sdt534.dir/lst/sdt534.mp1) INITCODE ; ;--------------------------------------------------; ; ; Locate the linked files ; ; ;--------------------------------------------------; LOC86 sdt534.dir/obj/sdt534.lnk & ** the bootable test will be found ** TO sdt534 & ** directly beneath /sdtdir in the ** PRINT (sdt534.dir/lst/sdt534.mp2) & ** directory ** RESERVE(00h to 0100FH) ; ;--------------------------------------------------; ; ; sdt534.csd completed ; ; ; The reconfigured sdt534 can now be invoked by ; ; ; booting /sdtdir/sdt534 ; ; ;--------------------------------------------------; ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-