diff options
| author | 2019-06-16 23:45:57 +0200 | |
|---|---|---|
| committer | 2019-06-16 23:46:22 +0200 | |
| commit | 68d9445979335ea14a659381cc4dae94322818a7 (patch) | |
| tree | b49d0009021775525aea4778d9253ae2020db0eb /scripts | |
| 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')
| -rw-r--r-- | scripts/src/machine.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/arcade.lua | 1 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
3 files changed, 14 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 --------------------------------------------------- diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 9a548a9b19f..5e93acfdd28 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -594,6 +594,7 @@ MACHINES["SMPC"] = true MACHINES["STVCD"] = true --MACHINES["SUN4C_MMU"] = true MACHINES["TC0091LVC"] = true +--MACHINES["TDC1008"] = true MACHINES["TE7750"] = true MACHINES["TICKET"] = true MACHINES["TIMEKPR"] = true diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 5771e5c5070..1b85619611b 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -604,6 +604,7 @@ MACHINES["SPG2XX"] = true MACHINES["STVCD"] = true MACHINES["SUN4C_MMU"] = true MACHINES["TC0091LVC"] = true +MACHINES["TDC1008"] = true --MACHINES["TE7750"] = true MACHINES["TIMEKPR"] = true MACHINES["TMC0430"] = true |
