diff --git a/docs/Debugger_Changelog.txt b/docs/Debugger_Changelog.txt index d0c0c455..9bf51af0 100644 --- a/docs/Debugger_Changelog.txt +++ b/docs/Debugger_Changelog.txt @@ -1,4 +1,5 @@ /* +2.9.2.4 Fixed: DA RESET = 3F2 was displaying help instead of being parsed. 2.9.2.3 Fixed: DB HGR = 2000:3FFF and DB FOO = 300 wasn't parsing correctly from 2.9.1.3. Fix for commit 48e0fe3a. 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. diff --git a/source/Debugger/Debug.cpp b/source/Debugger/Debug.cpp index 5a2f21bd..9672d288 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,3); + const int DEBUGGER_VERSION = MAKE_VERSION(2,9,2,4); // Public _________________________________________________________________________________________ diff --git a/source/Debugger/Debugger_DisassemblerData.cpp b/source/Debugger/Debugger_DisassemblerData.cpp index 5761f7e6..43c7f8c4 100644 --- a/source/Debugger/Debugger_DisassemblerData.cpp +++ b/source/Debugger/Debugger_DisassemblerData.cpp @@ -490,7 +490,8 @@ Update_t CmdDisasmDataDefAddress16 (int nArgs) { int iCmd = NOP_WORD_1 - g_aArgs[0].nValue; - if (! ((nArgs <= 2) || (nArgs == 4))) + // 2.9.2.4 Fixed: DA RESET = 3F2 was displaying help instead of being parsed. + if (nArgs > 4) { return Help_Arg_1( CMD_DEFINE_DATA_WORD1 + iCmd ); }