summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/mb89371.c
blob: 7da9ef30f3e67ff734f62117f608dd524b976f9f (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
// license:MAME
// copyright-holders:smf
/*
 * MB89371
 *
 * Fujitsu
 * Dual Serial UART
 *
 */

#include "mb89371.h"

const device_type MB89371 = &device_creator<mb89371_device>;

mb89371_device::mb89371_device( const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock )
	: device_t(mconfig, MB89371, "MB89371", tag, owner, clock, "mb89371", __FILE__)
{
}

void mb89371_device::device_start()
{
}

WRITE8_MEMBER(mb89371_device::write)
{
}

READ8_MEMBER(mb89371_device::read)
{
	return 0xff;
}