blob: c5d3bdbe5b1c53cf7ea46c0edc13adde27106348 (
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:MAME
// 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, const char *tag, device_t *owner, UINT32 clock);
DECLARE_WRITE8_MEMBER( write );
DECLARE_READ8_MEMBER( read );
protected:
// device-level overrides
virtual void device_start();
};
// device type definition
extern const device_type MB89371;
#endif
|