summaryrefslogtreecommitdiffstatshomepage
path: root/docs
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2015-06-04 21:42:58 +0200
committer Olivier Galibert <galibert@pobox.com>2015-06-24 08:43:34 +0200
commit88949a5b47798b3c82851c31b6f801e4fb8ca06f (patch)
tree7929d5f4beb47f8f6b61fe2a2b89f2302f3df19c /docs
parentd1583b9850d9fb45470648a515eb734e05fd926f (diff)
memory: Remove support for decrypted bases, use an address space instead [O. Galibert]
Diffstat (limited to 'docs')
-rw-r--r--docs/m6502.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/m6502.txt b/docs/m6502.txt
index c4517a4329a..d09954719bd 100644
--- a/docs/m6502.txt
+++ b/docs/m6502.txt
@@ -233,8 +233,8 @@ subclass has been created. It's called memory_interface, declared in
m6502_device, and provides the following accessors:
- UINT8 read(UINT16 adr) - normal read
-- UINT8 read_direct(UINT16 adr) - direct read
-- UINT8 read_decrypted(UINT16 adr) - decrypted data read
+- UINT8 read_sync(UINT16 adr) - opcode read with sync active (first byte of opcode)
+- UINT8 read_arg(UINT16 adr) - opcode read with sync inactive (rest of opcode)
- void write(UINT16 adr, UINT8 val) - normal write
- UINT8 read_9(UINT16 adr) - special y-indexed 6509 read, defaults to read()