diff options
Diffstat (limited to 'src/mame/drivers/interact.cpp')
-rw-r--r-- | src/mame/drivers/interact.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/interact.cpp b/src/mame/drivers/interact.cpp index 6d77e61fcca..431b1c95029 100644 --- a/src/mame/drivers/interact.cpp +++ b/src/mame/drivers/interact.cpp @@ -127,9 +127,9 @@ uint32_t interact_state::screen_update_interact(screen_device &screen, bitmap_in MACHINE_CONFIG_START(interact_state::interact) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", I8080, XTAL(2'000'000)) - MCFG_CPU_PROGRAM_MAP(interact_mem) - MCFG_CPU_PERIODIC_INT_DRIVER(interact_state, irq0_line_hold, 50) /* put on the I8080 irq in Hz*/ + MCFG_DEVICE_ADD("maincpu", I8080, XTAL(2'000'000)) + MCFG_DEVICE_PROGRAM_MAP(interact_mem) + MCFG_DEVICE_PERIODIC_INT_DRIVER(interact_state, irq0_line_hold, 50) /* put on the I8080 irq in Hz*/ MCFG_MACHINE_RESET_OVERRIDE(interact_state,interact) MCFG_MACHINE_START_OVERRIDE(interact_state,interact) @@ -164,9 +164,9 @@ MACHINE_CONFIG_END MACHINE_CONFIG_START(interact_state::hector1) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", Z80, XTAL(1'750'000)) - MCFG_CPU_PROGRAM_MAP(interact_mem) - MCFG_CPU_PERIODIC_INT_DRIVER(interact_state, irq0_line_hold, 50) /* put on the I8080 irq in Hz*/ + MCFG_DEVICE_ADD("maincpu", Z80, XTAL(1'750'000)) + MCFG_DEVICE_PROGRAM_MAP(interact_mem) + MCFG_DEVICE_PERIODIC_INT_DRIVER(interact_state, irq0_line_hold, 50) /* put on the I8080 irq in Hz*/ MCFG_MACHINE_RESET_OVERRIDE(interact_state,interact) MCFG_MACHINE_START_OVERRIDE(interact_state,interact) |