diff options
Diffstat (limited to 'src/mame/drivers/contra.cpp')
-rw-r--r-- | src/mame/drivers/contra.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/contra.cpp b/src/mame/drivers/contra.cpp index db2579ed9f2..dc61014eb9a 100644 --- a/src/mame/drivers/contra.cpp +++ b/src/mame/drivers/contra.cpp @@ -209,12 +209,12 @@ void contra_state::machine_reset() MACHINE_CONFIG_START(contra_state::contra) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", HD6309E, XTAL(24'000'000) / 8) /* 3000000? (HD63C09EP) */ - MCFG_CPU_PROGRAM_MAP(contra_map) - MCFG_CPU_VBLANK_INT_DRIVER("screen", contra_state, contra_interrupt) + MCFG_DEVICE_ADD("maincpu", HD6309E, XTAL(24'000'000) / 8) /* 3000000? (HD63C09EP) */ + MCFG_DEVICE_PROGRAM_MAP(contra_map) + MCFG_DEVICE_VBLANK_INT_DRIVER("screen", contra_state, contra_interrupt) - MCFG_CPU_ADD("audiocpu", MC6809E, XTAL(24'000'000)/8) /* 3000000? (HD68B09EP) */ - MCFG_CPU_PROGRAM_MAP(sound_map) + MCFG_DEVICE_ADD("audiocpu", MC6809E, XTAL(24'000'000)/8) /* 3000000? (HD68B09EP) */ + MCFG_DEVICE_PROGRAM_MAP(sound_map) MCFG_QUANTUM_TIME(attotime::from_hz(6000)) /* enough for the sound CPU to read all commands */ |