diff debug.h @ 2214:7591c67b8d1e

Support for loading symbols in debugger for use during name resolution and disassembly
author Michael Pavone <pavone@retrodev.com>
date Mon, 29 Aug 2022 23:01:46 -0700
parents d00fb9c6a6a2
children 4b2ac43c106e
line wrap: on
line diff
--- a/debug.h	Mon Aug 29 21:58:37 2022 -0700
+++ b/debug.h	Mon Aug 29 23:01:46 2022 -0700
@@ -9,6 +9,7 @@
 #else
 #include "z80_to_x86.h"
 #endif
+#include "disasm.h"
 
 typedef enum {
 	TOKEN_NONE,
@@ -115,6 +116,8 @@
 	bp_def         *breakpoints;
 	disp_def       *displays;
 	tern_node      *commands;
+	tern_node      *symbols;
+	disasm_context *disasm;
 	resolver       resolve;
 	reader         read_mem;
 	setter         set;