summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/queen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/queen.cpp')
-rw-r--r--src/mame/drivers/queen.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/queen.cpp b/src/mame/drivers/queen.cpp
index a12d1719694..b7a5a4fbf64 100644
--- a/src/mame/drivers/queen.cpp
+++ b/src/mame/drivers/queen.cpp
@@ -281,10 +281,10 @@ void queen_state::machine_reset()
MACHINE_CONFIG_START(queen_state::queen)
- MCFG_CPU_ADD("maincpu", PENTIUM3, 533000000/16) // Celeron or Pentium 3, 533 Mhz
- MCFG_CPU_PROGRAM_MAP(queen_map)
- MCFG_CPU_IO_MAP(queen_io)
- MCFG_CPU_IRQ_ACKNOWLEDGE_DEVICE("pic8259_1", pic8259_device, inta_cb)
+ MCFG_DEVICE_ADD("maincpu", PENTIUM3, 533000000/16) // Celeron or Pentium 3, 533 Mhz
+ MCFG_DEVICE_PROGRAM_MAP(queen_map)
+ MCFG_DEVICE_IO_MAP(queen_io)
+ MCFG_DEVICE_IRQ_ACKNOWLEDGE_DEVICE("pic8259_1", pic8259_device, inta_cb)
pcat_common(config);
@@ -293,10 +293,10 @@ MACHINE_CONFIG_START(queen_state::queen)
MCFG_PCI_BUS_LEGACY_DEVICE(7, DEVICE_SELF, queen_state, intel82371ab_pci_r, intel82371ab_pci_w)
MCFG_IDE_CONTROLLER_ADD("ide", ata_devices, "hdd", nullptr, true)
- MCFG_ATA_INTERFACE_IRQ_HANDLER(DEVWRITELINE("pic8259_2", pic8259_device, ir6_w))
+ MCFG_ATA_INTERFACE_IRQ_HANDLER(WRITELINE("pic8259_2", pic8259_device, ir6_w))
MCFG_IDE_CONTROLLER_32_ADD("ide2", ata_devices, nullptr, nullptr, true)
- MCFG_ATA_INTERFACE_IRQ_HANDLER(DEVWRITELINE("pic8259_2", pic8259_device, ir7_w))
+ MCFG_ATA_INTERFACE_IRQ_HANDLER(WRITELINE("pic8259_2", pic8259_device, ir7_w))
/* video hardware */
pcvideo_vga(config);