diff options
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index f53859c6e8b..4e7352c3e41 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1445,6 +1445,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/icm7170.h,MACHINES["ICM7170"] = true +--------------------------------------------------- + +if (MACHINES["ICM7170"]~=null) then + files { + MAME_DIR .. "src/devices/machine/icm7170.cpp", + MAME_DIR .. "src/devices/machine/icm7170.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/idectrl.h,MACHINES["IDECTRL"] = true --@src/devices/machine/vt83c461.h,MACHINES["IDECTRL"] = true --------------------------------------------------- @@ -3096,6 +3108,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/upd7001.h,MACHINES["UPD7001"] = true +--------------------------------------------------- + +if (MACHINES["UPD7001"]~=null) then + files { + MAME_DIR .. "src/devices/machine/upd7001.cpp", + MAME_DIR .. "src/devices/machine/upd7001.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/upd7002.h,MACHINES["UPD7002"] = true --------------------------------------------------- @@ -4244,3 +4268,27 @@ if (MACHINES["I3002"]~=null) then MAME_DIR .. "src/devices/machine/i3002.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/s_smp.h,MACHINES["S_SMP"] = true +--------------------------------------------------- + +if (MACHINES["S_SMP"]~=null) then + files { + MAME_DIR .. "src/devices/machine/s_smp.cpp", + MAME_DIR .. "src/devices/machine/s_smp.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/cxd1185.h,MACHINES["CXD1185"] = true +--------------------------------------------------- + +if (MACHINES["CXD1185"]~=null) then + files { + MAME_DIR .. "src/devices/machine/cxd1185.cpp", + MAME_DIR .. "src/devices/machine/cxd1185.h", + } +end |