diff options
author | 2019-05-06 20:26:05 -0400 | |
---|---|---|
committer | 2019-05-06 20:27:20 -0400 | |
commit | 610897fd3823ae7d5377534202faed56c30b13df (patch) | |
tree | 4dd225b8ee31c0b737abf49e8366ba544f79de0f /scripts | |
parent | 43c856c9e9d5f38051fb02e19d47f35fcef6a5f6 (diff) |
Preliminary emulation of T6963C and related LCD controllers
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 069c2fc802d..042be7e2a19 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -816,6 +816,18 @@ end -------------------------------------------------- -- +--@src/devices/video/t6963c.h,VIDEOS["T6963C"] = true +-------------------------------------------------- + +if (VIDEOS["T6963C"]~=null) then + files { + MAME_DIR .. "src/devices/video/t6963c.cpp", + MAME_DIR .. "src/devices/video/t6963c.h", + } +end + +-------------------------------------------------- +-- --@src/devices/video/t6a04.h,VIDEOS["T6A04"] = true -------------------------------------------------- diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index df0e9e9d88a..8ddb6d6b7bc 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -341,6 +341,7 @@ VIDEOS["SCN2674"] = true --VIDEOS["SED1520"] = true VIDEOS["SNES_PPU"] = true VIDEOS["STVVDP"] = true +--VIDEOS["T6963C"] = true --VIDEOS["T6A04"] = true VIDEOS["TLC34076"] = true VIDEOS["TMS34061"] = true diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index a6c4b24d22f..714f6a56732 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -360,6 +360,7 @@ VIDEOS["SED1330"] = true VIDEOS["SED1520"] = true VIDEOS["SNES_PPU"] = true VIDEOS["STVVDP"] = true +VIDEOS["T6963C"] = true VIDEOS["T6A04"] = true VIDEOS["TEA1002"] = true --VIDEOS["TLC34076"] = true |