diff options
| author | 2018-09-25 00:51:14 -0400 | |
|---|---|---|
| committer | 2018-09-25 00:51:14 -0400 | |
| commit | fad9283ecc0290e07bedc992537db6c8d982ab83 (patch) | |
| tree | d1b51feef06b5fae3cff8cde5e26b9c497cd6492 /scripts | |
| parent | 3d3eda2b3234bda646f6d09f18803fc57a6723a5 (diff) | |
Preliminary emulation of National DP8350 CRT controller family
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/video.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/arcade.lua | 1 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
3 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/video.lua b/scripts/src/video.lua index a5b47457dd3..fa529660ab1 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -151,6 +151,18 @@ end -------------------------------------------------- -- +--@src/devices/video/dp8350.h,VIDEOS["DP8350"] = true +-------------------------------------------------- + +if (VIDEOS["DP8350"]~=null) then + files { + MAME_DIR .. "src/devices/video/dp8350.cpp", + MAME_DIR .. "src/devices/video/dp8350.h", + } +end + +-------------------------------------------------- +-- --@src/devices/video/ef9340_1.h,VIDEOS["EF9340_1"] = true -------------------------------------------------- diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 2ff01e51362..5e8d6b36b20 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -288,6 +288,7 @@ VIDEOS["CESBLIT"] = true VIDEOS["CRTC_EGA"] = true --VIDEOS["DL1416"] = true VIDEOS["DM9368"] = true +VIDEOS["DP8350"] = true --VIDEOS["EF9340_1"] = true --VIDEOS["EF9345"] = true --VIDEOS["EF9364"] = true diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 95e8e3fabfc..5500370302f 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -297,6 +297,7 @@ VIDEOS["CRT9212"] = true VIDEOS["CRTC_EGA"] = true VIDEOS["DL1416"] = true VIDEOS["DM9368"] = true +VIDEOS["DP8350"] = true VIDEOS["EF9340_1"] = true VIDEOS["EF9345"] = true VIDEOS["EF9364"] = true |
