summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/video.lua
diff options
context:
space:
mode:
author Felipe CorrĂȘa da Silva Sanches <fsanches@metamaquina.com.br>2017-08-22 22:53:00 -0300
committer Vas Crabb <cuavas@users.noreply.github.com>2017-08-23 11:53:00 +1000
commitf2407286b14d2fad789a207045cba2a0e20c94dd (patch)
tree54b16fc11b43cea6c2199f1a50590af70e565050 /scripts/src/video.lua
parent14891e3c99ba76bf8ff2048a1c1d5497ab16a1a8 (diff)
new drivers for "Control ID x628" fingerprint-reader and for the NT7534 LCD controller (#2583)
* initial skelethon: ControlID X628 fingerprint reader * first draft of an implementation of the NT7534 device (LCD controller) * fix emulation of ControlID x628 + NT7534 LCD controller * cidx628: fix LCD color palette on Control ID x628 driver * Adding a header with details of the hardware. This is the first MAME driver with an LCD controlled by a NT7534 chip, so I wrote an initial implementation of that new device.
Diffstat (limited to 'scripts/src/video.lua')
-rw-r--r--scripts/src/video.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/video.lua b/scripts/src/video.lua
index 5bf85c6650d..f883a45f592 100644
--- a/scripts/src/video.lua
+++ b/scripts/src/video.lua
@@ -270,6 +270,18 @@ end
--------------------------------------------------
--
+--@src/devices/video/nt7534.h,VIDEOS["NT7534"] = true
+--------------------------------------------------
+
+if (VIDEOS["NT7534"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/video/nt7534.cpp",
+ MAME_DIR .. "src/devices/video/nt7534.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/hd44102.h,VIDEOS["HD44102"] = true
--------------------------------------------------