diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/machine.lua | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 81b5ab23907..63bec113de8 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -284,6 +284,30 @@ end --------------------------------------------------- -- +--@src/devices/machine/7400.h,MACHINES["TTL7400"] = true +--------------------------------------------------- + +if (MACHINES["TTL7400"]~=null) then + files { + MAME_DIR .. "src/devices/machine/7400.cpp", + MAME_DIR .. "src/devices/machine/7400.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/7404.h,MACHINES["TTL7404"] = true +--------------------------------------------------- + +if (MACHINES["TTL7404"]~=null) then + files { + MAME_DIR .. "src/devices/machine/7404.cpp", + MAME_DIR .. "src/devices/machine/7404.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/74123.h,MACHINES["TTL74123"] = true --------------------------------------------------- @@ -381,6 +405,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/82s129.h,MACHINES["PROM82S129"] = true +--------------------------------------------------- + +if (MACHINES["PROM82S129"]~=null) then + files { + MAME_DIR .. "src/devices/machine/82s129.cpp", + MAME_DIR .. "src/devices/machine/82s129.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/8042kbdc.h,MACHINES["KBDC8042"] = true --------------------------------------------------- |