diff options
author | 2018-06-08 01:29:39 +1000 | |
---|---|---|
committer | 2018-06-08 01:29:39 +1000 | |
commit | 93eaa6a4943ade6513257a740fcde97ca9468559 (patch) | |
tree | 1340f2160a7064a839b7ca649b2257489cdd3d6d /src/devices/sound/cdp1863.h | |
parent | fafafe7050e4d04230656215b840ac53aad081e7 (diff) |
as if millions of this pointers suddenly cried out in terror, and were suddenly silenced
* streamline templates in addrmap.h
* get rid of overloads on read/write member names - this will become even more important in the near future
Diffstat (limited to 'src/devices/sound/cdp1863.h')
-rw-r--r-- | src/devices/sound/cdp1863.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/cdp1863.h b/src/devices/sound/cdp1863.h index 8234f43f142..93366575e8a 100644 --- a/src/devices/sound/cdp1863.h +++ b/src/devices/sound/cdp1863.h @@ -52,8 +52,8 @@ 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 ); - void str_w(uint8_t data); + DECLARE_WRITE8_MEMBER( str_w ) { write_str(data); } + void write_str(uint8_t data) { m_latch = data; } DECLARE_WRITE_LINE_MEMBER( oe_w ); |