summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/lethal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/lethal.cpp')
-rw-r--r--src/mame/drivers/lethal.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/lethal.cpp b/src/mame/drivers/lethal.cpp
index c71a57ffb05..bf5ce51cf47 100644
--- a/src/mame/drivers/lethal.cpp
+++ b/src/mame/drivers/lethal.cpp
@@ -492,12 +492,12 @@ void lethal_state::machine_reset()
MACHINE_CONFIG_START(lethal_state::lethalen)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", HD6309, MAIN_CLOCK/2) /* verified on pcb */
- MCFG_CPU_PROGRAM_MAP(le_main)
- MCFG_CPU_VBLANK_INT_DRIVER("screen", lethal_state, lethalen_interrupt)
+ MCFG_DEVICE_ADD("maincpu", HD6309, MAIN_CLOCK/2) /* verified on pcb */
+ MCFG_DEVICE_PROGRAM_MAP(le_main)
+ MCFG_DEVICE_VBLANK_INT_DRIVER("screen", lethal_state, lethalen_interrupt)
- MCFG_CPU_ADD("soundcpu", Z80, MAIN_CLOCK/4) /* verified on pcb */
- MCFG_CPU_PROGRAM_MAP(le_sound)
+ MCFG_DEVICE_ADD("soundcpu", Z80, MAIN_CLOCK/4) /* verified on pcb */
+ MCFG_DEVICE_PROGRAM_MAP(le_sound)
MCFG_DEVICE_ADD("bank4000", ADDRESS_MAP_BANK, 0)
MCFG_DEVICE_PROGRAM_MAP(bank4000_map)