summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Phil Bennett <philipjbennett@users.noreply.github.com>2009-02-23 13:34:16 +0000
committer Phil Bennett <philipjbennett@users.noreply.github.com>2009-02-23 13:34:16 +0000
commit3ed4a9ee433b8081d4fb0d79baf6d050c9789bdd (patch)
treea006048336a4569ab1f70c9c966a40f81fba719c
parent54eb6adc8bd92835b37d3b2a2f875869dcabd48d (diff)
02947: turbosb6, turbosb7: [debug] Assertion [Phil Bennett]
-rw-r--r--src/mame/drivers/esripsys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/esripsys.c b/src/mame/drivers/esripsys.c
index ce994f986b3..bb231c2860c 100644
--- a/src/mame/drivers/esripsys.c
+++ b/src/mame/drivers/esripsys.c
@@ -554,7 +554,7 @@ static READ8_HANDLER( tms5220_r )
if (offset == 0)
{
/* TMS5220 core returns status bits in D7-D6 */
- const device_config *tms = devtag_get_device(space->machine, SOUND, "tms");
+ const device_config *tms = devtag_get_device(space->machine, SOUND, "tms5220nl");
UINT8 status = tms5220_status_r(tms, 0);
status = ((status & 0x80) >> 5) | ((status & 0x40) >> 5) | ((status & 0x20) >> 5);
@@ -567,7 +567,7 @@ static READ8_HANDLER( tms5220_r )
/* TODO: Implement correctly using the state PROM */
static WRITE8_HANDLER( tms5220_w )
{
- const device_config *tms = devtag_get_device(space->machine, SOUND, "tms");
+ const device_config *tms = devtag_get_device(space->machine, SOUND, "tms5220nl");
if (offset == 0)
{
tms_data = data;