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