summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/atarigt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/atarigt.h')
-rw-r--r--src/mame/includes/atarigt.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/mame/includes/atarigt.h b/src/mame/includes/atarigt.h
new file mode 100644
index 00000000000..ce2039786d6
--- /dev/null
+++ b/src/mame/includes/atarigt.h
@@ -0,0 +1,22 @@
+/*************************************************************************
+
+ Atari GT hardware
+
+*************************************************************************/
+
+/*----------- defined in drivers/atarigt.c -----------*/
+
+extern UINT8 atarigt_is_primrage;
+
+
+/*----------- defined in video/atarigt.c -----------*/
+
+extern UINT16 *atarigt_colorram;
+
+void atarigt_colorram_w(offs_t address, UINT16 data, UINT16 mem_mask);
+UINT16 atarigt_colorram_r(offs_t address);
+
+VIDEO_START( atarigt );
+VIDEO_UPDATE( atarigt );
+
+void atarigt_scanline_update(running_machine *machine, int scrnum, int scanline);