summaryrefslogblamecommitdiffstatshomepage
path: root/src/devices/machine/atadev.cpp
blob: f2f5686c6904c02de422f21f895e4fb9a578331a (plain) (tree)
1
2
3
4
5
6
7
8
9
                       
                        





                                                                            
                






                                                                                             
                              


                                

 
// 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)
{
}