summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/cs8221.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/cs8221.h')
-rw-r--r--src/devices/machine/cs8221.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/cs8221.h b/src/devices/machine/cs8221.h
index 39f5bfcd709..63b3102d5e9 100644
--- a/src/devices/machine/cs8221.h
+++ b/src/devices/machine/cs8221.h
@@ -64,9 +64,9 @@ private:
uint8_t m_registers[0x10];
- DECLARE_WRITE8_MEMBER( address_w );
- DECLARE_READ8_MEMBER( data_r );
- DECLARE_WRITE8_MEMBER( data_w );
+ void address_w(uint8_t data);
+ uint8_t data_r();
+ void data_w(uint8_t data);
};
DECLARE_DEVICE_TYPE(CS8221, cs8221_device)