summaryrefslogblamecommitdiffstatshomepage
path: root/src/devices/machine/mb89371.cpp
blob: d9ec2f12e4801af1a16f07ebe5531d0b8e9109cb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                       
                        







                   
                



                                                            
                                                                                                                 
                                                                                                        














                                    
// license:BSD-3-Clause
// copyright-holders:smf
/*
 * MB89371
 *
 * Fujitsu
 * Dual Serial UART
 *
 */

#include "emu.h"
#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_t clock )
	: device_t(mconfig, MB89371, "MB89371 Dual Serial UART", tag, owner, clock, "mb89371", __FILE__)
{
}

void mb89371_device::device_start()
{
}

WRITE8_MEMBER(mb89371_device::write)
{
}

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