## Quelldateien assemblieren: ASM.SUB: rmac bioskrnl sz pz ; Z means zero output rmac boot sz pz rmac drvtbl sz pz rmac move sz pz rmac fdprofbk sz pz rmac harddisk sz pz rmac ramdisk sz pz rmac scb sz pz rmac chario sz pz ## BNKBIOS erstellen - REL -Dateien linken (zusammenfuegen) LINK.SUB: link bnkbios3[b,nr]=bioskrnl,boot,drvtbl,move,fdprofbk,scb,chario ## CPM.SYS generieren: GENCOM AUTO (eine PROFILE.DAT wird benötigt) >gencpm auto CP/M 3.0 System Generation Copyright (C) 1982, Digital Research *** CP/M 3.0 SYSTEM GENERATION DONE *** ######################################## ## CPMLADER erstellen: ## ldrbios.asm ist hier nicht vorhanden ;MLDR.SUB: ;rmac ldrbios sz pz ;link cpmldr[l100]=cpmldr,ldrbios ;ren cpmldr.hxc=cpmldr.com ###################################################################### RMAC Syntax: RMAC filespec toptions) Purpose: RMAC, a relocatable macro assembler, assembles ASM files into REL files that you can link to create COM files. RMAC options specify the destination of the output files. Replace d with the destination drive letter for the output files. RMAC Options (d=output option parameter): Rd drive for REL file (A-0, Z) Sd drive for SYM file (A-0, X, P, Z) Pd drive for PRN file (A-0, X, P, Z) The d parameter can have the following values: A-0 specifies drive A-0 X means output to the console P means output to the printer Z means zero output Example: A>RMAC TEST $PX SB RB Assembles the file TEST.ASM from drive A, sends the listing file (TEST.PRN) to the console, puts the symbol file (TEST.SYM) on drive B and puts the relocatable object file (TEST.REL) on drive B. #######################################################################