summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ashnojoe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ashnojoe.cpp')
-rw-r--r--src/mame/drivers/ashnojoe.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ashnojoe.cpp b/src/mame/drivers/ashnojoe.cpp
index b0f86449e6f..0d3ad27babf 100644
--- a/src/mame/drivers/ashnojoe.cpp
+++ b/src/mame/drivers/ashnojoe.cpp
@@ -273,11 +273,11 @@ WRITE_LINE_MEMBER(ashnojoe_state::ashnojoe_vclk_cb)
{
if (m_msm5205_vclk_toggle == 0)
{
- m_msm->write_data(m_adpcm_byte >> 4);
+ m_msm->data_w(m_adpcm_byte >> 4);
}
else
{
- m_msm->write_data(m_adpcm_byte & 0xf);
+ m_msm->data_w(m_adpcm_byte & 0xf);
m_audiocpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
}