diff --git a/docs/Debugger_Changelog.txt b/docs/Debugger_Changelog.txt index 6bf6fa7c..b776660a 100644 --- a/docs/Debugger_Changelog.txt +++ b/docs/Debugger_Changelog.txt @@ -1,4 +1,5 @@ /* +2.9.2.2 Fixed: DB HGR = 2000:3FFF was displaying help instead of being parsed. 2.9.2.1 Added: Error message when trying to add a symbol > 51 characters. 2.9.2.0 Released with AppleWin 1.30.20.0 diff --git a/source/Debugger/Debug.cpp b/source/Debugger/Debug.cpp index 74e11de7..6fa18e7e 100644 --- a/source/Debugger/Debug.cpp +++ b/source/Debugger/Debug.cpp @@ -53,7 +53,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #define MAKE_VERSION(a,b,c,d) ((a<<24) | (b<<16) | (c<<8) | (d)) // See /docs/Debugger_Changelog.txt for full details - const int DEBUGGER_VERSION = MAKE_VERSION(2,9,2,1); + const int DEBUGGER_VERSION = MAKE_VERSION(2,9,2,2); // Public _________________________________________________________________________________________ diff --git a/source/Debugger/Debugger_DisassemblerData.cpp b/source/Debugger/Debugger_DisassemblerData.cpp index 6a9721e4..d08a69c4 100644 --- a/source/Debugger/Debugger_DisassemblerData.cpp +++ b/source/Debugger/Debugger_DisassemblerData.cpp @@ -373,7 +373,8 @@ Update_t _CmdDisasmDataDefByteX (int nArgs) // To "return to code" use ."X" int iCmd = g_aArgs[0].nValue - NOP_BYTE_1; - if (nArgs > 4) // 2.7.0.31 Bug fix: DB range, i.e. DB 174E:174F + // 2.9.2.2: Bug fix: DB HGR = 2000:3FFF was displaying help instead of being parsed. + if (nArgs > 5) // 2.7.0.31 Bug fix: DB range, i.e. DB 174E:174F { return Help_Arg_1( CMD_DEFINE_DATA_BYTE1 + iCmd ); }