# HG changeset patch # User boisy # Date 1031148069 0 # Node ID 3362a5cd825954c33133809b322742d437355f18 # Parent b29f25481ecafb10d3c7c40074254644a6ae76fa Added SCSI ID 5 boot modules for TC^3 (for ZIP drives) diff -r b29f25481eca -r 3362a5cd8259 3rdparty/booters/boot_scsi.asm --- 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 diff -r b29f25481eca -r 3362a5cd8259 3rdparty/booters/makefile --- 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