diff debug.h @ 1507:2455662378ed mame_interp

Added MAME Z80 core, re-enabled 68K tracing in Musashi core, disabled a bunch of code gen stuff when using interpreters from MAME
author Michael Pavone <pavone@retrodev.com>
date Sat, 30 Dec 2017 18:27:06 -0800
parents 85a90964b557
children 8fe162bdb038
line wrap: on
line diff
--- a/debug.h	Wed Dec 27 13:46:52 2017 -0800
+++ b/debug.h	Sat Dec 30 18:27:06 2017 -0800
@@ -3,7 +3,11 @@
 
 #include <stdint.h>
 #include "m68k_core.h"
+#ifdef USE_NATIVE
 #include "z80_to_x86.h"
+#else
+#include "mame_z80/z80.h"
+#endif
 
 typedef struct disp_def {
 	struct disp_def * next;