diff options
Diffstat (limited to 'src/mame/drivers/quakeat.cpp')
-rw-r--r-- | src/mame/drivers/quakeat.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/quakeat.cpp b/src/mame/drivers/quakeat.cpp index e6a3b794f55..6d70edfdc68 100644 --- a/src/mame/drivers/quakeat.cpp +++ b/src/mame/drivers/quakeat.cpp @@ -123,10 +123,10 @@ void quakeat_state::machine_start() MACHINE_CONFIG_START(quakeat_state::quake) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", PENTIUM2, 233000000) /* Pentium II, 233MHz */ - MCFG_CPU_PROGRAM_MAP(quake_map) - MCFG_CPU_IO_MAP(quake_io) - MCFG_CPU_IRQ_ACKNOWLEDGE_DEVICE("pic8259_1", pic8259_device, inta_cb) + MCFG_DEVICE_ADD("maincpu", PENTIUM2, 233000000) /* Pentium II, 233MHz */ + MCFG_DEVICE_PROGRAM_MAP(quake_map) + MCFG_DEVICE_IO_MAP(quake_io) + MCFG_DEVICE_IRQ_ACKNOWLEDGE_DEVICE("pic8259_1", pic8259_device, inta_cb) pcat_common(config); |