summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/cps3.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-04-24 18:29:29 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-04-24 18:29:29 +0200
commit17e99cc7409a83b414281963979903bc905a53df (patch)
tree5d1dfcafaedc747dd076b3c99fd0ae5ede3043ec /src/mame/audio/cps3.cpp
parent9e48f9fae7cf1651eb81bf06ccbac61e9cdfc289 (diff)
mame/audio (mostly): simplified some handlers (nw)
Diffstat (limited to 'src/mame/audio/cps3.cpp')
-rw-r--r--src/mame/audio/cps3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/cps3.cpp b/src/mame/audio/cps3.cpp
index 7c15634738c..d1d9a4cab1d 100644
--- a/src/mame/audio/cps3.cpp
+++ b/src/mame/audio/cps3.cpp
@@ -138,7 +138,7 @@ void cps3_sound_device::sound_stream_update(sound_stream &stream, stream_sample_
}
-WRITE32_MEMBER( cps3_sound_device::cps3_sound_w )
+void cps3_sound_device::sound_w(offs_t offset, uint32_t data, uint32_t mem_mask)
{
m_stream->update();
@@ -171,7 +171,7 @@ WRITE32_MEMBER( cps3_sound_device::cps3_sound_w )
}
-READ32_MEMBER( cps3_sound_device::cps3_sound_r )
+uint32_t cps3_sound_device::sound_r(offs_t offset, uint32_t mem_mask)
{
m_stream->update();