diff options
Diffstat (limited to 'src/mame/drivers/exidy440.cpp')
-rw-r--r-- | src/mame/drivers/exidy440.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/drivers/exidy440.cpp b/src/mame/drivers/exidy440.cpp index fe0154e6606..fe13d019b0d 100644 --- a/src/mame/drivers/exidy440.cpp +++ b/src/mame/drivers/exidy440.cpp @@ -1024,9 +1024,9 @@ INPUT_PORTS_END MACHINE_CONFIG_START(exidy440_state::exidy440) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", MC6809E, MAIN_CPU_CLOCK) - MCFG_CPU_PROGRAM_MAP(exidy440_map) - MCFG_CPU_VBLANK_INT_DRIVER("screen", exidy440_state, exidy440_vblank_interrupt) + MCFG_DEVICE_ADD("maincpu", MC6809E, MAIN_CPU_CLOCK) + MCFG_DEVICE_PROGRAM_MAP(exidy440_map) + MCFG_DEVICE_VBLANK_INT_DRIVER("screen", exidy440_state, exidy440_vblank_interrupt) MCFG_NVRAM_ADD_0FILL("nvram") @@ -1034,26 +1034,26 @@ MACHINE_CONFIG_START(exidy440_state::exidy440) exidy440_video(config); /* audio hardware */ - MCFG_CPU_ADD("audiocpu", MC6809, EXIDY440_AUDIO_CLOCK) - MCFG_CPU_PROGRAM_MAP(exidy440_audio_map) - MCFG_CPU_VBLANK_INT_DRIVER("screen", driver_device, irq0_line_assert) + MCFG_DEVICE_ADD("audiocpu", MC6809, EXIDY440_AUDIO_CLOCK) + MCFG_DEVICE_PROGRAM_MAP(exidy440_audio_map) + MCFG_DEVICE_VBLANK_INT_DRIVER("screen", driver_device, irq0_line_assert) MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker") - MCFG_SOUND_ADD("custom", EXIDY440, EXIDY440_MC3418_CLOCK) + MCFG_DEVICE_ADD("custom", EXIDY440, EXIDY440_MC3418_CLOCK) MCFG_SOUND_ROUTE(0, "lspeaker", 1.0) MCFG_SOUND_ROUTE(1, "rspeaker", 1.0) -// MCFG_SOUND_ADD("cvsd1", MC3418, EXIDY440_MC3418_CLOCK) +// MCFG_DEVICE_ADD("cvsd1", MC3418, EXIDY440_MC3418_CLOCK) // MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 1.0) -// MCFG_SOUND_ADD("cvsd2", MC3418, EXIDY440_MC3418_CLOCK) +// MCFG_DEVICE_ADD("cvsd2", MC3418, EXIDY440_MC3418_CLOCK) // MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 1.0) -// MCFG_SOUND_ADD("cvsd3", MC3417, EXIDY440_MC3417_CLOCK) +// MCFG_DEVICE_ADD("cvsd3", MC3417, EXIDY440_MC3417_CLOCK) // MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 1.0) -// MCFG_SOUND_ADD("cvsd4", MC3417, EXIDY440_MC3417_CLOCK) +// MCFG_DEVICE_ADD("cvsd4", MC3417, EXIDY440_MC3417_CLOCK) // MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 1.0) MACHINE_CONFIG_END |