summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2007-12-30 17:05:00 +0000
committer smf- <smf-@users.noreply.github.com>2007-12-30 17:05:00 +0000
commitbb95b2fe552c8837f23b25449628643d14864747 (patch)
tree345af2940e25e12ca718d3f69294fc5dadf6b51a
parentadd1ed21c1a83a851126cdbfb3eab5f82b999aca (diff)
fixed help for wpset to match the required syntax for checking the data written.
-rw-r--r--src/emu/debug/debughlp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debughlp.c b/src/emu/debug/debughlp.c
index d1241aab076..81e8e7b11be 100644
--- a/src/emu/debug/debughlp.c
+++ b/src/emu/debug/debughlp.c
@@ -858,7 +858,7 @@ static const help_item static_help_list[] =
" Set a watchpoint that will halt execution whenever a read occurs in the address range "
"3456-3475. When this happens, print Read @ <wpaddr> and continue executing.\n"
"\n"
- "temp0 = 0; wp 45678,1,writeval==f0,{temp0++; g}\n"
+ "temp0 = 0; wp 45678,1,w,wpdata==f0,{temp0++; g}\n"
" Set a watchpoint that will halt execution whenever a write occurs to the address 45678 AND "
"the value being written is equal to f0. When that happens, increment the variable temp0 and "
"resume execution.\n"