summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/lc89510.h
blob: a254a40928be6a6652b878a1c699387b13ab44d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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_t clock);



protected:
	virtual void device_start() override;
	virtual void device_reset() override;
};


extern const device_type LC89510;