diff options
Diffstat (limited to 'src/emu/machine/ataintf.c')
-rw-r--r-- | src/emu/machine/ataintf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/machine/ataintf.c b/src/emu/machine/ataintf.c index 7d41cd81e5c..d82d5c850a0 100644 --- a/src/emu/machine/ataintf.c +++ b/src/emu/machine/ataintf.c @@ -155,8 +155,8 @@ SLOT_INTERFACE_START(ata_devices) SLOT_INTERFACE("hdd", IDE_HARDDISK) SLOT_INTERFACE_END -ata_interface_device::ata_interface_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, type, name, tag, owner, clock), +ata_interface_device::ata_interface_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) : + device_t(mconfig, type, name, tag, owner, clock, shortname, source), m_irq_handler(*this), m_dmarq_handler(*this) { @@ -166,7 +166,7 @@ ata_interface_device::ata_interface_device(const machine_config &mconfig, device const device_type ATA_INTERFACE = &device_creator<ata_interface_device>; ata_interface_device::ata_interface_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, ATA_INTERFACE, "ATA Interface", tag, owner, clock), + device_t(mconfig, ATA_INTERFACE, "ATA Interface", tag, owner, clock, "ata_interface", __FILE__), m_irq_handler(*this), m_dmarq_handler(*this) { @@ -233,7 +233,7 @@ const device_type ATA_SLOT = &device_creator<ata_slot_device>; //------------------------------------------------- ata_slot_device::ata_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, ATA_SLOT, "ATA Connector", tag, owner, clock), + : device_t(mconfig, ATA_SLOT, "ATA Connector", tag, owner, clock, "ata_slot", __FILE__), device_slot_interface(mconfig, *this), m_dev(NULL) { |