summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/pasha2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pasha2.cpp')
-rw-r--r--src/mame/drivers/pasha2.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/pasha2.cpp b/src/mame/drivers/pasha2.cpp
index 370b53e962f..ddb88570092 100644
--- a/src/mame/drivers/pasha2.cpp
+++ b/src/mame/drivers/pasha2.cpp
@@ -397,12 +397,12 @@ void pasha2_state::machine_reset()
MACHINE_CONFIG_START(pasha2_state::pasha2)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", E116XT, 20000000*4) /* 4x internal multiplier */
- MCFG_CPU_PROGRAM_MAP(pasha2_map)
- MCFG_CPU_IO_MAP(pasha2_io)
- MCFG_CPU_VBLANK_INT_DRIVER("screen", pasha2_state, irq0_line_hold)
+ MCFG_DEVICE_ADD("maincpu", E116XT, 20000000*4) /* 4x internal multiplier */
+ MCFG_DEVICE_PROGRAM_MAP(pasha2_map)
+ MCFG_DEVICE_IO_MAP(pasha2_io)
+ MCFG_DEVICE_VBLANK_INT_DRIVER("screen", pasha2_state, irq0_line_hold)
- MCFG_CPU_ADD("audiocpu", I80C52, 12000000) /* actually AT89C52; clock from docs */
+ MCFG_DEVICE_ADD("audiocpu", I80C52, 12000000) /* actually AT89C52; clock from docs */
/* TODO : ports are unimplemented; P0,P1,P2,P3 and Serial Port Used */
MCFG_EEPROM_SERIAL_93C46_ADD("eeprom")