summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/990_hd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/990_hd.h')
-rw-r--r--src/mess/machine/990_hd.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mess/machine/990_hd.h b/src/mess/machine/990_hd.h
new file mode 100644
index 00000000000..740b4c9bd64
--- /dev/null
+++ b/src/mess/machine/990_hd.h
@@ -0,0 +1,18 @@
+/*
+ 990_hd.h: include file for 990_hd.c
+*/
+#ifndef __990_HD_H_
+#define __990_HD_H_
+
+#include "imagedev/harddriv.h"
+
+MACHINE_START( ti990_hdc );
+
+void ti990_hdc_init(running_machine &machine, void (*interrupt_callback)(running_machine &machine, int state));
+
+READ16_HANDLER(ti990_hdc_r);
+WRITE16_HANDLER(ti990_hdc_w);
+
+MACHINE_CONFIG_EXTERN( ti990_hdc );
+
+#endif