comparison debug.h @ 1329:85a90964b557

Fix interaction between 68K debugger and instruction retranslation due to self modifying code or bank switching
author Michael Pavone <pavone@retrodev.com>
date Mon, 24 Apr 2017 20:49:31 -0700
parents 6b5c92b6205c
children 2455662378ed d6d4c006a7b3
comparison
equal deleted inserted replaced
1328:70faad89d491 1329:85a90964b557
21 21
22 bp_def ** find_breakpoint(bp_def ** cur, uint32_t address); 22 bp_def ** find_breakpoint(bp_def ** cur, uint32_t address);
23 bp_def ** find_breakpoint_idx(bp_def ** cur, uint32_t index); 23 bp_def ** find_breakpoint_idx(bp_def ** cur, uint32_t index);
24 void add_display(disp_def ** head, uint32_t *index, char format_char, char * param); 24 void add_display(disp_def ** head, uint32_t *index, char format_char, char * param);
25 void remove_display(disp_def ** head, uint32_t index); 25 void remove_display(disp_def ** head, uint32_t index);
26 m68k_context * debugger(m68k_context * context, uint32_t address); 26 void debugger(m68k_context * context, uint32_t address);
27 z80_context * zdebugger(z80_context * context, uint16_t address); 27 z80_context * zdebugger(z80_context * context, uint16_t address);
28 28
29 #endif //DEBUG_H_ 29 #endif //DEBUG_H_