debugger
debugger copied to clipboard
**Reported by sd-snatcher on 2012-09-18 23:00 UTC** Currently, the "Locations" (slot/subslot) and "Symbol type" (Jump label, Variable label or value) can only be set on a per-label basis on the...
**Reported by manuelbi on 2009-07-17 16:05 UTC** As written here: http://www.msx.org/forumtopic10027p30.html I have one question....in king's valley 1 from konami memory location 467d we have 467D: ADC A,E 467E: NOP...
**Reported by sd-snatcher on 2009-03-07 15:19 UTC** It would be really nice to have a "save/load debuggable to file" feature, so I can, for example, save the entire RAM ou...
**Reported by sd-snatcher on 2009-03-07 14:22 UTC** Please add a "window" menu on openMSX-debugger, to list and manage its child windows. Currently, if I add more debuggable views and its...
**Reported by sd-snatcher on 2012-09-16 22:15 UTC** The debugger's "Reload All" button (on Symbol Manager window) doesn't seem to work. Steps to reproduce the error: 1) On openMSX-debugger, add a...
**Reported by sd-snatcher on 2009-04-20 21:20 UTC** "Debuggable hex view" windows ignore the windows command Windows_key+D (minimizes all windows and shows the desktop)
**Reported by mfeingol on 2009-03-23 04:57 UTC** Repro: compile openMSX such that it closes accepted sockets in the CliServer's mainLoop. Then run it and attach the debugger. The debugger will...
[How to fix] ```diff --- old/SymbolTable.cpp 2023-07-17 13:55:11.000000000 +0200 +++ src/SymbolTable.cpp 2025-01-16 00:00:00.000000000 +0000 @@ -548,7 +548,7 @@ void SymbolTable::reloadFiles() { - for (int i = 0; i < symbolFiles.size();...
[Why needed] In the present, Debugger accesses symbol-files like the following. \- On 'Open session' menu, it accepts file-path only and doesn't read file-text. \- On 'Reload all' button, it...
[How to patch] (1) Appending the signal flow. DebuggerForm::systemSymbolManager(), | symbolsChanged \+ MainMemoryViewer::updateCompleter(), DisasmViewer::refresh() (2) In the following, appending a bit of codes. MainMemoryViewer::updateCompleter() ```diff --- old/DebuggerForm.cpp 2023-06-06 20:37:52.000000000 -0300...