summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/gaelco.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/gaelco.h')
-rw-r--r--src/emu/sound/gaelco.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/emu/sound/gaelco.h b/src/emu/sound/gaelco.h
new file mode 100644
index 00000000000..04f4e16d405
--- /dev/null
+++ b/src/emu/sound/gaelco.h
@@ -0,0 +1,13 @@
+#ifndef gaelco_snd_h
+#define gaelco_snd_h
+
+struct gaelcosnd_interface
+{
+ int region; /* memory region */
+ int banks[4]; /* start of each ROM bank */
+};
+
+WRITE16_HANDLER( gaelcosnd_w );
+READ16_HANDLER( gaelcosnd_r );
+
+#endif