summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/calomega.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-09-02 09:13:01 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-09-02 09:13:01 +0000
commit420e1e0ad52e1e0341d9ca2d1745e413a47fe6c0 (patch)
treea5a8c7eb86a2a9cc70028e60bb8a3345ec0f3c6c /src/mame/includes/calomega.h
parenta7313263b31b101fcc422c3ed2880d0b6b5e99b1 (diff)
Added include files for all remaining drivers with multiple source files.
[Atari Ace] ---------- Forwarded message ---------- From: Atari Ace <atari_ace@frontier.com> Date: Sun, Aug 29, 2010 at 10:35 PM Subject: [patch] Add missing include files for multi-file drivers To: submit@mamedev.org Cc: atariace@hotmail.com Hi mamdev, Converting a driver to use driver_data requires that multi-file drivers have a common include file to host the driver_data class. Thus this patch, which gets ahead of the curve and adds missing include files to all multi-file drivers (minus ones covered by my last driver_data patch). The first patch is include-related cleanup of the existing drivers. The second patch then adds ~100 files to mame/includes. ~aa
Diffstat (limited to 'src/mame/includes/calomega.h')
-rw-r--r--src/mame/includes/calomega.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mame/includes/calomega.h b/src/mame/includes/calomega.h
new file mode 100644
index 00000000000..7744fbcc998
--- /dev/null
+++ b/src/mame/includes/calomega.h
@@ -0,0 +1,9 @@
+/*----------- defined in video/calomega.c -----------*/
+
+extern UINT8 *calomega_videoram;
+extern UINT8 *calomega_colorram;
+WRITE8_HANDLER( calomega_videoram_w );
+WRITE8_HANDLER( calomega_colorram_w );
+PALETTE_INIT( calomega );
+VIDEO_START( calomega );
+VIDEO_UPDATE( calomega );