summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/lmc1992.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/lmc1992.cpp')
-rw-r--r--src/devices/sound/lmc1992.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/lmc1992.cpp b/src/devices/sound/lmc1992.cpp
index cf0d8f35d33..feaa0810226 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")
@@ -185,7 +185,7 @@ void lmc1992_device::sound_stream_update(sound_stream &stream, std::vector<read_
// 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)))
{
@@ -206,7 +206,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;
}
@@ -216,7 +216,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))
{