diff options
author | 2017-12-06 18:58:55 +0700 | |
---|---|---|
committer | 2017-12-06 18:58:55 +0700 | |
commit | ad9b6fe4e53fcf7037463500e42a4a458c9e670f (patch) | |
tree | 73b3954dd70b40ee334308a512fd76933bb6f9db /scripts/src/video.lua | |
parent | 7e7bff3543662746b07b15ac53d5523c58fa8a89 (diff) |
dp8510: new device
An implementation of the National Semiconductor DP8510 BITBLT Processing Unit. This is used on the InterPro GT family graphics boards, and this implementation seems to be correct enough to enable me to progress there, hence the PR. While I'd love to have another system to test against, I'm not aware of any other systems that ever used this device other than some NatSemi reference designs, which are not (yet) in MAME.
Diffstat (limited to 'scripts/src/video.lua')
-rw-r--r-- | scripts/src/video.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/video.lua b/scripts/src/video.lua index 59ed7ef18f8..035717a2da1 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -1033,3 +1033,15 @@ if (VIDEOS["I4100"]~=null) then MAME_DIR .. "src/devices/video/imagetek_i4100.h", } end + +-------------------------------------------------- +-- +--@src/devices/video/dp8510.h,VIDEOS["DP8510"] = true +-------------------------------------------------- + +if (VIDEOS["DP8510"]~=null) then + files { + MAME_DIR .. "src/devices/video/dp8510.cpp", + MAME_DIR .. "src/devices/video/dp8510.h", + } +end |