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/expressions.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/expressions.rst')
-rw-r--r-- | docs/source/debugger/expressions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/debugger/expressions.rst b/docs/source/debugger/expressions.rst index 5bc448ba105..5014eeb1791 100644 --- a/docs/source/debugger/expressions.rst +++ b/docs/source/debugger/expressions.rst @@ -42,7 +42,7 @@ Differences from C Behaviors - Similarly, **w@** and **w!** refer to a *word* in memory, **d@** and **d!** refer to a *dword* in memory, and **q@** and **q!** refer to a *qword* in memory. - The memory operators can be used as both lvalues and rvalues, so you can write b\@100 = ff to store a byte in memory. By default these operators read from the program memory space, but you can override that by prefixing them with a 'd' or an 'i'. + The memory operators can be used as both lvalues and rvalues, so you can write **b\@100 = ff** to store a byte in memory. By default these operators read from the program memory space, but you can override that by prefixing them with a 'd' or an 'i'. As such, **dw\@300** refers to data memory word at address 300 and **id\@400** refers to an I/O memory dword at address 400. |