diff options
author | 2018-02-05 02:27:02 -0700 | |
---|---|---|
committer | 2018-02-05 20:27:02 +1100 | |
commit | b2e11d00e04db9d62fc2c2c8d50b797c28fcd4a9 (patch) | |
tree | bb4b27adebb278114a4155338e645ca0fa6b22af /docs/source/debugger/breakpoint.rst | |
parent | 18835562189492bd15263dba9d0ea5175cc6221c (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/breakpoint.rst')
-rw-r--r-- | docs/source/debugger/breakpoint.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/debugger/breakpoint.rst b/docs/source/debugger/breakpoint.rst index 260a66444de..a87530f6953 100644 --- a/docs/source/debugger/breakpoint.rst +++ b/docs/source/debugger/breakpoint.rst @@ -34,7 +34,7 @@ bpset | | Set a breakpoint that will halt execution whenever the PC is equal to 23456 AND the expression (a0 == 0 && a1 == 0) is true. | -| bp 3456,1,{printf "A0=%08X\n",a0; g} +| bp 3456,1,{printf "A0=%08X\\n",a0; g} | | Set a breakpoint that will halt execution whenever the PC is equal to 3456. When this happens, print A0=<a0val> and continue executing. | |