summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/xbox_pci.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/xbox_pci.cpp')
-rw-r--r--src/mame/machine/xbox_pci.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/xbox_pci.cpp b/src/mame/machine/xbox_pci.cpp
index c1237259ed2..f56259e68bf 100644
--- a/src/mame/machine/xbox_pci.cpp
+++ b/src/mame/machine/xbox_pci.cpp
@@ -1072,10 +1072,10 @@ void mcpx_ide_device::ide_io(address_map &map)
mcpx_ide_device::mcpx_ide_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: pci_device(mconfig, MCPX_IDE, tag, owner, clock),
- m_pri_interrupt_handler(*this),
- m_sec_interrupt_handler(*this),
m_pri(*this, "ide1"),
- m_sec(*this, "ide2")
+ m_sec(*this, "ide2"),
+ m_pri_interrupt_handler(*this),
+ m_sec_interrupt_handler(*this)
{
set_ids(0x10de01bc, 0, 0x01018a, 0);
}