diff options
author | 2019-06-17 02:12:45 +0200 | |
---|---|---|
committer | 2019-06-17 02:13:09 +0200 | |
commit | ccc03cab083c27777f615e60906c8dc3f0714610 (patch) | |
tree | c3365f7f5fe71a3f907a64f60bceaf1d738c82c8 /scripts/src/machine.lua | |
parent | 872d6aa866bdcd01130988c14c895d78dc5aa0e6 (diff) |
-tdc1008: Fixed latching of RND, TC, ACC, and SUB signals. [Ryan Holtz]
-tmc208k: Added device for TRW TMC208K/TMC28KU 8x8-bit Parallel Multiplier. [Ryan Holtz]
-dpb7000: Added placeholder devices for TMC multipliers on the Combiner Card, nw
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 8ab1a7754ee..089d4b80154 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2833,6 +2833,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/tmc208k.h,MACHINES["TMC208K"] = true +--------------------------------------------------- + +if (MACHINES["TMC208K"]~=null) then + files { + MAME_DIR .. "src/devices/machine/tmc208k.cpp", + MAME_DIR .. "src/devices/machine/tmc208k.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/tmp68301.h,MACHINES["TMP68301"] = true --------------------------------------------------- |