diff 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
line wrap: on
line diff
--- a/debug.h	Sun Apr 23 00:54:33 2017 -0700
+++ b/debug.h	Mon Apr 24 20:49:31 2017 -0700
@@ -23,7 +23,7 @@
 bp_def ** find_breakpoint_idx(bp_def ** cur, uint32_t index);
 void add_display(disp_def ** head, uint32_t *index, char format_char, char * param);
 void remove_display(disp_def ** head, uint32_t index);
-m68k_context * debugger(m68k_context * context, uint32_t address);
+void debugger(m68k_context * context, uint32_t address);
 z80_context * zdebugger(z80_context * context, uint16_t address);
 
 #endif //DEBUG_H_