summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/es5503.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/es5503.cpp')
-rw-r--r--src/devices/sound/es5503.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/es5503.cpp b/src/devices/sound/es5503.cpp
index 2344a7c695b..05c2f16eae5 100644
--- a/src/devices/sound/es5503.cpp
+++ b/src/devices/sound/es5503.cpp
@@ -270,7 +270,7 @@ void es5503_device::device_reset()
output_rate = (clock()/8)/34; // (input clock / 8) / # of oscs. enabled + 2
}
-READ8_MEMBER( es5503_device::read )
+u8 es5503_device::read(offs_t offset)
{
uint8_t retval;
int i;
@@ -361,7 +361,7 @@ READ8_MEMBER( es5503_device::read )
return 0;
}
-WRITE8_MEMBER( es5503_device::write )
+void es5503_device::write(offs_t offset, u8 data)
{
m_stream->update();