diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-05-20 15:23:00 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-05-20 15:23:00 +0100 |
commit | 45fd0ca73ec84a9b605f918a7b1b3497d2a25b33 (patch) | |
tree | 4b01f2dcc8f0ce5b80092a08427f8aa449f43ad6 /src/example/Makefile | |
parent | 393556d2fc70dc0def5a6bb0463daf234ef23e36 (diff) |
First pass at NES ROM support.
Diffstat (limited to 'src/example/Makefile')
-rw-r--r-- | src/example/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
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) |