1
0
mirror of https://github.com/UzixLS/zx-sizif-xxs.git synced 2025-07-19 07:11:28 +03:00

new magic rom with menu

This commit is contained in:
UzixLS
2021-06-17 22:00:59 +03:00
parent ec1805f092
commit 1435f856b3
12 changed files with 2527 additions and 270 deletions

View File

@ -1,8 +1,20 @@
export PATH:=/cygdrive/c/Hwdev/sjasmplus/:/cygdrive/c/Dev/srec/:${PATH}
SJOPTS='-DSIZIFXXS'
.PHONY: all clean .FORCE
.FORCE:
all: main.bin
%.bin: %.asm
sjasmplus $<
clean:
rm -f *.bin *.mem *.hex *.map *.sna
%.bin: %.asm .FORCE
sjasmplus ${SJOPTS} $<
%.mem: %.bin
srec_cat $< -binary -o $@ -vmem 8
%.hex: %.bin
srec_cat $< -binary -o $@ -intel
test: main_test.bin