summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/mos6581.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/mos6581.cpp')
-rw-r--r--src/devices/sound/mos6581.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/mos6581.cpp b/src/devices/sound/mos6581.cpp
index 8648e86bbc9..2e4cb1f3cfd 100644
--- a/src/devices/sound/mos6581.cpp
+++ b/src/devices/sound/mos6581.cpp
@@ -119,7 +119,7 @@ void mos6581_device::sound_stream_update(sound_stream &stream, stream_sample_t *
// read -
//-------------------------------------------------
-READ8_MEMBER( mos6581_device::read )
+uint8_t mos6581_device::read(offs_t offset)
{
uint8_t data;
@@ -146,7 +146,7 @@ READ8_MEMBER( mos6581_device::read )
// write -
//-------------------------------------------------
-WRITE8_MEMBER( mos6581_device::write )
+void mos6581_device::write(offs_t offset, uint8_t data)
{
m_token->port_w(offset, data);
}