From a8131ea5ed00c11517c2cb605834eb103ecac250 Mon Sep 17 00:00:00 2001 From: Ian C Date: Sun, 17 Apr 2016 22:47:10 +0100 Subject: Various fixes * Added VCS example, which highlighted some bug in the zero page detection. * 6502 fixes for the above. Still a problem with code generation. * Updates to Gameboy code (example still not working in emulator). * Fixed listing not being generated when enabled. --- src/example/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/example/Makefile') diff --git a/src/example/Makefile b/src/example/Makefile index d184de0..906bb44 100644 --- a/src/example/Makefile +++ b/src/example/Makefile @@ -20,7 +20,7 @@ # Makefile for examples # -ALL = spectrum.tap c64.t64 zx81.p gb.rom +ALL = spectrum.tap c64.t64 zx81.p gb.rom vcs.bin CASM = ../casm all: $(ALL) $(CASM) @@ -42,5 +42,8 @@ zx81.p: zx81.asm $(CASM) gb.rom: gb.asm $(CASM) $(CASM) gb.asm +vcs.bin: vcs.asm $(CASM) + $(CASM) vcs.asm + clean: rm -f $(ALL) -- cgit v1.2.3