summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/msm6242.h
blob: cffe8dc7167b21a2c53a876dcf0dd749fb8e4d57 (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
/***************************************************************************

    MSM6242 Real Time Clock

    Copyright Nicola Salmoria and the MAME Team.
    Visit http://mamedev.org for licensing and usage restrictions.

***************************************************************************/

#pragma once

#ifndef __MSM6242_H__
#define __MSM6242_H__

#include "devlegcy.h"


DECLARE_LEGACY_DEVICE(MSM6242, msm6242);

#define MDRV_MSM6242_ADD(_tag) \
	MDRV_DEVICE_ADD(_tag, MSM6242, 0)


READ8_DEVICE_HANDLER( msm6242_r );
WRITE8_DEVICE_HANDLER( msm6242_w );


#endif /* __MSM6242_H__ */