Built byte-swapped + split roms for N2630

This commit is contained in:
Matt Harlum 2023-12-08 19:27:09 +00:00
parent 31f5460fb3
commit 05795b28cc
4 changed files with 11 additions and 4 deletions

View File

@ -24,7 +24,7 @@ jobs:
run: |
git config --global --add safe.directory "*"
git fetch --prune --unshallow --tags
make clean disk lha
make clean all disk lha
- uses: actions/upload-artifact@master
with:

View File

@ -34,7 +34,7 @@ LDFLAGS+= -lnix13
.PHONY: clean all lideflash disk lha rename/renamelide lidetool/lidetool
.INTERMEDIATE: move16.o
all: $(ROM) lideflash rename/renamelide
all: $(ROM) lideflash rename/renamelide lide-N2630-high.rom lide-N2630-low.rom
OBJ = driver.o \
ata.o \
@ -91,9 +91,16 @@ $(BUILDDIR)/lide-update.lha: lideflash/lideflash $(ROM) rename/renamelide lideto
lha: $(BUILDDIR)/lide-update.lha
lide-N2630-high.rom: $(ROM)
srec_cat lide-word.rom -binary -split 2 0 1 -out $@ -binary
lide-N2630-low.rom: $(ROM)
srec_cat lide-word.rom -binary -split 2 1 1 -out $@ -binary
clean:
-rm $(PROJECT)
make -C bootrom clean
make -C lideflash clean
make -C rename clean
-rm -rf *.rom
-rm -rf $(BUILDDIR)

View File

@ -16,4 +16,4 @@ lideflash: $(SRCS) *.h
${CC} -o $@ $(CFLAGS) $(SRCS)
clean:
-rm $(PROJECT)
-rm -rf $(PROJECT)

View File

@ -13,4 +13,4 @@ renamelide: $(SRCS)
${CC} -o $@ $(CFLAGS) $(SRCS)
clean:
-rm $(PROJECT)
-rm -rf $(PROJECT)