diff Makefile @ 1752:d6d4c006a7b3

Initial attempt at interrupts in new Z80 core and integrating it into main executable
author Michael Pavone <pavone@retrodev.com>
date Sun, 10 Feb 2019 11:58:23 -0800
parents c5d4e1d14dac
children 057198058196
line wrap: on
line diff
--- a/Makefile	Sat Feb 09 11:52:43 2019 -0800
+++ b/Makefile	Sun Feb 10 11:58:23 2019 -0800
@@ -161,7 +161,7 @@
 endif
 
 ifdef NEW_CORE
-Z80OBJS=z80.o
+Z80OBJS=z80.o z80inst.o 
 CFLAGS+= -DNEW_CORE
 else
 Z80OBJS=z80inst.o z80_to_x86.o
@@ -302,7 +302,7 @@
 vos_prog_info : vos_prog_info.o vos_program_module.o
 	$(CC) -o vos_prog_info vos_prog_info.o vos_program_module.o
 	
-%.c : %.cpu
+%.c : %.cpu cpu_dsl.py
 	./cpu_dsl.py -d goto $< > $@
 
 %.o : %.S