From a9457e466cdaceab1312e259ed51c8f0fac8ee6a Mon Sep 17 00:00:00 2001 From: Stanislav Shwartsman Date: Sun, 12 Nov 2023 20:28:12 +0200 Subject: [PATCH] fixed compilation with debugger --- bochs/bx_debug/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bochs/bx_debug/debug.h b/bochs/bx_debug/debug.h index 48824c397..f8630543a 100644 --- a/bochs/bx_debug/debug.h +++ b/bochs/bx_debug/debug.h @@ -199,7 +199,7 @@ void bx_dbg_check_memory_watchpoints(unsigned cpu, bx_phy_address phy, unsigned void bx_dbg_restore_command(const char *param_name, const char *path); void bx_dbg_show_param_command(const char *param, bool xml); -int bx_dbg_show_symbolic(void); +void bx_dbg_show_symbolic(void); void bx_dbg_set_symbol_command(const char *symbol, bx_address val); const char* bx_dbg_symbolic_address(bx_address context, bx_address eip, bx_address base); int bx_dbg_symbol_command(const char* filename, bool global, bx_address offset);