diff debug.h @ 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 85a90964b557
children 8fe162bdb038 5d028088e320
line wrap: on
line diff
--- a/debug.h	Sat Feb 09 11:52:43 2019 -0800
+++ b/debug.h	Sun Feb 10 11:58:23 2019 -0800
@@ -3,7 +3,11 @@
 
 #include <stdint.h>
 #include "m68k_core.h"
+#ifdef NEW_CORE
+#include "z80.h"
+#else
 #include "z80_to_x86.h"
+#endif
 
 typedef struct disp_def {
 	struct disp_def * next;