diff options
Diffstat (limited to 'src/mame/drivers/taitowlf.cpp')
-rw-r--r-- | src/mame/drivers/taitowlf.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/taitowlf.cpp b/src/mame/drivers/taitowlf.cpp index e8775976818..8dff006e27b 100644 --- a/src/mame/drivers/taitowlf.cpp +++ b/src/mame/drivers/taitowlf.cpp @@ -378,10 +378,10 @@ PALETTE_INIT_MEMBER(taitowlf_state, taitowlf) MACHINE_CONFIG_START(taitowlf_state::taitowlf) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", PENTIUM, 200000000) - MCFG_CPU_PROGRAM_MAP(taitowlf_map) - MCFG_CPU_IO_MAP(taitowlf_io) - MCFG_CPU_IRQ_ACKNOWLEDGE_DEVICE("pic8259_1", pic8259_device, inta_cb) + MCFG_DEVICE_ADD("maincpu", PENTIUM, 200000000) + MCFG_DEVICE_PROGRAM_MAP(taitowlf_map) + MCFG_DEVICE_IO_MAP(taitowlf_io) + MCFG_DEVICE_IRQ_ACKNOWLEDGE_DEVICE("pic8259_1", pic8259_device, inta_cb) MCFG_PCI_BUS_LEGACY_ADD("pcibus", 0) |