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