// license:BSD-3-Clause // copyright-holders:smf /*************************************************************************** ATA Device implementation. ***************************************************************************/ #include "emu.h" #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) { }