summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2015-07-29 00:05:21 -0700
committerMichael Pavone <pavone@retrodev.com>2015-07-29 00:05:21 -0700
commitee2438c01d298a90d61f2fcde4e0394d51c89088 (patch)
treede4356c634df9a146b7f3486d1000e2ef84208a7 /Makefile
parent7f3358e31c30e519a45258917fc419e57b4ca422 (diff)
Implement a tiny bit of CPM BDOS and add a corresponding Z80 core driver so that simple CPM programs like ZEXDOC/ZEXALL can be run against my Z80 core
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 873ea0c..6c4e1a7 100644
--- a/Makefile
+++ b/Makefile
@@ -164,6 +164,9 @@ stateview$(EXE) : stateview.o vdp.o render_sdl.o $(CONFIGOBJS) gst.o
vgmplay$(EXE) : vgmplay.o render_sdl.o $(CONFIGOBJS) $(AUDIOOBJS)
$(CC) -o $@ $^ $(LDFLAGS)
$(FIXUP) ./$@
+
+blastcpm : blastcpm.o util.o $(Z80OBJS) $(TRANSOBJS)
+ $(CC) -o $@ $^
test : test.o vdp.o
$(CC) -o test test.o vdp.o