diff options
author | 2016-10-28 02:36:58 +0200 | |
---|---|---|
committer | 2016-10-28 02:37:23 +0200 | |
commit | c35c2a9cdc411ec902d898f5d63bc4baeb512253 (patch) | |
tree | 2f4103fdfcfa356fb82b3b2f7284a3a49b038cd9 /scripts/src/machine.lua | |
parent | 93735cdf7e3dbdf75bcd0c29994fd99ff119f6a4 (diff) |
New devices added
-----------------
54/7416x Hex/Quad D Flip-Flops with Clear [Ryan Holtz]
9334/DM9334 8-Bit Addressable Latch [Ryan Holtz]
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 4ff994b3d04..81b5ab23907 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -345,6 +345,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/74175.h,MACHINES["TTL74175"] = true +--------------------------------------------------- + +if (MACHINES["TTL74175"]~=null) then + files { + MAME_DIR .. "src/devices/machine/74175.cpp", + MAME_DIR .. "src/devices/machine/74175.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/74181.h,MACHINES["TTL74181"] = true --------------------------------------------------- @@ -659,6 +671,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/dm9334.h,MACHINES["DM9334"] = true +--------------------------------------------------- + +if (MACHINES["DM9334"]~=null) then + files { + MAME_DIR .. "src/devices/machine/dm9334.cpp", + MAME_DIR .. "src/devices/machine/dm9334.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ds1204.h,MACHINES["DS1204"] = true --------------------------------------------------- |