summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tispeak.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tispeak.cpp')
-rw-r--r--src/mame/drivers/tispeak.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/tispeak.cpp b/src/mame/drivers/tispeak.cpp
index 70761a18d92..7ee95c29cd0 100644
--- a/src/mame/drivers/tispeak.cpp
+++ b/src/mame/drivers/tispeak.cpp
@@ -1272,11 +1272,11 @@ MACHINE_CONFIG_START(tispeak_state::tms5110_route)
/* sound hardware */
MCFG_DEVICE_MODIFY("tms5100")
- MCFG_TMS5110_M0_CB(WRITELINE("tms6100", tms6100_device, m0_w))
- MCFG_TMS5110_M1_CB(WRITELINE("tms6100", tms6100_device, m1_w))
- MCFG_TMS5110_ADDR_CB(WRITE8("tms6100", tms6100_device, add_w))
- MCFG_TMS5110_DATA_CB(READLINE("tms6100", tms6100_device, data_line_r))
- MCFG_TMS5110_ROMCLK_CB(WRITELINE("tms6100", tms6100_device, clk_w))
+ MCFG_TMS5110_M0_CB(WRITELINE(m_tms6100, tms6100_device, m0_w))
+ MCFG_TMS5110_M1_CB(WRITELINE(m_tms6100, tms6100_device, m1_w))
+ MCFG_TMS5110_ADDR_CB(WRITE8(m_tms6100, tms6100_device, add_w))
+ MCFG_TMS5110_DATA_CB(READLINE(m_tms6100, tms6100_device, data_line_r))
+ MCFG_TMS5110_ROMCLK_CB(WRITELINE(m_tms6100, tms6100_device, clk_w))
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.5)
MACHINE_CONFIG_END
@@ -1296,7 +1296,7 @@ MACHINE_CONFIG_START(tispeak_state::snmath)
config.set_default_layout(layout_snmath);
/* sound hardware */
- MCFG_DEVICE_ADD("tms6100", TMS6100, MASTER_CLOCK/4)
+ TMS6100(config, m_tms6100, MASTER_CLOCK/4);
SPEAKER(config, "mono").front_center();
MCFG_DEVICE_ADD("tms5100", CD2801, MASTER_CLOCK)
@@ -1401,7 +1401,7 @@ MACHINE_CONFIG_START(tispeak_state::snspellc)
/* no visual feedback! */
/* sound hardware */
- MCFG_DEVICE_ADD("tms6100", TMS6100, MASTER_CLOCK/4)
+ TMS6100(config, m_tms6100, MASTER_CLOCK/4);
SPEAKER(config, "mono").front_center();
MCFG_DEVICE_ADD("tms5100", TMC0281D, MASTER_CLOCK)
@@ -1437,7 +1437,7 @@ MACHINE_CONFIG_START(tispeak_state::vocaid)
config.set_default_layout(layout_tntell);
/* sound hardware */
- MCFG_DEVICE_ADD("tms6100", TMS6100, MASTER_CLOCK/4)
+ TMS6100(config, m_tms6100, MASTER_CLOCK/4);
SPEAKER(config, "mono").front_center();
MCFG_DEVICE_ADD("tms5100", CD2802, MASTER_CLOCK)
@@ -1468,7 +1468,7 @@ MACHINE_CONFIG_START(tispeak_state::k28m2)
config.set_default_layout(layout_k28m2);
/* sound hardware */
- MCFG_DEVICE_ADD("tms6100", TMS6100, MASTER_CLOCK/4)
+ TMS6100(config, m_tms6100, MASTER_CLOCK/4);
SPEAKER(config, "mono").front_center();
MCFG_DEVICE_ADD("tms5100", TMS5110A, MASTER_CLOCK)