diff options
Diffstat (limited to 'src/mame/drivers/taito_o.cpp')
-rw-r--r-- | src/mame/drivers/taito_o.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/taito_o.cpp b/src/mame/drivers/taito_o.cpp index a58ed8abb80..f3a3252cbe8 100644 --- a/src/mame/drivers/taito_o.cpp +++ b/src/mame/drivers/taito_o.cpp @@ -235,8 +235,8 @@ void taitoo_state::machine_start() MACHINE_CONFIG_START(taitoo_state::parentj) - MCFG_CPU_ADD("maincpu", M68000,12000000 ) /*?? MHz */ - MCFG_CPU_PROGRAM_MAP(parentj_map) + MCFG_DEVICE_ADD("maincpu", M68000,12000000 ) /*?? MHz */ + MCFG_DEVICE_PROGRAM_MAP(parentj_map) MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", taitoo_state, parentj_interrupt, "screen", 0, 1) MCFG_WATCHDOG_ADD("watchdog") @@ -262,7 +262,7 @@ MACHINE_CONFIG_START(taitoo_state::parentj) MCFG_SPEAKER_STANDARD_MONO("mono") - MCFG_SOUND_ADD("ymsnd", YM2203, 2000000) /*?? MHz */ + MCFG_DEVICE_ADD("ymsnd", YM2203, 2000000) /*?? MHz */ MCFG_AY8910_PORT_A_READ_CB(IOPORT("DSWA")) MCFG_AY8910_PORT_B_READ_CB(IOPORT("DSWB")) MCFG_SOUND_ROUTE(0, "mono", 0.25) |