summaryrefslogtreecommitdiffstatshomepage
path: root/docs/source
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2025-07-01 06:27:05 +1000
committer Vas Crabb <vas@vastheman.com>2025-07-01 06:35:44 +1000
commit0bdb4f0669a96e07e7487c4be3a416acac8be596 (patch)
treefca96e9484688449df179848c36c0657ff7ed3e3 /docs/source
parent046dcb059cfc603bf1819381840eb621ec4b6d7e (diff)
Clean up various stuff.
docs: Explicitly state that installing a read/write tap returns the pass-through handler. cpu/mb86235: Using lowercas integer literal suffixes hurts readability, especially when it's 1ll (compare to 1LL, especially in a Courier-like font). video/ppu2c0x_vt.cpp: Look for the patterns. mame.lst: Expunge comments that started creeping back in. taito/taitotz.cpp: Use versions as printed on Taito's hard disk labels in descriptions. debug/win: Requiring every debugger window class to care about the console window's views is bad design. That's a clear case of unnecessary coupling. posix/posixptty.cpp: Testing for glibc does not guarantee pty.h is available. It's possible to build glibc for targets where its PTY wrapper functions are not implemented.
Diffstat (limited to 'docs/source')
-rw-r--r--docs/source/luascript/ref-mem.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/source/luascript/ref-mem.rst b/docs/source/luascript/ref-mem.rst
index 0987889d3dc..3bad440ae34 100644
--- a/docs/source/luascript/ref-mem.rst
+++ b/docs/source/luascript/ref-mem.rst
@@ -123,7 +123,8 @@ space:install_read_tap(start, end, name, callback)
Installs a :ref:`pass-through handler <luascript-ref-addrspacetap>` that
will receive notifications on reads from the specified range of addresses in
the address space. The start and end addresses are inclusive. The name
- must be a string, and the callback must be a function.
+ must be a string, and the callback must be a function. Returns the new
+ pass-through handler.
The callback is passed three arguments for the access offset, the data read,
and the memory access mask. The offset is the absolute offset into the
@@ -134,7 +135,8 @@ space:install_write_tap(start, end, name, callback)
Installs a :ref:`pass-through handler <luascript-ref-addrspacetap>` that
will receive notifications on write to the specified range of addresses in
the address space. The start and end addresses are inclusive. The name
- must be a string, and the callback must be a function.
+ must be a string, and the callback must be a function. Returns the new
+ pass-through handler.
The callback is passed three arguments for the access offset, the data
written, and the memory access mask. The offset is the absolute offset into