From a395d7bf01456620806ae521878a60bdad8dc6e5 Mon Sep 17 00:00:00 2001 From: Ian C Date: Wed, 4 May 2016 13:48:43 +0100 Subject: First pass at SNES ROM output. Still to do: * ROM type * ROM checksums --- 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 f83d006..3c57e50 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 +ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc CASM = ../casm all: $(ALL) $(CASM) @@ -45,5 +45,8 @@ gb.gb: gb.asm $(CASM) vcs.bin: vcs.asm $(CASM) $(CASM) vcs.asm +snes.sfc: snes.asm $(CASM) + $(CASM) snes.asm + clean: rm -f $(ALL) -- cgit v1.2.3