summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/k056800.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/k056800.cpp')
-rw-r--r--src/devices/sound/k056800.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/k056800.cpp b/src/devices/sound/k056800.cpp
index 2bb499eb414..aae1aa10bf2 100644
--- a/src/devices/sound/k056800.cpp
+++ b/src/devices/sound/k056800.cpp
@@ -63,7 +63,7 @@ void k056800_device::device_reset()
DEVICE HANDLERS
*****************************************************************************/
-READ8_MEMBER( k056800_device::host_r )
+uint8_t k056800_device::host_r(offs_t offset)
{
uint32_t r = offset & 7;
uint8_t data = 0;
@@ -85,7 +85,7 @@ READ8_MEMBER( k056800_device::host_r )
}
-WRITE8_MEMBER( k056800_device::host_w )
+void k056800_device::host_w(offs_t offset, uint8_t data)
{
uint32_t r = offset & 7;
@@ -123,7 +123,7 @@ WRITE8_MEMBER( k056800_device::host_w )
}
-READ8_MEMBER( k056800_device::sound_r )
+uint8_t k056800_device::sound_r(offs_t offset)
{
uint32_t r = offset & 7;
uint8_t data = 0;
@@ -142,7 +142,7 @@ READ8_MEMBER( k056800_device::sound_r )
}
-WRITE8_MEMBER( k056800_device::sound_w )
+void k056800_device::sound_w(offs_t offset, uint8_t data)
{
uint32_t r = offset & 7;