Mercurial > hg > Members > kono > nitros9-code
changeset 406:3362a5cd8259
Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
author | boisy |
---|---|
date | Wed, 04 Sep 2002 14:01:09 +0000 |
parents | b29f25481eca |
children | d3b592db8f59 |
files | 3rdparty/booters/boot_scsi.asm 3rdparty/booters/makefile |
diffstat | 2 files changed, 10 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/3rdparty/booters/boot_scsi.asm Tue Sep 03 16:43:55 2002 +0000 +++ b/3rdparty/booters/boot_scsi.asm Wed Sep 04 14:01:09 2002 +0000 @@ -33,9 +33,9 @@ edition set 1 * The default SCSI ID is here -scsiid equ %00000001 +scsiid set %00000001 -* Hard Disk Interface registers for the Ken-ton and RGB HDI +* Hard Disk Interface registers for the Ken-Ton and RGB HDI ifne Kenton dataport equ $FF74 status equ dataport+1
--- a/3rdparty/booters/makefile Tue Sep 03 16:43:55 2002 +0000 +++ b/3rdparty/booters/makefile Wed Sep 04 14:01:09 2002 +0000 @@ -2,9 +2,9 @@ DEPENDS = ./Makefile BOOTERS_NITROS = boot_ide_nl2 -BOOTERS_L2 = boot_kenton boot_rampak boot_tc3 boot_ide boot_wd1002 \ +BOOTERS_L2 = boot_kenton boot_rampak boot_tc3 boot_tc3_id5 boot_ide boot_wd1002 \ boot_burke boot_rom -BOOTERS_L1 = boot_kenton_l1 boot_rampak_l1 boot_tc3_l1 boot_ide_l1 \ +BOOTERS_L1 = boot_kenton_l1 boot_rampak_l1 boot_tc3_l1 boot_tc3_id5_l1 boot_ide_l1 \ boot_burke_l1 boot_rom_l1 ALLOBJS = $(BOOTERS_NITROS) $(BOOTERS_L2) $(BOOTERS_L1) @@ -31,6 +31,9 @@ boot_tc3: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 +boot_tc3_id5: boot_scsi.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 -ascsiid=64 + boot_wd1002: boot_wd1002.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 @@ -50,6 +53,9 @@ boot_tc3_l1: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 +boot_tc3_id5_l1: boot_scsi.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 -ascsiid=64 + boot_rampak_l1: boot_rampak.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1