summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/atahle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/atahle.cpp')
-rw-r--r--src/devices/machine/atahle.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/devices/machine/atahle.cpp b/src/devices/machine/atahle.cpp
index ad94f6a4f69..b93826e35de 100644
--- a/src/devices/machine/atahle.cpp
+++ b/src/devices/machine/atahle.cpp
@@ -40,10 +40,9 @@ enum
#define DEVICE1_PDIAG_TIME (attotime::from_msec(2))
#define DIAGNOSTIC_TIME (attotime::from_msec(2))
-ata_hle_device::ata_hle_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock,const char *shortname, const char *source)
- : device_t(mconfig, type, name, tag, owner, clock, shortname, source),
- ata_device_interface(mconfig, *this),
- device_slot_card_interface(mconfig, *this),
+ata_hle_device::ata_hle_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock)
+ : device_t(mconfig, type, tag, owner, clock),
+ device_ata_interface(mconfig, *this),
m_buffer_offset(0),
m_buffer_size(0),
m_error(0),