diff options
author | 2019-09-20 10:13:01 -0400 | |
---|---|---|
committer | 2019-09-20 10:13:01 -0400 | |
commit | 0917a7295fc020a3ea41948e5e3e90c84d8ed485 (patch) | |
tree | 43d1d30b4169400478846c5c6def69fba9af82a3 /scripts/src | |
parent | 3e6b9f975625c9036157da7f2ea48400b3bfb8ed (diff) |
acorn_vidc: Move to src/devices/video and fix full build (nw)
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/machine.lua | 12 | ||||
-rw-r--r-- | scripts/src/video.lua | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 96598c3aab8..fa836f90189 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4161,15 +4161,3 @@ if (MACHINES["VRENDER0"]~=null) then MAME_DIR .. "src/devices/machine/vrender0.h", } end - --------------------------------------------------- --- ---@src/devices/machine/acorn_vidc.h,MACHINES["ACORN_VIDC10"] = true --------------------------------------------------- - -if (MACHINES["ACORN_VIDC10"]~=null) then - files { - MAME_DIR .. "src/devices/machine/acorn_vidc.cpp", - MAME_DIR .. "src/devices/machine/acorn_vidc.h", - } -end diff --git a/scripts/src/video.lua b/scripts/src/video.lua index d4c4920002a..fae7bad2434 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -43,6 +43,18 @@ end -------------------------------------------------- -- +--@src/devices/video/acorn_vidc.h,MACHINES["ACORN_VIDC"] = true +-------------------------------------------------- + +if (VIDEOS["ACORN_VIDC"]~=null) then + files { + MAME_DIR .. "src/devices/video/acorn_vidc.cpp", + MAME_DIR .. "src/devices/video/acorn_vidc.h", + } +end + +-------------------------------------------------- +-- --@src/devices/video/am8052.h,VIDEOS["AM8052"] = true -------------------------------------------------- |