diff options
| author | 2018-11-18 22:47:37 -0500 | |
|---|---|---|
| committer | 2018-11-18 22:47:37 -0500 | |
| commit | 2c575fe8bc0b81ecf75671c44069ea1169987c69 (patch) | |
| tree | 61ce2e407ce9574fd4b8f5017133f82e918917f0 /scripts/src | |
| parent | e567e1023709cc88d159765be7b22720a3811bce (diff) | |
| parent | f6efe2921f2a7f201d402967b1d0b849cac8ce82 (diff) | |
Merge pull request #4313 from hp9k/hp98550
add HP98550 high-res color graphic card
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 |
