;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- ; ;--------------------------------------------------; ; ; sdt286r.csd ; ; ; Generates the reconfigured sdt286r ; ; ;--------------------------------------------------; ; ; compile the user configuration module PLM86 sdt286r.dir/src/sdt286rcnf.p86 & PRINT (sdt286r.dir/lst/sdt286rcnf.lst) & OBJECT (sdt286r.dir/obj/sdt286rcnf.obj) large optimize (2) ROM ; ;--------------------------------------------------; ; ; Link the object files ; ; ;--------------------------------------------------; LINK86 & monitor/sdtmon286.lnk, & ** the test monitor, of course ** sdt286r.dir/obj/mline.lnk, & ** the main and utility procedures ** sdt286r.dir/obj/sdt286rcnf.obj, & ** the configuration module ** sdt286r.dir/obj/sdt286r.lib, & ** and the tests themselves ** sdt286r.dir/src/plm86.lib, & monitor/sdtlrg.lib & ** the monitor library ** & TO sdt286r.dir/obj/sdt286r.lnk & PRINT (sdt286r.dir/lst/sdt286r.mp1) INITCODE NOTYPE ; ;--------------------------------------------------; ; ; Locate the linked files ; ; ;--------------------------------------------------; LOC86 sdt286r.dir/obj/sdt286r.lnk & ** the bootable test will be found ** TO sdt286r & ** directly beneath /sdtdir in the ** PRINT (sdt286r.dir/lst/sdt286r.mp2) & ** directory ** RESERVE(00h to 0100FH) & ADDRESSES(SEGMENTS(mem_buffer0(7FF00H), & mem_buffer1(5FFC0H), & mem_buffer2(3FFC0H), & mem_buffer3(1FFC0H))) ; ;---------------------------------------------------; ; ; sdt286r.csd completed ; ; ; The reconfigured sdt286r can now be invoked by ; ; ; booting /sdtdir.286/sdt286r ; ; ;---------------------------------------------------; ;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-