summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mb89371.h
blob: 5862c202f6bfc36e4c75a06f5c75090f169293d3 (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
// license:BSD-3-Clause
// copyright-holders:smf
/*
 * MB89371
 *
 * Fujitsu
 * Dual Serial UART
 *
 */

#ifndef __MB89371_H__
#define __MB89371_H__

#include "emu.h"

class mb89371_device : public device_t
{
public:
	// construction/destruction
	mb89371_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);

	DECLARE_WRITE8_MEMBER( write );
	DECLARE_READ8_MEMBER( read );

protected:

	// device-level overrides
	virtual void device_start() override;
};


// device type definition
extern const device_type MB89371;

#endif