summaryrefslogtreecommitdiffstatshomepage
path: root/trunk/src/emu/sound/es5506.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/emu/sound/es5506.h')
-rw-r--r--trunk/src/emu/sound/es5506.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/trunk/src/emu/sound/es5506.h b/trunk/src/emu/sound/es5506.h
new file mode 100644
index 00000000000..03e268431ea
--- /dev/null
+++ b/trunk/src/emu/sound/es5506.h
@@ -0,0 +1,49 @@
+/**********************************************************************************************
+ *
+ * Ensoniq ES5505/6 driver
+ * by Aaron Giles
+ *
+ **********************************************************************************************/
+
+#pragma once
+
+#ifndef __ES5506_H__
+#define __ES5506_H__
+
+#include "devlegcy.h"
+
+typedef struct _es5505_interface es5505_interface;
+struct _es5505_interface
+{
+ const char * region0; /* memory region where the sample ROM lives */
+ const char * region1; /* memory region where the sample ROM lives */
+ void (*irq_callback)(device_t *device, int state); /* irq callback */
+ UINT16 (*read_port)(device_t *device); /* input port read */
+};
+
+READ16_DEVICE_HANDLER( es5505_r );
+WRITE16_DEVICE_HANDLER( es5505_w );
+void es5505_voice_bank_w(device_t *device, int voice, int bank);
+void es5505_set_channel_volume(device_t *device, int channel, int volume);
+
+DECLARE_LEGACY_SOUND_DEVICE(ES5505, es5505);
+
+
+typedef struct _es5506_interface es5506_interface;
+struct _es5506_interface
+{
+ const char * region0; /* memory region where the sample ROM lives */
+ const char * region1; /* memory region where the sample ROM lives */
+ const char * region2; /* memory region where the sample ROM lives */
+ const char * region3; /* memory region where the sample ROM lives */
+ void (*irq_callback)(device_t *device, int state); /* irq callback */
+ UINT16 (*read_port)(device_t *device); /* input port read */
+};
+
+READ8_DEVICE_HANDLER( es5506_r );
+WRITE8_DEVICE_HANDLER( es5506_w );
+void es5506_voice_bank_w(device_t *device, int voice, int bank);
+
+DECLARE_LEGACY_SOUND_DEVICE(ES5506, es5506);
+
+#endif /* __ES5506_H__ */