summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/tmp68301.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/tmp68301.h')
-rw-r--r--src/emu/machine/tmp68301.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/emu/machine/tmp68301.h b/src/emu/machine/tmp68301.h
new file mode 100644
index 00000000000..55efe169220
--- /dev/null
+++ b/src/emu/machine/tmp68301.h
@@ -0,0 +1,16 @@
+#ifndef TMP68301_H
+#define TMP68301_H
+
+// Machine init
+MACHINE_RESET( tmp68301 );
+
+// Hardware Registers
+extern UINT16 *tmp68301_regs;
+WRITE16_HANDLER( tmp68301_regs_w );
+
+// Interrupts
+void tmp68301_external_interrupt_0(void);
+void tmp68301_external_interrupt_1(void);
+void tmp68301_external_interrupt_2(void);
+
+#endif