diff debug.h @ 1129:6b5c92b6205c

Enabled Z80 debugger in PBC mode
author Michael Pavone <pavone@retrodev.com>
date Wed, 28 Dec 2016 12:28:52 -0800
parents cc05444a4a4e
children 85a90964b557
line wrap: on
line diff
--- a/debug.h	Tue Dec 27 18:58:31 2016 -0800
+++ b/debug.h	Wed Dec 28 12:28:52 2016 -0800
@@ -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 @@
 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_