blob: 691ffe7562f16619927224408d56bb50043bf908 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)
{
}
|