summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/macrossp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/macrossp.cpp')
-rw-r--r--src/mame/drivers/macrossp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/macrossp.cpp b/src/mame/drivers/macrossp.cpp
index 62ae2e8c7f5..d0fe5b3b565 100644
--- a/src/mame/drivers/macrossp.cpp
+++ b/src/mame/drivers/macrossp.cpp
@@ -310,7 +310,7 @@ WRITE32_MEMBER(macrossp_state::macrossp_soundcmd_w)
if (ACCESSING_BITS_16_31)
{
//logerror("%08x write soundcmd %08x (%08x)\n",m_maincpu->pc(),data,mem_mask);
- m_soundlatch->write(space, 0, data >> 16, 0xffff);
+ m_soundlatch->write(data >> 16);
m_sndpending = 1;
m_audiocpu->set_input_line(2, HOLD_LINE);
/* spin for a while to let the sound CPU read the command */
@@ -322,7 +322,7 @@ READ16_MEMBER(macrossp_state::macrossp_soundcmd_r)
{
// logerror("%06x read soundcmd\n",m_audiocpu->pc());
m_sndpending = 0;
- return m_soundlatch->read(space, offset, mem_mask);
+ return m_soundlatch->read();
}
WRITE16_MEMBER(macrossp_state::palette_fade_w)