summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/2612intf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/2612intf.cpp')
-rw-r--r--src/devices/sound/2612intf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/2612intf.cpp b/src/devices/sound/2612intf.cpp
index 21ca436a004..b8e440666ec 100644
--- a/src/devices/sound/2612intf.cpp
+++ b/src/devices/sound/2612intf.cpp
@@ -129,12 +129,12 @@ void ym2612_device::device_reset()
}
-READ8_MEMBER( ym2612_device::read )
+u8 ym2612_device::read(offs_t offset)
{
return ym2612_read(m_chip, offset & 3);
}
-WRITE8_MEMBER( ym2612_device::write )
+void ym2612_device::write(offs_t offset, u8 data)
{
ym2612_write(m_chip, offset & 3, data);
}