diff options
| author | 2019-12-06 02:24:49 +0100 | |
|---|---|---|
| committer | 2019-12-06 02:25:10 +0100 | |
| commit | cc116dc97298912d19731a465ffc2bbd8864b81f (patch) | |
| tree | 12422fdfb01a46df6b0fd3cf96033f37081a8bd8 /scripts | |
| parent | 41e5fd22e03cd78dd0b3efa7dd24141d14665208 (diff) | |
added LC7582 LCD Driver (nw)
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 e1c5160b439..2352d32e850 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -545,6 +545,18 @@ end -------------------------------------------------- -- +--@src/devices/video/lc7582.h,VIDEOS["LC7582"] = true +-------------------------------------------------- + +if (VIDEOS["LC7582"]~=null) then + files { + MAME_DIR .. "src/devices/video/lc7582.cpp", + MAME_DIR .. "src/devices/video/lc7582.h", + } +end + +-------------------------------------------------- +-- --@src/devices/video/m50458.h,VIDEOS["M50458"] = true -------------------------------------------------- diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 2cb0b2950a0..4d2d0dd01fb 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -324,6 +324,7 @@ VIDEOS["I4100"] = true --VIDEOS["I8244"] = true VIDEOS["I8275"] = true VIDEOS["JANGOU_BLITTER"] = true +--VIDEOS["LC7582"] = true VIDEOS["M50458"] = true VIDEOS["MB90082"] = true VIDEOS["MB_VCU"] = true diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 79b3f22bf68..2617c5b555a 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -346,6 +346,7 @@ VIDEOS["I8244"] = true VIDEOS["I82730"] = true VIDEOS["I8275"] = true VIDEOS["IMS_CVC"] = true +VIDEOS["LC7582"] = true --VIDEOS["M50458"] = true --VIDEOS["MB90082"] = true --VIDEOS["MB_VCU"] = true |
