summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/video.lua
diff options
context:
space:
mode:
author Luca Elia <lucaelia@mamedev.org>2017-02-05 22:26:58 +0100
committer Luca Elia <lucaelia@mamedev.org>2017-02-05 22:44:38 +0100
commit4170ed789e69ee42671409a13d39f3b3534b2ffa (patch)
treeb24bc2da8394b2c9819292021d4720e175f47e99 /scripts/src/video.lua
parent3bf389d079cbeb05034bb3b0b2a4f636527f3b21 (diff)
More complete Galaxy Games emulation: [Luca Elia]
- Created devices for the galaxy games carts (EEPROM + Flash + PIC) and the slot(s) - Removed code patches and emulated the PIC communication and bank switching - Converted the blitter to a device (cesblit.cpp) - moved the Galaxy Games from tmaster.cpp to their own driver (galgames.cpp) Provided the PIC code for all four StarPak cartridges [Keith M. Kolmos] New working machines -------------------- Galaxy Games StarPak 3 [Keith M. Kolmos, Rod_Wod, Sean Sutton, Soren Skou Nielsen, Russell Howard, Francis Ramirez, Tourniquet, BrianT, coolmod, Smitdogg, The Dumping Union, Luca Elia]
Diffstat (limited to 'scripts/src/video.lua')
-rw-r--r--scripts/src/video.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/video.lua b/scripts/src/video.lua
index 770de5db893..57067922935 100644
--- a/scripts/src/video.lua
+++ b/scripts/src/video.lua
@@ -79,6 +79,18 @@ end
--------------------------------------------------
--
+--@src/devices/video/cesblit.h,VIDEOS["CESBLIT"] = true
+--------------------------------------------------
+
+if (VIDEOS["CESBLIT"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/video/cesblit.cpp",
+ MAME_DIR .. "src/devices/video/cesblit.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/crt9007.h,VIDEOS["CRT9007"] = true
--------------------------------------------------