summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/es1373.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/es1373.cpp')
-rw-r--r--src/devices/sound/es1373.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/es1373.cpp b/src/devices/sound/es1373.cpp
index dbc0c6a96d8..6ff92fcc90b 100644
--- a/src/devices/sound/es1373.cpp
+++ b/src/devices/sound/es1373.cpp
@@ -426,7 +426,7 @@ uint32_t es1373_device::calc_size(const uint8_t &format)
return 0;
}
-READ32_MEMBER (es1373_device::reg_r)
+uint32_t es1373_device::reg_r(offs_t offset, uint32_t mem_mask)
{
uint32_t result = m_es_regs[offset];
switch (offset) {
@@ -489,7 +489,7 @@ READ32_MEMBER (es1373_device::reg_r)
return result;
}
-WRITE32_MEMBER(es1373_device::reg_w)
+void es1373_device::reg_w(offs_t offset, uint32_t data, uint32_t mem_mask)
{
COMBINE_DATA(&m_es_regs[offset]);
switch (offset) {