summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tecmo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tecmo.cpp')
-rw-r--r--src/mame/drivers/tecmo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tecmo.cpp b/src/mame/drivers/tecmo.cpp
index 3c05672371a..40a22c6e7bd 100644
--- a/src/mame/drivers/tecmo.cpp
+++ b/src/mame/drivers/tecmo.cpp
@@ -95,7 +95,7 @@ WRITE_LINE_MEMBER(tecmo_state::adpcm_int)
m_msm->reset_w(1);
else if (m_adpcm_data != -1)
{
- m_msm->data_w(m_adpcm_data & 0x0f);
+ m_msm->write_data(m_adpcm_data & 0x0f);
m_adpcm_data = -1;
}
else
@@ -103,7 +103,7 @@ WRITE_LINE_MEMBER(tecmo_state::adpcm_int)
uint8_t *ROM = memregion("adpcm")->base();
m_adpcm_data = ROM[m_adpcm_pos++];
- m_msm->data_w(m_adpcm_data >> 4);
+ m_msm->write_data(m_adpcm_data >> 4);
}
}