diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/bus.lua | 2 | ||||
-rw-r--r-- | scripts/src/video.lua | 12 |
2 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 198c4283c04..7fbc4448458 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -910,6 +910,8 @@ if (BUSES["HPDIO"]~=null) then MAME_DIR .. "src/devices/bus/hp_dio/hp98543.h", MAME_DIR .. "src/devices/bus/hp_dio/hp98544.cpp", MAME_DIR .. "src/devices/bus/hp_dio/hp98544.h", + MAME_DIR .. "src/devices/bus/hp_dio/hp98550.cpp", + MAME_DIR .. "src/devices/bus/hp_dio/hp98550.h", MAME_DIR .. "src/devices/bus/hp_dio/hp98603a.cpp", MAME_DIR .. "src/devices/bus/hp_dio/hp98603a.h", MAME_DIR .. "src/devices/bus/hp_dio/hp98603b.cpp", diff --git a/scripts/src/video.lua b/scripts/src/video.lua index fa529660ab1..6db6cd104e1 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -1106,6 +1106,18 @@ end -------------------------------------------------- -- +--@src/devices/video/catseye.h,VIDEOS["CATSEYE"] = true +-------------------------------------------------- +if (VIDEOS["CATSEYE"]~=null) then + files { + MAME_DIR .. "src/devices/video/catseye.cpp", + MAME_DIR .. "src/devices/video/catseye.h", + } +end + + +-------------------------------------------------- +-- --@src/devices/video/nereid.h,VIDEOS["NEREID"] = true -------------------------------------------------- if (VIDEOS["NEREID"]~=null) then |