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 b8e440666ec..21ca436a004 100644
--- a/src/devices/sound/2612intf.cpp
+++ b/src/devices/sound/2612intf.cpp
@@ -129,12 +129,12 @@ void ym2612_device::device_reset()
}
-u8 ym2612_device::read(offs_t offset)
+READ8_MEMBER( ym2612_device::read )
{
return ym2612_read(m_chip, offset & 3);
}
-void ym2612_device::write(offs_t offset, u8 data)
+WRITE8_MEMBER( ym2612_device::write )
{
ym2612_write(m_chip, offset & 3, data);
}