diff options
author | 2019-10-29 10:49:22 +1100 | |
---|---|---|
committer | 2019-10-29 10:49:22 +1100 | |
commit | e4ee887d5cdffb6767e1078fe9dca32d7c920f2e (patch) | |
tree | 1c3ecc61329eae8cbad23cf1d2ca03a01764f739 /docs/release/scripts/src/machine.lua | |
parent | 1e8a03afab272a010763935b564c742155513797 (diff) |
0.215 Release filestag215
Diffstat (limited to 'docs/release/scripts/src/machine.lua')
-rw-r--r-- | docs/release/scripts/src/machine.lua | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/docs/release/scripts/src/machine.lua b/docs/release/scripts/src/machine.lua index b42ca10229b..126ee953ad9 100644 --- a/docs/release/scripts/src/machine.lua +++ b/docs/release/scripts/src/machine.lua @@ -65,6 +65,8 @@ files { -- MAME_DIR .. "src/devices/imagedev/snapquik.h", -- MAME_DIR .. "src/devices/imagedev/wafadrive.cpp", -- MAME_DIR .. "src/devices/imagedev/wafadrive.h", +-- MAME_DIR .. "src/devices/imagedev/avivideo.cpp", +-- MAME_DIR .. "src/devices/imagedev/avivideo.h", } @@ -573,6 +575,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/adc0804.h,MACHINES["ADC0804"] = true +--------------------------------------------------- + +if (MACHINES["ADC0804"]~=null) then + files { + MAME_DIR .. "src/devices/machine/adc0804.cpp", + MAME_DIR .. "src/devices/machine/adc0804.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/adc0808.h,MACHINES["ADC0808"] = true --------------------------------------------------- @@ -781,7 +795,6 @@ end --------------------------------------------------- if (MACHINES["ATAFLASH"]~=null) then - MACHINES["IDE"] = true MACHINES["PCCARD"] = true files { MAME_DIR .. "src/devices/machine/ataflash.cpp", @@ -901,18 +914,6 @@ end --------------------------------------------------- -- ---@src/devices/machine/cr589.h,MACHINES["CR589"] = true ---------------------------------------------------- - -if (MACHINES["CR589"]~=null) then - files { - MAME_DIR .. "src/devices/machine/cr589.cpp", - MAME_DIR .. "src/devices/machine/cr589.h", - } -end - ---------------------------------------------------- --- --@src/devices/machine/cs4031.h,MACHINES["CS4031"] = true --------------------------------------------------- @@ -1422,27 +1423,14 @@ end --------------------------------------------------- -- ---@src/devices/machine/atadev.h,MACHINES["IDE"] = true ---@src/devices/machine/ataintf.h,MACHINES["IDE"] = true +--@src/devices/machine/idectrl.h,MACHINES["IDECTRL"] = true +--@src/devices/machine/vt83c461.h,MACHINES["IDECTRL"] = true --------------------------------------------------- -if (MACHINES["IDE"]~=null) then - MACHINES["T10"] = true +if (MACHINES["IDECTRL"]~=null) then files { - MAME_DIR .. "src/devices/machine/atadev.cpp", - MAME_DIR .. "src/devices/machine/atadev.h", - MAME_DIR .. "src/devices/machine/atahle.cpp", - MAME_DIR .. "src/devices/machine/atahle.h", - MAME_DIR .. "src/devices/machine/ataintf.cpp", - MAME_DIR .. "src/devices/machine/ataintf.h", - MAME_DIR .. "src/devices/machine/atapicdr.cpp", - MAME_DIR .. "src/devices/machine/atapicdr.h", - MAME_DIR .. "src/devices/machine/atapihle.cpp", - MAME_DIR .. "src/devices/machine/atapihle.h", MAME_DIR .. "src/devices/machine/idectrl.cpp", MAME_DIR .. "src/devices/machine/idectrl.h", - MAME_DIR .. "src/devices/machine/idehd.cpp", - MAME_DIR .. "src/devices/machine/idehd.h", MAME_DIR .. "src/devices/machine/vt83c461.cpp", MAME_DIR .. "src/devices/machine/vt83c461.h", } @@ -2828,7 +2816,7 @@ end -- --------------------------------------------------- -if (BUSES["SCSI"]~=null) then +if (BUSES["ATA"]~=null) or (BUSES["SCSI"]~=null) then MACHINES["T10"] = true end @@ -4092,6 +4080,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/aic580.h,MACHINES["AIC580"] = true +--------------------------------------------------- + +if (MACHINES["AIC580"]~=null) then + files { + MAME_DIR .. "src/devices/machine/aic580.cpp", + MAME_DIR .. "src/devices/machine/aic580.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/aic6250.h,MACHINES["AIC6250"] = true --------------------------------------------------- |