Mercurial > hg > Members > kono > nitros9-code
diff 3rdparty/booters/makefile @ 93:0c12245b7bdc
Fixed NitrOS-9 and OS-9 Level Two bug where Address was too far off the
end of the module for the ldy <Address,pcr to work
author | boisy |
---|---|
date | Wed, 03 Jul 2002 19:19:16 +0000 |
parents | efb0d7b57679 |
children | 20e8c354b914 |
line wrap: on
line diff
--- a/3rdparty/booters/makefile Wed Jul 03 07:01:37 2002 +0000 +++ b/3rdparty/booters/makefile Wed Jul 03 19:19:16 2002 +0000 @@ -2,7 +2,8 @@ DEPENDS = ./Makefile BOOTERS = boot_kenton boot_rampak boot_tc3 boot_ide boot_wd1002 \ - boot_rom boot_rom_l1 boot_tc3_l1 boot_kenton_l1 + boot_rom boot_rom_l1 boot_tc3_l1 boot_kenton_l1 boot_ide_l1 \ + boot_ide_nl2 ALLOBJS = $(BOOTERS) all: $(ALLOBJS) $(DEPENDS) @@ -20,9 +21,6 @@ boot_tc3: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=0 -aTC3=1 -boot_ide: boot_ide.asm - $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 - boot_wd1002: boot_wd1002.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 @@ -38,3 +36,12 @@ boot_tc3_l1: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -aTC3=0 +boot_ide: boot_ide.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aNitrOS9=0 + +boot_ide_nl2: boot_ide.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aNitrOS9=1 + +boot_ide_l1: boot_ide.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aNitrOS9=0 +