summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/esd16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/esd16.cpp')
-rw-r--r--src/mame/drivers/esd16.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/esd16.cpp b/src/mame/drivers/esd16.cpp
index ec6ec003c0e..094df3194e7 100644
--- a/src/mame/drivers/esd16.cpp
+++ b/src/mame/drivers/esd16.cpp
@@ -85,9 +85,9 @@ ToDo:
***************************************************************************/
-WRITE8_MEMBER(esd16_state::sound_command_w)
+void esd16_state::sound_command_w(u8 data)
{
- m_soundlatch->write(space, 0, data & 0xff);
+ m_soundlatch->write(data & 0xff);
m_maincpu->spin_until_time(attotime::from_usec(50)); // Allow the other CPU to reply
}