summaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2016-12-28 12:28:52 -0800
committerMichael Pavone <pavone@retrodev.com>2016-12-28 12:28:52 -0800
commit96d5581219aec6c49fadaaf1d30623c0f2eed358 (patch)
tree560c0cfaa52f1183cd4b2b6adec9247abc921eb0 /debug.h
parente2e00fe60bcc9ff0e8f76cf3f9e4ef17113b4519 (diff)
Enabled Z80 debugger in PBC mode
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/debug.h b/debug.h
index f0f7644..8120c88 100644
--- a/debug.h
+++ b/debug.h
@@ -3,6 +3,7 @@
#include <stdint.h>
#include "m68k_core.h"
+#include "z80_to_x86.h"
typedef struct disp_def {
struct disp_def * next;
@@ -23,5 +24,6 @@ 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);
+z80_context * zdebugger(z80_context * context, uint16_t address);
#endif //DEBUG_H_