summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/smc91c9x.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/smc91c9x.h')
-rw-r--r--src/emu/machine/smc91c9x.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/emu/machine/smc91c9x.h b/src/emu/machine/smc91c9x.h
new file mode 100644
index 00000000000..2cef861294c
--- /dev/null
+++ b/src/emu/machine/smc91c9x.h
@@ -0,0 +1,22 @@
+/*************************************************************************
+
+ SMC91C9X ethernet controller implementation
+
+ by Aaron Giles
+
+**************************************************************************/
+
+#ifndef __SMC91C9X__
+#define __SMC91C9X__
+
+struct smc91c9x_interface
+{
+ void (*irq_handler)(int state);
+};
+
+void smc91c94_init(struct smc91c9x_interface *config);
+void smc91c94_reset(void);
+READ16_HANDLER( smc91c94_r );
+WRITE16_HANDLER( smc91c94_w );
+
+#endif