summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/1mb5.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/1mb5.h')
-rw-r--r--src/devices/machine/1mb5.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/1mb5.h b/src/devices/machine/1mb5.h
index 351b1f25d6c..13b1296e6cc 100644
--- a/src/devices/machine/1mb5.h
+++ b/src/devices/machine/1mb5.h
@@ -26,12 +26,12 @@ public:
auto int_handler() { return m_int_handler.bind(); }
// CPU access
- DECLARE_READ8_MEMBER(cpu_r);
- DECLARE_WRITE8_MEMBER(cpu_w);
+ uint8_t cpu_r(offs_t offset);
+ void cpu_w(offs_t offset, uint8_t data);
// uC access
- DECLARE_READ8_MEMBER(uc_r);
- DECLARE_WRITE8_MEMBER(uc_w);
+ uint8_t uc_r(offs_t offset);
+ void uc_w(offs_t offset, uint8_t data);
// Signals to CPU
DECLARE_READ_LINE_MEMBER(irl_r);