Mercurial > hg > Members > kono > nitros9-code
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 |
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 | 2 |
1363 | 3 DEPENDS = ./makefile |
1238 | 4 BOOTERS_L2 = boot_vhd boot_mmc_l2 |
5 BOOTERS_L1 = boot_mmc_l1 | |
1184 | 6 ALLOBJS = $(BOOTERS_L2) $(BOOTERS_L1) |
45 | 7 |
8 all: $(ALLOBJS) $(DEPENDS) | |
9 | |
10 clean: | |
11 $(RM) $(ALLOBJS) | |
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 | 15 |
279 | 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 | 19 |
461 | 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 | 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 | 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 | 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 | 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 | 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 | 38 |
461 | 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 | 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 | 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 |