From 34dce4841417a7a0b8f744175b3c9d47d1f0449e Mon Sep 17 00:00:00 2001 From: thrust26 Date: Mon, 20 Nov 2017 18:54:10 +0100 Subject: [PATCH] Update help for trap.../breakif and savestateif --- src/debugger/DebuggerParser.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/debugger/DebuggerParser.cxx b/src/debugger/DebuggerParser.cxx index 1d1d10ee3..357132e7f 100644 --- a/src/debugger/DebuggerParser.cxx +++ b/src/debugger/DebuggerParser.cxx @@ -2023,7 +2023,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = { { "breakif", - "Set breakpoint on ", + "Set/clear breakpoint on ", "Condition can include multiple items, see documentation\nExample: breakif _scan>100", true, false, @@ -2665,7 +2665,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = { { "trap", "Trap read/write access to address(es) xx [yy]", - "Set a R/W trap on the given address(es) and all mirrors\n" + "Set/clear a R/W trap on the given address(es) and all mirrors\n" "Example: trap f000, trap f000 f100", true, false, @@ -2676,7 +2676,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = { { "trapif", "On trap R/W access to address(es) xx [yy]", - "Set a conditional R/W trap on the given address(es) and all mirrors\nCondition can include multiple items.\n" + "Set/clear a conditional R/W trap on the given address(es) and all mirrors\nCondition can include multiple items.\n" "Example: trapif _scan>#100 GRP0, trapif _bank==1 f000 f100", true, false, @@ -2687,7 +2687,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = { { "trapread", "Trap read access to address(es) xx [yy]", - "Set a read trap on the given address(es) and all mirrors\n" + "Set/clear a read trap on the given address(es) and all mirrors\n" "Example: trapread f000, trapread f000 f100", true, false, @@ -2698,7 +2698,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = { { "trapreadif", "On trap read access to address(es) xx [yy]", - "Set a conditional read trap on the given address(es) and all mirrors\nCondition can include multiple items.\n" + "Set/clear a conditional read trap on the given address(es) and all mirrors\nCondition can include multiple items.\n" "Example: trapreadif _scan>#100 GRP0, trapreadif _bank==1 f000 f100", true, false, @@ -2709,7 +2709,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = { { "trapwrite", "Trap write access to address(es) xx [yy]", - "Set a write trap on the given address(es) and all mirrors\n" + "Set/clear a write trap on the given address(es) and all mirrors\n" "Example: trapwrite f000, trapwrite f000 f100", true, false, @@ -2720,7 +2720,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = { { "trapwriteif", "On trap write access to address(es) xx [yy]", - "Set a conditional write trap on the given address(es) and all mirrors\nCondition can include multiple items.\n" + "Set/clear a conditional write trap on the given address(es) and all mirrors\nCondition can include multiple items.\n" "Example: trapwriteif _scan>#100 GRP0, trapwriteif _bank==1 f000 f100", true, false,