Mercurial > hg > Members > kono > nitros9-code
changeset 3240:1d905c091f7b
Updated makefile in level1/coco1/modules to create the boot and dwio modules for DriveWire
using the Deluxe RS232 Pak and DirectModem Pak.
Updated makefile in level2/coco3/modules to create the boot and dwio modules for DriveWire
using the Deluxe RS232 Pak and DirectModem Pak.
author | David Ladd <drencor-xeen@users.sourceforge.net> |
---|---|
date | Thu, 08 Mar 2018 23:55:45 -0600 |
parents | a47ee8f14eb8 |
children | a313b2992adc |
files | level1/coco1/modules/makefile level2/coco3/modules/makefile |
diffstat | 2 files changed, 36 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/level1/coco1/modules/makefile Thu Mar 08 21:36:34 2018 -0600 +++ b/level1/coco1/modules/makefile Thu Mar 08 23:55:45 2018 -0600 @@ -24,6 +24,7 @@ BOOTERS = boot_1773_6ms boot_1773_30ms \ boot_burke boot_rampak boot_wd1002 boot_dw \ boot_tc3 boot_ide boot_rom boot_dw_becker \ + boot_dw_rs232pak boot_dw_directmodempak \ boot_dw_arduino boot_dw_38400 boot_sdc BOOTTRACK = rel $(BOOTERS) KERNEL = krn krnp2 wbug @@ -35,6 +36,7 @@ RBF = rbf.mn \ rbdw.dr dwio.sb dwio_38400.sb dwio_becker.sb dwio_arduino.sb \ + dwio_rs232pak.sb dwio_directmodempak.sb \ rb1773.dr rb1773_scii_ff74.dr rb1773_scii_ff58.dr \ ddd0_35s.dd d0_35s.dd d1_35s.dd d2_35s.dd d3_35s.dd \ ddd0_40d.dd d0_40d.dd d1_40d.dd d2_40d.dd \ @@ -95,10 +97,26 @@ boot_dw_becker: boot_dw.asm $(AS) $< $(ASOUT)$@ $(AFLAGS) -DBECKER=1 +# DriveWire Deluxe RS232 Pak Booter +boot_dw_rs232pak: boot_dw.asm + $(AS) $< $(ASOUT)$@ $(AFLAGS) -DSY6551N=1 + +# DriveWire Direct Modem Pak Booter +boot_dw_directmodempak: boot_dw.asm + $(AS) $< $(ASOUT)$@ $(AFLAGS) -DSY6551N=1 -DSY6551B=65388 + # DriveWire Becker Submodule dwio_becker.sb: dwio.asm $(AS) $< $(ASOUT)$@ $(AFLAGS) -DBECKER=1 +# DriveWire Deluxe RS232 Pak Submodule +dwio_rs232pak.sb: dwio.asm + $(AS) $< $(ASOUT)$@ $(AFLAGS) -DSY6551N=1 + +# DriveWire Direct Modem Pak Submodule +dwio_directmodempak.sb: dwio.asm + $(AS) $< $(ASOUT)$@ $(AFLAGS) -DSY6551N=1 -DSY6551B=65388 + # DriveWire Arduino Booter boot_dw_arduino: boot_dw.asm $(AS) $< $(ASOUT)$@ $(AFLAGS) -DARDUINO=1
--- a/level2/coco3/modules/makefile Thu Mar 08 21:36:34 2018 -0600 +++ b/level2/coco3/modules/makefile Thu Mar 08 23:55:45 2018 -0600 @@ -25,7 +25,7 @@ BOOTERS = boot_1773_6ms boot_1773_30ms \ boot_burke boot_rampak boot_wd1002 boot_dw boot_dw_becker boot_dw_arduino \ - boot_tc3 boot_dide boot_ide boot_sdc boot_rom + boot_tc3 boot_dide boot_ide boot_sdc boot_rom boot_dw_rs232pak boot_dw_directmodempak BOOTTRACK = rel_32 rel_40 rel_80 rel_32_50hz rel_40_50hz rel_80_50hz $(BOOTERS) krn KERNEL = krnp2 krnp3_perr krnp4_regdump ccbkrn SYSMODS = ioman init sysgo_h0 sysgo_dd sysgo_rom sysgo_bd rominfo vectors @@ -36,6 +36,7 @@ RBF = rbf.mn \ rbdw.dr dwio.sb dwio_becker.sb dwio_arduino.sb \ + dwio_rs232pak.sb dwio_directmodempak.sb \ rb1773.dr rb1773_scii_ff74.dr rb1773_scii_ff58.dr \ d0_35s.dd d1_35s.dd d2_35s.dd d3_35s.dd \ d0_40d.dd d1_40d.dd d2_40d.dd d0_80d.dd \ @@ -111,10 +112,26 @@ boot_dw_becker: boot_dw.asm $(AS) $< $(ASOUT)$@ $(AFLAGS) -DBECKER=1 +# DriveWire Deluxe RS232 Pak Booter +boot_dw_rs232pak: boot_dw.asm + $(AS) $< $(ASOUT)$@ $(AFLAGS) -DSY6551N=1 + +# DriveWire DirectModem Pak Booter +boot_dw_directmodempak: boot_dw.asm + $(AS) $< $(ASOUT)$@ $(AFLAGS) -DSY6551N=1 -DSY6551B=65388 + # DriveWire Becker Submodule dwio_becker.sb: dwio.asm $(AS) $< $(ASOUT)$@ $(AFLAGS) -DBECKER=1 +# DriveWire Deluxe RS232 Pak Submodule +dwio_rs232pak.sb: dwio.asm + $(AS) $< $(ASOUT)$@ $(AFLAGS) -DSY6551N=1 + +# DriveWire Deluxe RS232 Pak Submodule +dwio_directmodempak.sb: dwio.asm + $(AS) $< $(ASOUT)$@ $(AFLAGS) -DSY6551N=1 -DSY6551B=65388 + # DriveWire Becker Booter boot_dw_arduino: boot_dw.asm $(AS) $< $(ASOUT)$@ $(AFLAGS) -DARDUINO=1