summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/atadev.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/atadev.c')
-rw-r--r--src/devices/machine/atadev.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/devices/machine/atadev.c b/src/devices/machine/atadev.c
new file mode 100644
index 00000000000..691ffe7562f
--- /dev/null
+++ b/src/devices/machine/atadev.c
@@ -0,0 +1,21 @@
+// license:BSD-3-Clause
+// copyright-holders:smf
+/***************************************************************************
+
+ ATA Device implementation.
+
+***************************************************************************/
+
+#include "atadev.h"
+
+//-------------------------------------------------
+// ata_device_interface - constructor
+//-------------------------------------------------
+
+ata_device_interface::ata_device_interface(const machine_config &mconfig, device_t &device) :
+ m_irq_handler(device),
+ m_dmarq_handler(device),
+ m_dasp_handler(device),
+ m_pdiag_handler(device)
+{
+}