summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/asic65.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/asic65.h')
-rw-r--r--src/mame/machine/asic65.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mame/machine/asic65.h b/src/mame/machine/asic65.h
new file mode 100644
index 00000000000..b1b2436743b
--- /dev/null
+++ b/src/mame/machine/asic65.h
@@ -0,0 +1,18 @@
+/*************************************
+ *
+ * Implementation of ASIC65
+ *
+ *************************************/
+
+#define ASIC65_STANDARD 0
+#define ASIC65_STEELTAL 1
+#define ASIC65_GUARDIANS 2
+#define ASIC65_ROMBASED 3
+
+void asic65_config(int asictype);
+void asic65_reset(int state);
+WRITE16_HANDLER( asic65_data_w );
+READ16_HANDLER( asic65_r );
+READ16_HANDLER( asic65_io_r );
+
+MACHINE_DRIVER_EXTERN( asic65 );