diff options
author | 2019-01-20 21:29:32 -0500 | |
---|---|---|
committer | 2019-01-20 21:29:32 -0500 | |
commit | 32703cfa5ae42c652cb62998106da267b2e97861 (patch) | |
tree | 34f1ce37a99b97d57063b349200fb0b8c04db3c3 /scripts/src/video.lua | |
parent | 3b88c56063f25c50285f5ed2a9705349400e099a (diff) |
decstation: move SFB video chip to separate device for future AlphaAXP sharing [R. Belmont]
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 6db6cd104e1..3f78a2a154a 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -1148,3 +1148,15 @@ if (VIDEOS["PS2GS"]~=null) then MAME_DIR .. "src/devices/video/ps2gs.h", } end + +-------------------------------------------------- +-- +--@src/devices/video/decsfb.h,VIDEOS["DECSFB"] = true +-------------------------------------------------- +if (VIDEOS["DECSFB"]~=null) then + files { + MAME_DIR .. "src/devices/video/decsfb.cpp", + MAME_DIR .. "src/devices/video/decsfb.h", + } +end + |