summaryrefslogblamecommitdiffstatshomepage
path: root/src/devices/machine/mb89371.h
blob: 3093590d51ba780102a54db0bec77fe918e28861 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                       
                        










                     




                                      
                                                                                                        






                                       
                                             






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

#ifndef __MB89371_H__
#define __MB89371_H__


class mb89371_device : public device_t
{
public:
	// construction/destruction
	mb89371_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t 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