Update help for trap.../breakif and savestateif

This commit is contained in:
thrust26 2017-11-20 18:54:10 +01:00
parent da69311de5
commit 34dce48414
1 changed files with 7 additions and 7 deletions

View File

@ -2023,7 +2023,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
{ {
"breakif", "breakif",
"Set breakpoint on <condition>", "Set/clear breakpoint on <condition>",
"Condition can include multiple items, see documentation\nExample: breakif _scan>100", "Condition can include multiple items, see documentation\nExample: breakif _scan>100",
true, true,
false, false,
@ -2665,7 +2665,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
{ {
"trap", "trap",
"Trap read/write access to address(es) xx [yy]", "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", "Example: trap f000, trap f000 f100",
true, true,
false, false,
@ -2676,7 +2676,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
{ {
"trapif", "trapif",
"On <condition> trap R/W access to address(es) xx [yy]", "On <condition> 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", "Example: trapif _scan>#100 GRP0, trapif _bank==1 f000 f100",
true, true,
false, false,
@ -2687,7 +2687,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
{ {
"trapread", "trapread",
"Trap read access to address(es) xx [yy]", "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", "Example: trapread f000, trapread f000 f100",
true, true,
false, false,
@ -2698,7 +2698,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
{ {
"trapreadif", "trapreadif",
"On <condition> trap read access to address(es) xx [yy]", "On <condition> 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", "Example: trapreadif _scan>#100 GRP0, trapreadif _bank==1 f000 f100",
true, true,
false, false,
@ -2709,7 +2709,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
{ {
"trapwrite", "trapwrite",
"Trap write access to address(es) xx [yy]", "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", "Example: trapwrite f000, trapwrite f000 f100",
true, true,
false, false,
@ -2720,7 +2720,7 @@ DebuggerParser::Command DebuggerParser::commands[kNumCommands] = {
{ {
"trapwriteif", "trapwriteif",
"On <condition> trap write access to address(es) xx [yy]", "On <condition> 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", "Example: trapwriteif _scan>#100 GRP0, trapwriteif _bank==1 f000 f100",
true, true,
false, false,