summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/2608intf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/2608intf.cpp')
-rw-r--r--src/devices/sound/2608intf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/2608intf.cpp b/src/devices/sound/2608intf.cpp
index 6c31c2aea0f..1445de91f37 100644
--- a/src/devices/sound/2608intf.cpp
+++ b/src/devices/sound/2608intf.cpp
@@ -141,12 +141,12 @@ void ym2608_device::rom_bank_updated()
}
-u8 ym2608_device::read(offs_t offset)
+READ8_MEMBER( ym2608_device::read )
{
return ym2608_read(m_chip, offset & 3);
}
-void ym2608_device::write(offs_t offset, u8 data)
+WRITE8_MEMBER( ym2608_device::write )
{
ym2608_write(m_chip, offset & 3, data);
}