diff options
author | 2017-01-27 23:14:12 +1100 | |
---|---|---|
committer | 2017-01-27 23:14:12 +1100 | |
commit | 26cd861a9385b035d3227fd8cd71cdd9aa0b5181 (patch) | |
tree | 5c847a0fe396f241e42eedfa93ba23a654e934ad /docs/release/scripts/src/video.lua | |
parent | a69112f29d7f574b50c048d8c0861da7fdff444d (diff) |
Added remaining CPS-2 games from mame++.
Diffstat (limited to 'docs/release/scripts/src/video.lua')
-rw-r--r-- | docs/release/scripts/src/video.lua | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/release/scripts/src/video.lua b/docs/release/scripts/src/video.lua index cad05c3ac1b..ba52eb78bcd 100644 --- a/docs/release/scripts/src/video.lua +++ b/docs/release/scripts/src/video.lua @@ -330,6 +330,18 @@ end -------------------------------------------------- -- +--@src/devices/video/hlcd0515.h,VIDEOS["HLCD0515"] = true +-------------------------------------------------- + +if (VIDEOS["HLCD0515"]~=null) then + files { + MAME_DIR .. "src/devices/video/hlcd0515.cpp", + MAME_DIR .. "src/devices/video/hlcd0515.h", + } +end + +-------------------------------------------------- +-- --@src/devices/video/huc6202.h,VIDEOS["HUC6202"] = true -------------------------------------------------- @@ -378,6 +390,18 @@ end -------------------------------------------------- -- +--@src/devices/video/huc6271.h,VIDEOS["HUC6271"] = true +-------------------------------------------------- + +if (VIDEOS["HUC6271"]~=null) then + files { + MAME_DIR .. "src/devices/video/huc6271.cpp", + MAME_DIR .. "src/devices/video/huc6271.h", + } +end + +-------------------------------------------------- +-- --@src/devices/video/huc6272.h,VIDEOS["HUC6272"] = true -------------------------------------------------- @@ -900,3 +924,15 @@ if (VIDEOS["GBA_LCD"]~=null) then MAME_DIR .. "src/devices/video/gba_lcd.h", } end + +-------------------------------------------------- +-- +--@src/devices/video/ef9369.h,VIDEOS["EF9369"] = true +-------------------------------------------------- + +if (VIDEOS["EF9369"]~=null) then + files { + MAME_DIR .. "src/devices/video/ef9369.cpp", + MAME_DIR .. "src/devices/video/ef9369.h", + } +end |