diff options
author | 2019-06-16 23:45:57 +0200 | |
---|---|---|
committer | 2019-06-16 23:46:22 +0200 | |
commit | 68d9445979335ea14a659381cc4dae94322818a7 (patch) | |
tree | b49d0009021775525aea4778d9253ae2020db0eb /scripts/src/machine.lua | |
parent | 92b0401142f9da9dd68e24156864ae29bc76f986 (diff) |
-tdc1008: Initial untested implementation of the TRW TDC1008 Multiplier-Accumulator. [Ryan Holtz]
-dpb7000: Added TDC1008 devices for the Filter Card, albeit not hooked up yet, 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 e58809b2470..8ab1a7754ee 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2773,6 +2773,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/tdc1008.h,MACHINES["TDC1008"] = true +--------------------------------------------------- + +if (MACHINES["TDC1008"]~=null) then + files { + MAME_DIR .. "src/devices/machine/tdc1008.cpp", + MAME_DIR .. "src/devices/machine/tdc1008.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/te7750.h,MACHINES["TE7750"] = true --------------------------------------------------- |