From 2c2551fa28a8d625efde19accf747f3739950d61 Mon Sep 17 00:00:00 2001 From: Ian C Date: Mon, 16 Mar 2020 09:22:00 +0000 Subject: Added Z80 code from DS81. --- src/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 8ed3914..8deb3e5 100644 --- a/src/Makefile +++ b/src/Makefile @@ -22,6 +22,10 @@ TARGET=czx81 CURSES=-lncurses OBJS= czx81.o \ + z80.o \ + z80_decode.o \ + z80_dis.o \ + stream.o \ zx81rom.o $(TARGET): $(OBJS) @@ -31,4 +35,8 @@ clean: rm -f $(TARGET) $(OBJS) core czx81.o: czx81.c wide_curses.h +stream.o: stream.c stream.h +z80.o: z80.c z80.h z80_config.h z80_private.h stream.h +z80_decode.o: z80_decode.c z80.h z80_config.h z80_private.h +z80_dis.o: z80_dis.c z80_config.h z80.h z80_private.h zx81rom.o: zx81rom.c zx81rom.h -- cgit v1.2.3