diff options
Diffstat (limited to 'docs/release/scripts/src/machine.lua')
-rw-r--r-- | docs/release/scripts/src/machine.lua | 63 |
1 files changed, 46 insertions, 17 deletions
diff --git a/docs/release/scripts/src/machine.lua b/docs/release/scripts/src/machine.lua index 79f1c545491..185ad28dc4d 100644 --- a/docs/release/scripts/src/machine.lua +++ b/docs/release/scripts/src/machine.lua @@ -60,6 +60,8 @@ files { -- MAME_DIR .. "src/devices/imagedev/snapquik.cpp", -- MAME_DIR .. "src/devices/imagedev/snapquik.h", } + + --------------------------------------------------- -- --@src/devices/machine/akiko.h,MACHINES["AKIKO"] = true @@ -2222,9 +2224,6 @@ end -- --@src/devices/machine/nscsi_bus.h,MACHINES["NSCSI"] = true --@src/devices/machine/nscsi_cb.h,MACHINES["NSCSI"] = true ---@src/devices/machine/nscsi_cd.h,MACHINES["NSCSI"] = true ---@src/devices/machine/nscsi_hd.h,MACHINES["NSCSI"] = true ---@src/devices/machine/nscsi_s1410.h,MACHINES["NSCSI"] = true --------------------------------------------------- if (MACHINES["NSCSI"]~=null) then @@ -2233,12 +2232,6 @@ if (MACHINES["NSCSI"]~=null) then MAME_DIR .. "src/devices/machine/nscsi_bus.h", MAME_DIR .. "src/devices/machine/nscsi_cb.cpp", MAME_DIR .. "src/devices/machine/nscsi_cb.h", - MAME_DIR .. "src/devices/machine/nscsi_cd.cpp", - MAME_DIR .. "src/devices/machine/nscsi_cd.h", - MAME_DIR .. "src/devices/machine/nscsi_hd.cpp", - MAME_DIR .. "src/devices/machine/nscsi_hd.h", - MAME_DIR .. "src/devices/machine/nscsi_s1410.cpp", - MAME_DIR .. "src/devices/machine/nscsi_s1410.h", } end @@ -2663,25 +2656,37 @@ end --------------------------------------------------- -- ---@src/devices/machine/serflash.h,MACHINES["SERFLASH"] = true +--@src/devices/machine/sda2006.h,MACHINES["SDA2006"] = true --------------------------------------------------- -if (MACHINES["SERFLASH"]~=null) then +if (MACHINES["SDA2006"]~=null) then files { - MAME_DIR .. "src/devices/machine/serflash.cpp", - MAME_DIR .. "src/devices/machine/serflash.h", + MAME_DIR .. "src/devices/machine/sda2006.cpp", + MAME_DIR .. "src/devices/machine/sda2006.h", } end --------------------------------------------------- -- ---@src/devices/machine/sda2006.h,MACHINES["SDA2006"] = true +--@src/devices/machine/sensorboard.h,MACHINES["SENSORBOARD"] = true --------------------------------------------------- -if (MACHINES["SDA2006"]~=null) then +if (MACHINES["SENSORBOARD"]~=null) then files { - MAME_DIR .. "src/devices/machine/sda2006.cpp", - MAME_DIR .. "src/devices/machine/sda2006.h", + MAME_DIR .. "src/devices/machine/sensorboard.cpp", + MAME_DIR .. "src/devices/machine/sensorboard.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/serflash.h,MACHINES["SERFLASH"] = true +--------------------------------------------------- + +if (MACHINES["SERFLASH"]~=null) then + files { + MAME_DIR .. "src/devices/machine/serflash.cpp", + MAME_DIR .. "src/devices/machine/serflash.h", } end @@ -4065,3 +4070,27 @@ if (MACHINES["XC1700E"]~=null) then MAME_DIR .. "src/devices/machine/xc1700e.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/edlc.h,MACHINES["EDLC"] = true +--------------------------------------------------- + +if (MACHINES["EDLC"]~=null) then + files { + MAME_DIR .. "src/devices/machine/edlc.cpp", + MAME_DIR .. "src/devices/machine/edlc.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/wtl3132.h,MACHINES["WTL3132"] = true +--------------------------------------------------- + +if (MACHINES["WTL3132"]~=null) then + files { + MAME_DIR .. "src/devices/machine/wtl3132.cpp", + MAME_DIR .. "src/devices/machine/wtl3132.h", + } +end |