blob: 4866cb24f76580cdacdbab4cf161b5de31a42ff3 (
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
|
// license:BSD-3-Clause
// copyright-holders:David Haywood
class lc89510_device : public device_t
{
public:
lc89510_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
protected:
virtual void device_start();
virtual void device_reset();
private:
};
extern const device_type LC89510;
|