diff options
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 |