comparison debug.h @ 1931:374a5ae694e8 mame_interp

Merge from default
author Michael Pavone <pavone@retrodev.com>
date Sat, 18 Apr 2020 11:42:53 -0700
parents 0a26f3657295 5d028088e320
children
comparison
equal deleted inserted replaced
1843:13abdc98379e 1931:374a5ae694e8
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 USE_NATIVE 6 #ifndef NEW_CORE
7 #include "z80_to_x86.h" 7 #include "z80_to_x86.h"
8 #else 8 #else
9 #include "z80.h" 9 #include "z80.h"
10 #endif 10 #endif
11 11
27 bp_def ** find_breakpoint_idx(bp_def ** cur, uint32_t index); 27 bp_def ** find_breakpoint_idx(bp_def ** cur, uint32_t index);
28 void add_display(disp_def ** head, uint32_t *index, char format_char, char * param); 28 void add_display(disp_def ** head, uint32_t *index, char format_char, char * param);
29 void remove_display(disp_def ** head, uint32_t index); 29 void remove_display(disp_def ** head, uint32_t index);
30 void debugger(m68k_context * context, uint32_t address); 30 void debugger(m68k_context * context, uint32_t address);
31 z80_context * zdebugger(z80_context * context, uint16_t address); 31 z80_context * zdebugger(z80_context * context, uint16_t address);
32 void print_m68k_help();
33 void print_z80_help();
32 34
33 #endif //DEBUG_H_ 35 #endif //DEBUG_H_