diff options
Diffstat (limited to 'src/devices/sound/lmc1992.h')
-rw-r--r-- | src/devices/sound/lmc1992.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/sound/lmc1992.h b/src/devices/sound/lmc1992.h index 88763628999..371b241d2ff 100644 --- a/src/devices/sound/lmc1992.h +++ b/src/devices/sound/lmc1992.h @@ -62,16 +62,16 @@ public: // construction/destruction lmc1992_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); - DECLARE_WRITE_LINE_MEMBER( clock_w ); - DECLARE_WRITE_LINE_MEMBER( data_w ); - DECLARE_WRITE_LINE_MEMBER( enable_w ); + void clock_w(int state); + void data_w(int state); + void enable_w(int state); protected: // device-level overrides - virtual void device_start() override; + virtual void device_start() override ATTR_COLD; // internal callbacks - virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override; + virtual void sound_stream_update(sound_stream &stream) override; private: inline void execute_command(int addr, int data); |