From 03983f8c08dc7b41fcf23e8c92f136207bc182cf Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Fri, 20 Apr 2018 10:56:36 -0700 Subject: [PATCH] Add more ideas --- docs/Debugger_Wishlist.txt | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/docs/Debugger_Wishlist.txt b/docs/Debugger_Wishlist.txt index d54420f6..88aaaed0 100644 --- a/docs/Debugger_Wishlist.txt +++ b/docs/Debugger_Wishlist.txt @@ -1,13 +1,32 @@ Requests (Wishlist): ==================== -- 0:1 Doesn't work +- Allow EQUs to be directly entered in + + Foo EQU $1234 + + Need to check if we have 3 params, 2nd param is EQU, 3rd param is address + +- Fix BUG: 0:1 Doesn't work Work-around, use two hex digits for the address: 00:1 - Debugger: wildcard search support for symbols SYMBASIC MICRO* +- Debugger:Ability to turn on/off alternative odd/even background coloring in disasm + DISASM ROWCOLOR 0 + DISASM ROWCOLOR 0 + Why? Default to a custom (black?) background, and then have ANALYSE color-code + the background line color to make it easier to visualize sections. + i.e. See BrkDown reverse engineering PDF -- TODO: Need link + +- Debugger: FUNC address:address + Markup function block, with alternating background colors + + FUNC 300:31F + FUNC 320:33F + - Debugger: Ability to hide Regs panel DISASM REGS 0 // Hide Regs and Breakpoints DISASM REGS 1 // Show Regs only