X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=zxkeybtest;a=blobdiff_plain;f=Makefile;h=eefd9a0283a13d2ab6f385d78d7a95e9da1365c7;hp=501cb6f6bf42461516c339c572b1213784311bff;hb=HEAD;hpb=a63899029c65781a66b02c4da7f35a36699525bc diff --git a/Makefile b/Makefile index 501cb6f..eefd9a0 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -name = testrom +name = zxkeybtest src = $(wildcard *.asm) obj = $(src:.asm=.o) bin = $(name).bin @@ -10,6 +10,9 @@ ASFLAGS = -Fvobj LD = vlink LDFLAGS = -b rawbin1 +.PHONY: all +all: tap rom + .PHONY: tap tap: $(tap) @@ -28,7 +31,7 @@ $(tap): $(bin) %.o: %.asm $(AS) -o $@ $(ASFLAGS) -L $*.lst $< >/dev/null -testrom.o: testrom.asm glyphs.inc logo.inc +zxkeybtest.o: zxkeybtest.asm glyphs.inc logo.inc .PHONY: clean clean: @@ -40,4 +43,4 @@ run: $(tap) .PHONY: program program: $(rom) - minipro -p 'AT28C16 @DIP24' -s -w $< + minipro -p 'AT28C16E @DIP24' -s -w $<