diff options
Diffstat (limited to 'src/devices/sound/lmc1992.cpp')
-rw-r--r-- | src/devices/sound/lmc1992.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/sound/lmc1992.cpp b/src/devices/sound/lmc1992.cpp index 84eb7f7c9d7..313855ea6df 100644 --- a/src/devices/sound/lmc1992.cpp +++ b/src/devices/sound/lmc1992.cpp @@ -64,7 +64,7 @@ enum //************************************************************************** // devices -DEFINE_DEVICE_TYPE(LMC1992, lmc1992_device, "lmc1992", "LMC1992") +DEFINE_DEVICE_TYPE(LMC1992, lmc1992_device, "lmc1992", "LMC1992 Stereo Tone and Volume") @@ -175,7 +175,7 @@ void lmc1992_device::device_start() // our sound stream //------------------------------------------------- -void lmc1992_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) +void lmc1992_device::sound_stream_update(sound_stream &stream) { } @@ -184,7 +184,7 @@ void lmc1992_device::sound_stream_update(sound_stream &stream, stream_sample_t * // clock_w - //------------------------------------------------- -WRITE_LINE_MEMBER( lmc1992_device::clock_w ) +void lmc1992_device::clock_w(int state) { if ((m_enable == 0) && ((m_clk == 0) && (state == 1))) { @@ -205,7 +205,7 @@ WRITE_LINE_MEMBER( lmc1992_device::clock_w ) // data_w - //------------------------------------------------- -WRITE_LINE_MEMBER( lmc1992_device::data_w ) +void lmc1992_device::data_w(int state) { m_data = state; } @@ -215,7 +215,7 @@ WRITE_LINE_MEMBER( lmc1992_device::data_w ) // enable_w - //------------------------------------------------- -WRITE_LINE_MEMBER( lmc1992_device::enable_w ) +void lmc1992_device::enable_w(int state) { if ((m_enable == 0) && (state == 1)) { |