summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/s14001a.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/s14001a.h')
-rw-r--r--src/emu/sound/s14001a.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/emu/sound/s14001a.h b/src/emu/sound/s14001a.h
new file mode 100644
index 00000000000..19e7149434a
--- /dev/null
+++ b/src/emu/sound/s14001a.h
@@ -0,0 +1,16 @@
+#ifndef _S14001A_H_
+#define _S14001A_H_
+
+struct S14001A_interface
+{
+ int region; /* memory region where the sample ROM lives */
+};
+
+int S14001A_bsy_0_r(void); /* read BUSY pin */
+void S14001A_reg_0_w(int data); /* write to input latch */
+void S14001A_rst_0_w(int data); /* write to RESET pin */
+void S14001A_set_rate(int newrate); /* set VSU-1000 clock divider */
+void S14001A_set_volume(int volume); /* set VSU-1000 volume control */
+
+#endif
+