diff options
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index a4751370c7d..ac96f03e4cc 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4535,3 +4535,47 @@ if (MACHINES["SWIM3"]~=null) then MAME_DIR .. "src/devices/machine/swim3.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/alpha_8921.h,MACHINES["ALPHA_8921"] = true +--------------------------------------------------- +if (MACHINES["ALPHA_8921"]~=null) then + files { + MAME_DIR .. "src/devices/machine/alpha_8921.cpp", + MAME_DIR .. "src/devices/machine/alpha_8921.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/bl_handhelds_menucontrol.h,MACHINES["BL_HANDHELDS_MENUCONTROL"] = true +--------------------------------------------------- +if (MACHINES["BL_HANDHELDS_MENUCONTROL"]~=null) then + files { + MAME_DIR .. "src/devices/machine/bl_handhelds_menucontrol.cpp", + MAME_DIR .. "src/devices/machine/bl_handhelds_menucontrol.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/ns32081.h,MACHINES["NS32081"] = true +--------------------------------------------------- +if (MACHINES["NS32081"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ns32081.cpp", + MAME_DIR .. "src/devices/machine/ns32081.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/ns32202.h,MACHINES["NS32202"] = true +--------------------------------------------------- +if (MACHINES["NS32202"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ns32202.cpp", + MAME_DIR .. "src/devices/machine/ns32202.h", + } +end |