summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/csd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/csd.cpp')
-rw-r--r--src/mame/audio/csd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/csd.cpp b/src/mame/audio/csd.cpp
index 416c3143353..d770de8cd5d 100644
--- a/src/mame/audio/csd.cpp
+++ b/src/mame/audio/csd.cpp
@@ -116,7 +116,7 @@ void midway_cheap_squeak_deluxe_device::suspend_cpu()
// stat_r - return the status value
//-------------------------------------------------
-READ8_MEMBER( midway_cheap_squeak_deluxe_device::stat_r )
+u8 midway_cheap_squeak_deluxe_device::stat_r()
{
return m_status;
}
@@ -125,7 +125,7 @@ READ8_MEMBER( midway_cheap_squeak_deluxe_device::stat_r )
// sr_w - external 4-bit write to the input latch
//-------------------------------------------------
-WRITE8_MEMBER( midway_cheap_squeak_deluxe_device::sr_w )
+void midway_cheap_squeak_deluxe_device::sr_w(u8 data)
{
m_pia->write_portb(data & 0x0f);
}