diff options
Diffstat (limited to 'docs/source/debugger/index.rst')
-rw-r--r-- | docs/source/debugger/index.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/debugger/index.rst b/docs/source/debugger/index.rst index dc87a7a2ca3..2947d0253ac 100644 --- a/docs/source/debugger/index.rst +++ b/docs/source/debugger/index.rst @@ -18,7 +18,7 @@ ROM hacking, or just investigating how software works. Use the ``-debug`` command line option to start MAME with the debugger activated. By default, pressing the backtick/tilde (**~**) during -emulation breaks into the debugger (this can by changed by reassigning +emulation breaks into the debugger (this can be changed by reassigning the **Break in Debugger** input). The exact appearance of the debugger depends on your operating system @@ -239,7 +239,7 @@ Examples: * ``0x123`` is 123 hexadecimal (291 decimal) * ``#123`` is 123 decimal * ``0o123`` is 123 octal (83 decimal) -* ``0b1001`` is is 1001 binary (9 decimal) +* ``0b1001`` is 1001 binary (9 decimal) * ``0b123`` is invalid @@ -360,7 +360,7 @@ Adding access types gives additional possibilities: suppressing side effects ``id@400`` Refers to the double word at 400 in the I/O space of the current CPU - CPU while suppressing side effects + while suppressing side effects ``ppd!<addr>`` Refers to the double word at physical address **<addr>** in the program space of the current CPU while not suppressing side effects @@ -418,8 +418,8 @@ abs(<x>) absolute value. bit(<x>, <n>[, <w>]) Extracts and right-aligns a bit field **<w>** bits wide from **<x>** - with least significant bit position position **<n>**, counting from - the least significant bit. If **<w>** is omitted, a single bit is + with least significant bit position **<n>**, counting from the + least significant bit. If **<w>** is omitted, a single bit is extracted. s8(<x>) Sign-extends the argument from 8 bits to 64 bits (overwrites bits 8 |