summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/m6502/m6502.h
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2012-09-04 12:23:59 +0000
committer Curt Coder <curtcoder@mail.com>2012-09-04 12:23:59 +0000
commit4080118ce8738dfdcb0903705ea282dcc64e2be1 (patch)
tree45ae49aaac477d19d366ccf0c9c106583ccf43ad /src/emu/cpu/m6502/m6502.h
parent3007da08e037a586491ed1a4ddc1cd94cae19334 (diff)
m6502: Refactored the indexed read/write to use devcb, and fixed the peripheral port for plus4. (nw)
(MESS) apple3: Fixed the CPU interface. (nw) (MESS) vic10: Refactored to use datassette slot interface. (nw)
Diffstat (limited to 'src/emu/cpu/m6502/m6502.h')
-rw-r--r--src/emu/cpu/m6502/m6502.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/m6502/m6502.h b/src/emu/cpu/m6502/m6502.h
index c2890a77c5c..a8eda31c498 100644
--- a/src/emu/cpu/m6502/m6502.h
+++ b/src/emu/cpu/m6502/m6502.h
@@ -59,8 +59,8 @@ enum
typedef struct _m6502_interface m6502_interface;
struct _m6502_interface
{
- read8_space_func read_indexed_func;
- write8_space_func write_indexed_func;
+ devcb_read8 read_indexed_func;
+ devcb_write8 write_indexed_func;
devcb_read8 in_port_func;
devcb_write8 out_port_func;
UINT8 external_port_pullup;