diff options
author | 2018-10-19 00:35:32 +0200 | |
---|---|---|
committer | 2018-10-19 00:35:32 +0200 | |
commit | efe1757a858f03fff73e110626e85af8d2ed7d03 (patch) | |
tree | 5433f1344a7120f3d90f9480e79c65ca850b7564 /scripts/src/machine.lua | |
parent | cdb4ae2fab56a624bf8e2ea59f19a57f11ff1109 (diff) | |
parent | f1b3e649fb0a50a6a01da667278b8a62fef99d92 (diff) |
Merge branch 'master' of https://github.com/mamedev/mame
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 7c1cc8e66ca..ce7c2813b8f 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1647,6 +1647,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/mb87030.h,MACHINES["MB87030"] = true +--------------------------------------------------- + +if (MACHINES["MB87030"]~=null) then + files { + MAME_DIR .. "src/devices/machine/mb87030.cpp", + MAME_DIR .. "src/devices/machine/mb87030.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/mb87078.h,MACHINES["MB87078"] = true --------------------------------------------------- @@ -2603,6 +2615,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/spg2xx.h,MACHINES["SPG2XX"] = true +--------------------------------------------------- + +if (MACHINES["SPG2XX"]~=null) then + files { + MAME_DIR .. "src/devices/machine/spg2xx.cpp", + MAME_DIR .. "src/devices/machine/spg2xx.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/stvcd.h,MACHINES["STVCD"] = true --------------------------------------------------- @@ -2937,6 +2961,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/x2201.h,MACHINES["X2201"] = true +--------------------------------------------------- + +if (MACHINES["X2201"]~=null) then + files { + MAME_DIR .. "src/devices/machine/x2201.cpp", + MAME_DIR .. "src/devices/machine/x2201.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/x2212.h,MACHINES["X2212"] = true --------------------------------------------------- @@ -3180,6 +3216,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/dp83932c.h,MACHINES["DP83932C"] = true +--------------------------------------------------- + +if (MACHINES["DP83932C"]~=null) then + files { + MAME_DIR .. "src/devices/machine/dp83932c.cpp", + MAME_DIR .. "src/devices/machine/dp83932c.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/pc_lpt.h,MACHINES["PC_LPT"] = true --------------------------------------------------- @@ -3735,3 +3783,27 @@ if (MACHINES["IOPTIMER"]~=null) then MAME_DIR .. "src/devices/machine/ioptimer.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/sun4c_mmu.h,MACHINES["SUN4C_MMU"] = true +--------------------------------------------------- + +if (MACHINES["SUN4C_MMU"]~=null) then + files { + MAME_DIR .. "src/devices/machine/sun4c_mmu.cpp", + MAME_DIR .. "src/devices/machine/sun4c_mmu.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/z8038.h,MACHINES["Z8038"] = true +--------------------------------------------------- + +if (MACHINES["Z8038"]~=null) then + files { + MAME_DIR .. "src/devices/machine/z8038.cpp", + MAME_DIR .. "src/devices/machine/z8038.h", + } +end |