summaryrefslogtreecommitdiffstatshomepage
path: root/docs/source/debugger/watchpoint.rst
diff options
context:
space:
mode:
author Firehawke <34792592+Firehawke@users.noreply.github.com>2018-02-05 02:27:02 -0700
committer Vas Crabb <cuavas@users.noreply.github.com>2018-02-05 20:27:02 +1100
commitb2e11d00e04db9d62fc2c2c8d50b797c28fcd4a9 (patch)
treebb4b27adebb278114a4155338e645ca0fa6b22af /docs/source/debugger/watchpoint.rst
parent18835562189492bd15263dba9d0ea5175cc6221c (diff)
More docs work: escapes, debugger update (nw) (#3168)
* Missed a couple escape sequences. (nw) * A little more escaping, acronym fixes, fix oddity in symlist (nw) * Update debugger internal help to match docs (nw) * Lowercasing for CPU in command parameters, fix casing on ASCII. (nw)
Diffstat (limited to 'docs/source/debugger/watchpoint.rst')
-rw-r--r--docs/source/debugger/watchpoint.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/debugger/watchpoint.rst b/docs/source/debugger/watchpoint.rst
index 0d92b582bf7..22a0d8e7c92 100644
--- a/docs/source/debugger/watchpoint.rst
+++ b/docs/source/debugger/watchpoint.rst
@@ -38,7 +38,7 @@ wpset
|
| Set a watchpoint that will halt execution whenever a write occurs in the address range 23456-2345f AND the data written is equal to 1.
|
-| wp 3456,20,r,1,{printf "Read @ %08X\n",wpaddr; g}
+| wp 3456,20,r,1,{printf "Read @ %08X\\n",wpaddr; g}
|
| 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.
|