diff options
Diffstat (limited to 'src/mame/drivers/deshoros.cpp')
-rw-r--r-- | src/mame/drivers/deshoros.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/deshoros.cpp b/src/mame/drivers/deshoros.cpp index d1f41acdb92..81cc442b48d 100644 --- a/src/mame/drivers/deshoros.cpp +++ b/src/mame/drivers/deshoros.cpp @@ -267,9 +267,9 @@ void destiny_state::machine_reset() MACHINE_CONFIG_START(destiny_state::destiny) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", M6809, XTAL(4'000'000)/2) - MCFG_CPU_PROGRAM_MAP(main_map) - MCFG_CPU_PERIODIC_INT_DRIVER(destiny_state, irq0_line_hold, 50) // timer irq controls update speed, frequency needs to be determined yet (2MHz through three 74LS390) + MCFG_DEVICE_ADD("maincpu", M6809, XTAL(4'000'000)/2) + MCFG_DEVICE_PROGRAM_MAP(main_map) + MCFG_DEVICE_PERIODIC_INT_DRIVER(destiny_state, irq0_line_hold, 50) // timer irq controls update speed, frequency needs to be determined yet (2MHz through three 74LS390) /* video hardware (dummy) */ MCFG_SCREEN_ADD("screen", LCD) @@ -285,7 +285,7 @@ MACHINE_CONFIG_START(destiny_state::destiny) /* sound hardware */ MCFG_SPEAKER_STANDARD_MONO("mono") - MCFG_SOUND_ADD("beeper", BEEP, 800) // TODO: determine exact frequency thru schematics + MCFG_DEVICE_ADD("beeper", BEEP, 800) // TODO: determine exact frequency thru schematics MCFG_SOUND_ROUTE(ALL_OUTPUTS,"mono",0.50) MACHINE_CONFIG_END |