summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/gaelco.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2007-12-17 15:19:59 +0000
committer Aaron Giles <aaron@aarongiles.com>2007-12-17 15:19:59 +0000
commit7b77f1218624ea26dbb2efd85a19f795f5d4e02e (patch)
tree19209304095572b4fd61c2a2d6a5aa75c4e471ad /src/emu/sound/gaelco.h
parent3da7f476068b3ffef713218ba2fc1bd5030f2c38 (diff)
Initial checkin of MAME 0.121.mame0121
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