From 45fd0ca73ec84a9b605f918a7b1b3497d2a25b33 Mon Sep 17 00:00:00 2001 From: Ian C Date: Fri, 20 May 2016 15:23:00 +0100 Subject: First pass at NES ROM support. --- 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 3c57e50..e92b2ec 100644 --- a/src/example/Makefile +++ b/src/example/Makefile @@ -20,7 +20,7 @@ # Makefile for examples # -ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc +ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc nes.nes CASM = ../casm all: $(ALL) $(CASM) @@ -48,5 +48,8 @@ vcs.bin: vcs.asm $(CASM) snes.sfc: snes.asm $(CASM) $(CASM) snes.asm +nes.nes: nes.asm $(CASM) + $(CASM) nes.asm + clean: rm -f $(ALL) -- cgit v1.2.3