summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/pcd3311.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/pcd3311.h')
-rw-r--r--src/devices/sound/pcd3311.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/pcd3311.h b/src/devices/sound/pcd3311.h
index 9abb61f8c21..25c5c630fc6 100644
--- a/src/devices/sound/pcd3311.h
+++ b/src/devices/sound/pcd3311.h
@@ -38,10 +38,10 @@ public:
// construction/destruction
pcd3311_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_WRITE8_MEMBER( write ) { m_data = data; }
- DECLARE_WRITE_LINE_MEMBER( strobe_w ) { m_strobe = state; }
- DECLARE_WRITE_LINE_MEMBER( mode_w ) { m_mode = state; }
- DECLARE_WRITE_LINE_MEMBER( a0_w ) { m_a0 = state; }
+ void write(uint8_t data) { m_data = data; }
+ void strobe_w(int state) { m_strobe = state; }
+ void mode_w(int state) { m_mode = state; }
+ void a0_w(int state) { m_a0 = state; }
protected:
// device-level overrides