summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/sp0256.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/sp0256.cpp')
-rw-r--r--src/devices/sound/sp0256.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/sp0256.cpp b/src/devices/sound/sp0256.cpp
index 78f77da29ba..54c17fcaf21 100644
--- a/src/devices/sound/sp0256.cpp
+++ b/src/devices/sound/sp0256.cpp
@@ -1141,7 +1141,7 @@ void sp0256_device::micro()
-WRITE8_MEMBER( sp0256_device::ald_w )
+void sp0256_device::ald_w(uint8_t data)
{
/* ---------------------------------------------------------------- */
/* Drop writes to the ALD register if we're busy. */
@@ -1180,7 +1180,7 @@ READ_LINE_MEMBER( sp0256_device::sby_r )
return m_sby_line;
}
-READ16_MEMBER( sp0256_device::spb640_r )
+uint16_t sp0256_device::spb640_r(offs_t offset)
{
/* -------------------------------------------------------------------- */
/* Offset 0 returns the SP0256 LRQ status on bit 15. */
@@ -1204,11 +1204,11 @@ READ16_MEMBER( sp0256_device::spb640_r )
return 0x00ff;
}
-WRITE16_MEMBER( sp0256_device::spb640_w )
+void sp0256_device::spb640_w(offs_t offset, uint16_t data)
{
if (offset == 0)
{
- ald_w(space, 0, data & 0xff);
+ ald_w(data & 0xff);
return;
}