summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/ds2401.h
blob: 6acd33b786ec71330f25e19fc4cf598d85603f1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * DS2401
 *
 * Dallas Semiconductor
 * Silicon Serial Number
 *
 */

#if !defined( DS2401_H )
#define DS2401_H ( 1 )

#define DS2401_MAXCHIP ( 3 )

extern void ds2401_init( int which, const UINT8 *data );
extern void ds2401_write( int which, int data );
extern int ds2401_read( int which );

#endif