diff options
author | 2020-03-11 20:04:17 +0100 | |
---|---|---|
committer | 2020-03-11 20:04:17 +0100 | |
commit | 59337f9e503618cf287a1888da376010d6611682 (patch) | |
tree | 092fe65b1aae8aec16cd9bbe4cb80ecdcf25c670 /src/devices/sound/cdp1863.h | |
parent | 29f838fe84ff1de3ff852c3f8421fbe2b6b0067d (diff) |
src/devices: simplified some handlers (nw)
Diffstat (limited to 'src/devices/sound/cdp1863.h')
-rw-r--r-- | src/devices/sound/cdp1863.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/devices/sound/cdp1863.h b/src/devices/sound/cdp1863.h index 310848c607d..e44b65a6f9d 100644 --- a/src/devices/sound/cdp1863.h +++ b/src/devices/sound/cdp1863.h @@ -42,10 +42,9 @@ public: void set_clock2(int clock2) { m_clock2 = clock2; } void set_clock2(const XTAL &xtal) { xtal.validate("selecting cdp1863 clock"); set_clock2(xtal.value()); } - DECLARE_WRITE8_MEMBER( str_w ) { write_str(data); } - void write_str(uint8_t data) { m_latch = data; } + void str_w(uint8_t data) { m_latch = data; } - DECLARE_WRITE_LINE_MEMBER( oe_w ); + void oe_w(int state); void set_clk1(int clock); void set_clk2(int clock); |