summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/atadev.c
blob: e7c8345caa35e0010da10cec94e4e53a515523a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// license:MAME
// 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)
{
}