summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/cdp1879.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/cdp1879.h')
-rw-r--r--src/devices/machine/cdp1879.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/cdp1879.h b/src/devices/machine/cdp1879.h
index 3f92efec75e..2f2740df32a 100644
--- a/src/devices/machine/cdp1879.h
+++ b/src/devices/machine/cdp1879.h
@@ -20,8 +20,8 @@ public:
// construction/destruction
cdp1879_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER(read);
- DECLARE_WRITE8_MEMBER(write);
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
auto irq_callback() { return m_irq_w.bind(); }