summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/smc91c9x.h
blob: 6abc6c001a5b0c13053a60dff1c20b94dadebbc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*************************************************************************

    SMC91C9X ethernet controller implementation

    by Aaron Giles

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

#ifndef __SMC91C9X__
#define __SMC91C9X__

struct smc91c9x_interface
{
	void (*irq_handler)(int state);
};

void smc91c94_init(const struct smc91c9x_interface *config);
void smc91c94_reset(void);
READ16_HANDLER( smc91c94_r );
WRITE16_HANDLER( smc91c94_w );

#endif