blob: 217547a3b751995117b4f872cd26aaeb229250f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// license:BSD-3-Clause
// copyright-holders:hap
/**********************************************************************
NEC uPD71054 programmable timer/counter
TODO:
- x
**********************************************************************/
#include "machine/upd71054.h"
const device_type UPD71054 = &device_creator<upd71054_device>;
//-------------------------------------------------
// upd71054_device - constructor
//-------------------------------------------------
upd71054_device::upd71054_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, UPD71054, "NEC uPD71054", tag, owner, clock, "upd71054", __FILE__)
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
void upd71054_device::device_start()
{
}
//-------------------------------------------------
// device_reset - device-specific reset
//-------------------------------------------------
void upd71054_device::device_reset()
{
}
|