summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/votrax.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/votrax.cpp')
-rw-r--r--src/devices/sound/votrax.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/votrax.cpp b/src/devices/sound/votrax.cpp
index d2741b0a7dc..720df7d2ca9 100644
--- a/src/devices/sound/votrax.cpp
+++ b/src/devices/sound/votrax.cpp
@@ -84,7 +84,7 @@ votrax_sc01_device::votrax_sc01_device(const machine_config &mconfig, const char
{
}
-WRITE8_MEMBER( votrax_sc01_device::write )
+void votrax_sc01_device::write(uint8_t data)
{
// flush out anything currently processing
m_stream->update();
@@ -114,7 +114,7 @@ WRITE8_MEMBER( votrax_sc01_device::write )
// inflection bits
//-------------------------------------------------
-WRITE8_MEMBER( votrax_sc01_device::inflection_w )
+void votrax_sc01_device::inflection_w(uint8_t data)
{
// only 2 bits matter
data &= 3;