zx_asmtest

diff Makefile @ 0:34ec0f897aa3

interrupt handler works
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 19 Jan 2016 03:25:08 +0200
parents
children 04fc17db12e6
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Makefile	Tue Jan 19 03:25:08 2016 +0200
     1.3 @@ -0,0 +1,10 @@
     1.4 +tap = test.tap
     1.5 +
     1.6 +ASFLAGS = --alocal
     1.7 +
     1.8 +$(tap): test.asm
     1.9 +	pasmo $(ASFLAGS) --tapbas $< $@
    1.10 +
    1.11 +.PHONY: run
    1.12 +run: $(tap)
    1.13 +	fuse-sdl $(tap)