# HG changeset patch # User Tormod Volden # Date 1424606165 -3600 # Node ID b547712d62097786b2a04743144cc6f2daaf7d00 # Parent 0373a199c2cf67528a66408ce071fc313ec30b85 level1: Add rompak version with bootfile from floppy This is for booting NitrOS-9 from a ROM cartridge, without going via BASIC. Like the other boot ROMs, it contains the kernel, however, like nos96809l1_1773.rom it will load the bootfile from a floppy drive. diff -r 0373a199c2cf -r b547712d6209 level1/coco1/bootroms/makefile --- a/level1/coco1/bootroms/makefile Sun Feb 22 12:39:13 2015 +0100 +++ b/level1/coco1/bootroms/makefile Sun Feb 22 12:56:05 2015 +0100 @@ -28,7 +28,9 @@ $(CMDS)/shell_21 \ $(MD)/clock_60hz $(MD)/clock2_soft -BOOTROMS = nos96809l1.rom nos96809l1.rompak nos96809l1_1773.rom +BOOTFILE_ROMPAK_1773 = $(MD)/rominfo + +BOOTROMS = nos96809l1.rom nos96809l1.rompak nos96809l1_1773.rom nos96809l1_1773.rompak KERNELS = kernel_rom ALLROMS = $(BOOTROMS) @@ -55,6 +57,14 @@ $(MERGE) $@.tmp2 $(MD)/vectors>$@ $(RM) $@.tmp $@.tmp2 +nos96809l1_1773.rompak: $(BOOTFILE_ROMPAK_1773) $(KERNEL_ROM_1773) $(DEPENDS) + $(MERGE) $(BOOTFILE_ROMPAK_1773)>$@.tmp + $(PADROM) 11776 $@.tmp + $(MERGE) $(KERNEL_ROM_1773)>kernel_rom + $(PADROM) 4352 kernel_rom + $(MERGE) $@.tmp kernel_rom>$@ + $(RM) $@.tmp + nos96809l1.rompak: $(BOOTFILE_ROMPAK) $(KERNEL_ROM) $(DEPENDS) $(MERGE) $(BOOTFILE_ROMPAK)>$@.tmp $(PADROM) 11776 $@.tmp