Mercurial > hg > Members > kono > nitros9-code
view 3rdparty/booters/makefile @ 3210:6353bb024571
Created makefile and defsfile for NoCan RAMMER module driver and descriptor
Updated rammer.asm in the NoCan driver folder to build the NoCan version of the Driver
Updated r0.asm file to create the 6MB version of the descriptor.
The makefile creates a disk image with two sets of the required drivers for
the 6309 and 6809's in their respective module folders.
/NITROS9/6309_L2/MODULES/RBF
for the 6309 files
and
/NITROS9/6809_L2/MODULES/RBF
for the 6809 files.
This will make it easier for doing a dsave from this disk image into a
normal distro disk image so people have these drivers ready for when
new memory upgrades allow compatible usage of the NoCan registers.
author | David Ladd <drencor-xeen@users.sourceforge.net> |
---|---|
date | Wed, 20 Dec 2017 15:15:49 -0600 |
parents | 9edca3e61b66 |
children |
line wrap: on
line source
include ../../rules.mak DEPENDS = ./makefile BOOTERS_L2 = boot_vhd boot_mmc_l2 BOOTERS_L1 = boot_mmc_l1 ALLOBJS = $(BOOTERS_L2) $(BOOTERS_L1) all: $(ALLOBJS) $(DEPENDS) clean: $(RM) $(ALLOBJS) dsk: dskcopy: # OS-9 Level Two Booters boot_ktlr_id0: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DKTLR=1 -Dscsiid=1 boot_ktlr_id5: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DKTLR=1 -Dscsiid=32 boot_tc3_id0: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DTC3=1 -Dscsiid=1 boot_tc3_id5: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DTC3=1 -Dscsiid=32 boot_vhd: boot_vhd.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 boot_mmc_l2: boot_mmc.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 # OS-9 Level One Booters boot_ktlr_id0_l1: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DKTLR=1 -Dscsiid=1 boot_ktlr_id5_l1: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DKTLR=1 -Dscsiid=32 boot_tc3_id0_l1: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DTC3=1 -Dscsiid=1 boot_tc3_id5_l1: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DTC3=1 -Dscsiid=32 boot_mmc_l1: boot_mmc.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1