diff options
| author | 2025-09-23 12:32:12 +0200 | |
|---|---|---|
| committer | 2025-09-23 12:32:29 +0200 | |
| commit | 824eeb489a8eb31f6d613bf81c7dd05f14a859d6 (patch) | |
| tree | e37015957c29f46c10ba1162ff2c1df281734b28 /scripts | |
| parent | 373dc11bce951ab07fca86a70fcccd820c1cbe5f (diff) | |
pluto6: replace serialvfd device with msc1937_device,
roc10937: move this vfd controller from machine folder to video folder
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/machine.lua | 12 | ||||
| -rw-r--r-- | scripts/src/video.lua | 24 |
2 files changed, 12 insertions, 24 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 4eddf23ec6b..19a480061cd 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3083,18 +3083,6 @@ end --------------------------------------------------- -- ---@src/devices/machine/roc10937.h,MACHINES["ROC10937"] = true ---------------------------------------------------- - -if (MACHINES["ROC10937"]~=null) then - files { - MAME_DIR .. "src/devices/machine/roc10937.cpp", - MAME_DIR .. "src/devices/machine/roc10937.h", - } -end - ---------------------------------------------------- --- --@src/devices/machine/rp5c01.h,MACHINES["RP5C01"] = true --------------------------------------------------- diff --git a/scripts/src/video.lua b/scripts/src/video.lua index 19ec99ffc44..9afab7a61c8 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -1137,6 +1137,18 @@ if (VIDEOS["RAMDAC"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/video/roc10937.h,VIDEOS["ROC10937"] = true +--------------------------------------------------- + +if (MACHINES["ROC10937"]~=null) then + files { + MAME_DIR .. "src/devices/video/roc10937.cpp", + MAME_DIR .. "src/devices/video/roc10937.h", + } +end + -------------------------------------------------- -- --@src/devices/video/saa5050.h,VIDEOS["SAA5050"] = true @@ -1805,15 +1817,3 @@ if (VIDEOS["ST7626"]~=null) then MAME_DIR .. "src/devices/video/st7626.h", } end - --------------------------------------------------- --- ---@src/devices/video/serialvfd.h,VIDEOS["SERIALVFD"] = true --------------------------------------------------- - -if (VIDEOS["SERIALVFD"]~=null) then - files { - MAME_DIR .. "src/devices/video/serialvfd.cpp", - MAME_DIR .. "src/devices/video/serialvfd.h", - } -end |
