summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/r10696.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/r10696.h')
-rw-r--r--src/devices/machine/r10696.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/r10696.h b/src/devices/machine/r10696.h
index 17e0c4e1c84..4b5b7c91d87 100644
--- a/src/devices/machine/r10696.h
+++ b/src/devices/machine/r10696.h
@@ -26,8 +26,8 @@ class r10696_device : public device_t
public:
r10696_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER ( io_r );
- DECLARE_WRITE8_MEMBER( io_w );
+ uint8_t io_r(offs_t offset);
+ void io_w(offs_t offset, uint8_t data);
/* Set the read and write group (4-bit; nibble) delegates */
auto iord_cb() { return m_iord.bind(); }