diff blastem.c @ 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 f6bd4962b8f5
children 8fe162bdb038 154c7b348cf1
line wrap: on
line diff
--- a/blastem.c	Sat Feb 09 11:52:43 2019 -0800
+++ b/blastem.c	Sun Feb 10 11:58:23 2019 -0800
@@ -11,7 +11,11 @@
 #include "system.h"
 #include "68kinst.h"
 #include "m68k_core.h"
+#ifdef NEW_CORE
+#include "z80.h"
+#else
 #include "z80_to_x86.h"
+#endif
 #include "mem.h"
 #include "vdp.h"
 #include "render.h"