summaryrefslogtreecommitdiffstatshomepage
path: root/docs/source/debugger
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2023-04-15 19:44:30 +1000
committer Vas Crabb <vas@vastheman.com>2023-04-15 19:44:30 +1000
commita93d6c9fc77988335fa6516c067ea9afe5125b0e (patch)
tree9735ffb3b7866670215b9493edb98a70da84619a /docs/source/debugger
parent560c5479740019d6a9500248ae7c7a421eb47188 (diff)
emu/emumem.h: Allow emu::rw_delegate to work with device finders.
Diffstat (limited to 'docs/source/debugger')
-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 2b25e0631f8..0f4bd12902f 100644
--- a/docs/source/debugger/watchpoint.rst
+++ b/docs/source/debugger/watchpoint.rst
@@ -75,7 +75,7 @@ Examples:
execution.
``temp0 = 0 ; wp 45678,1,w,wpdata==f0,{ temp0++ ; g }``
Set a watchpoint for the visible CPU that will halt execution
- whenever a write do the first address space occurs at address 45678
+ whenever a write to the first address space occurs at address 45678
where the value being written is equal to f0. When this happens,
increment the variable **temp0** and resume execution.