From ee2438c01d298a90d61f2fcde4e0394d51c89088 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Wed, 29 Jul 2015 00:05:21 -0700 Subject: 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 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') 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 -- cgit v1.2.3