annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2890
1addfd8c9d5f Revert e4a0f58a5f9b (set NITROS9DIR in makefiles)
Tormod Volden <debian.tormod@gmail.com>
parents: 2758
diff changeset
1 include ../../rules.mak
45
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
2
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1238
diff changeset
3 DEPENDS = ./makefile
1238
481618f41f1d boot_mmc.asm updated, fixed makefile
boisy
parents: 1184
diff changeset
4 BOOTERS_L2 = boot_vhd boot_mmc_l2
481618f41f1d boot_mmc.asm updated, fixed makefile
boisy
parents: 1184
diff changeset
5 BOOTERS_L1 = boot_mmc_l1
1184
37c9e0e58367 Most booters moved to OS-9 directories
boisy
parents: 1175
diff changeset
6 ALLOBJS = $(BOOTERS_L2) $(BOOTERS_L1)
45
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
7
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
8 all: $(ALLOBJS) $(DEPENDS)
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
9
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
10 clean:
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
11 $(RM) $(ALLOBJS)
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
12
2965
9edca3e61b66 3rdparty: Stop build on failing dsk or dskcopy targets
Tormod Volden <debian.tormod@gmail.com>
parents: 2898
diff changeset
13 dsk:
9edca3e61b66 3rdparty: Stop build on failing dsk or dskcopy targets
Tormod Volden <debian.tormod@gmail.com>
parents: 2898
diff changeset
14 dskcopy:
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
15
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
16 # OS-9 Level Two Booters
657
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
17 boot_ktlr_id0: boot_scsi.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
18 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DKTLR=1 -Dscsiid=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
19
461
75f0c7261a96 *** empty log message ***
boisy
parents: 408
diff changeset
20 boot_ktlr_id5: boot_scsi.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
21 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DKTLR=1 -Dscsiid=32
407
d3b592db8f59 Added Kenton SCSI ID 5 target for ZIP drives
boisy
parents: 406
diff changeset
22
657
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
23 boot_tc3_id0: boot_scsi.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
24 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DTC3=1 -Dscsiid=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
25
406
3362a5cd8259 Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents: 392
diff changeset
26 boot_tc3_id5: boot_scsi.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
27 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DTC3=1 -Dscsiid=32
406
3362a5cd8259 Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents: 392
diff changeset
28
553
b93501797906 Added boot_vhd.asm from Robert Gault
boisy
parents: 461
diff changeset
29 boot_vhd: boot_vhd.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
30 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2
553
b93501797906 Added boot_vhd.asm from Robert Gault
boisy
parents: 461
diff changeset
31
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
32 boot_mmc_l2: boot_mmc.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
33 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
34
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
35 # OS-9 Level One Booters
657
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
36 boot_ktlr_id0_l1: boot_scsi.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
37 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DKTLR=1 -Dscsiid=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
38
461
75f0c7261a96 *** empty log message ***
boisy
parents: 408
diff changeset
39 boot_ktlr_id5_l1: boot_scsi.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
40 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DKTLR=1 -Dscsiid=32
407
d3b592db8f59 Added Kenton SCSI ID 5 target for ZIP drives
boisy
parents: 406
diff changeset
41
657
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
42 boot_tc3_id0_l1: boot_scsi.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
43 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DTC3=1 -Dscsiid=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
44
406
3362a5cd8259 Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents: 392
diff changeset
45 boot_tc3_id5_l1: boot_scsi.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
46 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DTC3=1 -Dscsiid=32
406
3362a5cd8259 Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents: 392
diff changeset
47
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
48 boot_mmc_l1: boot_mmc.asm
2669
53c42701f680 More parameter fixups for lwasm
William Astle <lost@l-w.ca>
parents: 1363
diff changeset
49 $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
50
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
51