diff --git a/source/Debug.cpp b/source/Debug.cpp index 6d9f13e6..218e7edb 100644 --- a/source/Debug.cpp +++ b/source/Debug.cpp @@ -39,7 +39,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #define ALLOW_INPUT_LOWERCASE 1 // See Debugger_Changelong.txt for full details - const int DEBUGGER_VERSION = MAKE_VERSION(2,6,1,30); + const int DEBUGGER_VERSION = MAKE_VERSION(2,6,1,31); // Public _________________________________________________________________________________________ diff --git a/source/Debugger_Help.cpp b/source/Debugger_Help.cpp index 94f6ca8a..a86e49f6 100644 --- a/source/Debugger_Help.cpp +++ b/source/Debugger_Help.cpp @@ -1121,11 +1121,13 @@ Update_t CmdHelpSpecific (int nArgs) Colorize( sText, sTemp ); ConsolePrint( sText ); ConsoleBufferPush( TEXT(" Fills the memory range with the specified byte" ) ); - sprintf( sTemp, " Note: Can't fill IO addresses %s$%sC0xx", CHC_ARG_OPT, CHC_ADDRESS ); + sprintf( sTemp, " Note: Can't fill IO addresses %s$%sC0xx", CHC_ARG_SEP, CHC_ADDRESS ); Colorize( sText, sTemp ); ConsolePrint( sText ); Help_Examples(); - sprintf( sText, "%s %s 2000:3FFF 00", CHC_EXAMPLE, pCommand->m_sName ); ConsolePrint( sText ); + sprintf( sText, "%s %s 2000:3FFF 00 // Clear HGR page 1", CHC_EXAMPLE, pCommand->m_sName ); ConsolePrint( sText ); + sprintf( sText, "%s %s 4000,2000 00 // Clear HGR page 2", CHC_EXAMPLE, pCommand->m_sName ); ConsolePrint( sText ); + sprintf( sText, "%s %s 2000 3FFF 00 // Clear HGR page 1", CHC_EXAMPLE, pCommand->m_sName ); ConsolePrint( sText ); break; case CMD_MEMORY_MOVE: sprintf( sTemp, " Usage: destination range" );