summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/atadev.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-08 12:56:12 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-08 12:56:12 +0100
commit7c19aac60e12d6f5ea301bdb34d7826a01e0b06f (patch)
treef310d86aa2c6bfc19d115307dedde4eb0cd52dad /src/devices/machine/atadev.cpp
parenta57b46ae933badd7441ce1644711dbb851e2b504 (diff)
Rename *.c -> *.cpp in our source (nw)
Diffstat (limited to 'src/devices/machine/atadev.cpp')
-rw-r--r--src/devices/machine/atadev.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/devices/machine/atadev.cpp b/src/devices/machine/atadev.cpp
new file mode 100644
index 00000000000..691ffe7562f
--- /dev/null
+++ b/src/devices/machine/atadev.cpp
@@ -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)
+{
+}