comparison 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
comparison
equal deleted inserted replaced
1751:c5d4e1d14dac 1752:d6d4c006a7b3
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
6 #include "z80_to_x86.h" 9 #include "z80_to_x86.h"
10 #endif
7 11
8 typedef struct disp_def { 12 typedef struct disp_def {
9 struct disp_def * next; 13 struct disp_def * next;
10 char * param; 14 char * param;
11 uint32_t index; 15 uint32_t index;