diff options
Diffstat (limited to 'src/mame/drivers/policetr.cpp')
-rw-r--r-- | src/mame/drivers/policetr.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/policetr.cpp b/src/mame/drivers/policetr.cpp index 73ab7bc7e5b..04b2a3853b9 100644 --- a/src/mame/drivers/policetr.cpp +++ b/src/mame/drivers/policetr.cpp @@ -402,10 +402,10 @@ void policetr_state::machine_start() MACHINE_CONFIG_START(policetr_state::policetr) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", R3041, MASTER_CLOCK/2) + MCFG_DEVICE_ADD("maincpu", R3041, MASTER_CLOCK/2) MCFG_R3000_ENDIANNESS(ENDIANNESS_BIG) - MCFG_CPU_PROGRAM_MAP(policetr_map) - MCFG_CPU_VBLANK_INT_DRIVER("screen", policetr_state, irq4_gen) + MCFG_DEVICE_PROGRAM_MAP(policetr_map) + MCFG_DEVICE_VBLANK_INT_DRIVER("screen", policetr_state, irq4_gen) MCFG_EEPROM_SERIAL_93C66_ADD("eeprom") @@ -434,8 +434,8 @@ MACHINE_CONFIG_START(policetr_state::sshooter) policetr(config); /* basic machine hardware */ - MCFG_CPU_MODIFY("maincpu") - MCFG_CPU_PROGRAM_MAP(sshooter_map) + MCFG_DEVICE_MODIFY("maincpu") + MCFG_DEVICE_PROGRAM_MAP(sshooter_map) MACHINE_CONFIG_END |