; ; *-*-* BS38.CSD *-*-* ; ; This Submit file generates the iRMX III OMF386 Bootstrap Loader Device ; Specific Third Stage. ; ; Invocation: submit :f1:bs38(configuration file, ; location) ; Where: ; configuration file: The name of the Bootstrap Loader configuration ; file with no extension. If the configuration file is named ; BS38.A86, specify BS38. The located Third Stage will have ; the name specified. ; location: the memory location of the Third Stage. Use the default ; address 06000H if you have no special requirements. ; The default address is designed to function with standard ; iRMX III systems. ; ; The default directory (:$:) must contain the iRMX Bootstrap Loader ; configuration files. To obtain these, create a directory in ; which to generate the Bootstrap Loader, attach it as the default ; directory and invoke the following Submit file: ; ; submit /bsl/setup ; ;*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* attachfile /bsl as :f1: ; asm86 %0.a86 asm86 bmsc.a86 ;asm86 b224a.a86 ; link86 & %0.obj, & bmsc.obj, & & b224a.obj, & :f1:bs38.lib & to %0.lnk ; loc86 %0.lnk & addresses(classes(code(%1))) & order(classes(code,data)) & noinitcode purge & start(bs3) & map ; ;*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* ; ; The Third Stage, located at address %1, is in the file %0 ; ;*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*