diff options
author | 2019-02-27 16:23:31 +0900 | |
---|---|---|
committer | 2019-02-27 16:23:31 +0900 | |
commit | 0fb660d642d81116e9702cbfc5223c71472d8fc1 (patch) | |
tree | e2f7d4fc7d4a6192aca407e9d3a4ab0b38b19e21 /scripts/src/machine.lua | |
parent | efec7bd39b92117ea276a01a1db2eb882778a531 (diff) | |
parent | 5309bae38b65195426ff0b988e0204c1efef114e (diff) |
Merge branch 'master' into cps3_code
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 51 |
1 files changed, 37 insertions, 14 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 14a2050c3a5..edf745c67d3 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2914,38 +2914,37 @@ end --------------------------------------------------- -- ---@src/devices/machine/wd11c00_17.h,MACHINES["WD11C00_17"] = true +--@src/devices/machine/wd1010.h,MACHINES["WD1010"] = true --------------------------------------------------- -if (MACHINES["WD11C00_17"]~=null) then +if (MACHINES["WD1010"]~=null) then files { - MAME_DIR .. "src/devices/machine/wd11c00_17.cpp", - MAME_DIR .. "src/devices/machine/wd11c00_17.h", + MAME_DIR .. "src/devices/machine/wd1010.cpp", + MAME_DIR .. "src/devices/machine/wd1010.h", } end --------------------------------------------------- -- ---@src/devices/machine/wd2010.h,MACHINES["WD2010"] = true +--@src/devices/machine/wd11c00_17.h,MACHINES["WD11C00_17"] = true --------------------------------------------------- -if (MACHINES["WD2010"]~=null) then +if (MACHINES["WD11C00_17"]~=null) then files { - MAME_DIR .. "src/devices/machine/wd2010.cpp", - MAME_DIR .. "src/devices/machine/wd2010.h", + MAME_DIR .. "src/devices/machine/wd11c00_17.cpp", + MAME_DIR .. "src/devices/machine/wd11c00_17.h", } end --------------------------------------------------- -- ---@src/devices/machine/wd33c93.h,MACHINES["WD33C93"] = true +--@src/devices/machine/wd2010.h,MACHINES["WD2010"] = true --------------------------------------------------- -if (MACHINES["WD33C93"]~=null) then - MACHINES["SCSI"] = true +if (MACHINES["WD2010"]~=null) then files { - MAME_DIR .. "src/devices/machine/wd33c93.cpp", - MAME_DIR .. "src/devices/machine/wd33c93.h", + MAME_DIR .. "src/devices/machine/wd2010.cpp", + MAME_DIR .. "src/devices/machine/wd2010.h", } end @@ -3869,4 +3868,28 @@ if (MACHINES["DC7085"]~=null) then MAME_DIR .. "src/devices/machine/dc7085.cpp", MAME_DIR .. "src/devices/machine/dc7085.h", } -end
\ No newline at end of file +end + +--------------------------------------------------- +-- +--@src/devices/machine/i82357.h,MACHINES["I82357"] = true +--------------------------------------------------- + +if (MACHINES["I82357"]~=null) then + files { + MAME_DIR .. "src/devices/machine/i82357.cpp", + MAME_DIR .. "src/devices/machine/i82357.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/xc1700e.h,MACHINES["XC1700E"] = true +--------------------------------------------------- + +if (MACHINES["XC1700E"]~=null) then + files { + MAME_DIR .. "src/devices/machine/xc1700e.cpp", + MAME_DIR .. "src/devices/machine/xc1700e.h", + } +end |