comparison debug.h @ 1773:0a26f3657295 mame_interp

Remove MAME Z80 core in favor of my new Z80 core
author Michael Pavone <pavone@retrodev.com>
date Tue, 12 Mar 2019 21:59:52 -0700
parents 8fe162bdb038
children 374a5ae694e8
comparison
equal deleted inserted replaced
1772:75172d440900 1773:0a26f3657295
1 #ifndef DEBUG_H_ 1 #ifndef DEBUG_H_
2 #define DEBUG_H_ 2 #define DEBUG_H_
3 3
4 #include <stdint.h> 4 #include <stdint.h>
5 #include "m68k_core.h" 5 #include "m68k_core.h"
6 #ifdef NEW_CORE
7 #include "z80.h"
8 #else
9 #ifdef USE_NATIVE 6 #ifdef USE_NATIVE
10 #include "z80_to_x86.h" 7 #include "z80_to_x86.h"
11 #else 8 #else
12 #include "mame_z80/z80.h" 9 #include "z80.h"
13 #endif
14 #endif 10 #endif
15 11
16 typedef struct disp_def { 12 typedef struct disp_def {
17 struct disp_def * next; 13 struct disp_def * next;
18 char * param; 14 char * param;