aboutsummaryrefslogtreecommitdiff
path: root/src/example/Makefile
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2021-11-20 10:01:52 +0000
committerIan C <ianc@noddybox.co.uk>2021-11-20 10:01:52 +0000
commit607668671eb6d10e7ca036df81b3f288bce57339 (patch)
treedf5973eb6e5828aede9948bac0e6d728fdd82fdc /src/example/Makefile
parent38e9dd313001142ae36254cc6c8ef79d369dc109 (diff)
Added Intel HEX output handler
Diffstat (limited to 'src/example/Makefile')
-rw-r--r--src/example/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/example/Makefile b/src/example/Makefile
index a76a21f..700e9e5 100644
--- a/src/example/Makefile
+++ b/src/example/Makefile
@@ -21,7 +21,7 @@
#
ALL = spectrum.tap t64.t64 zx81.p gb.gb vcs.bin snes.sfc nes.nes cpc.cdt \
- prg.prg
+ prg.prg hex.hex
CASM = ../casm
all: $(ALL) $(CASM)
@@ -58,6 +58,9 @@ nes.nes: nes.asm tiles.chr nes.pal $(CASM)
prg.prg: prg.asm $(CASM)
$(CASM) prg.asm
+hex.hex: emucpm.z80 $(CASM)
+ $(CASM) emucpm.z80
+
clean:
rm -f $(ALL)