summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/machine.lua
diff options
context:
space:
mode:
author Ryan Holtz <ryan.holtz@arrowheadgs.com>2020-12-06 14:51:57 +0100
committer Ryan Holtz <ryan.holtz@arrowheadgs.com>2020-12-06 14:52:40 +0100
commitbe92cc6c652296e472919a9a298fdc4cfb6540e5 (patch)
tree1a8a3491ae061b092c66a54876a40384059bab23 /scripts/src/machine.lua
parent8287057888f7a755d0b1ac6f189d8273da7fdc8f (diff)
-scoop: Added skeleton device for Sharp "Scoop" peripheral IC from the Zaurus PDA line. [Ryan Holtz]
-ucb1200: Added skeleton device for Philips UCB1200 audio/telecom codec. [Ryan Holtz] -sa1110: Added rudimentary framework for the MCP codec interface module. [Ryan Holtz]
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r--scripts/src/machine.lua23
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index b2ebdd9f5bb..012119a8a7e 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -2899,6 +2899,17 @@ end
---------------------------------------------------
--
+--@src/devices/machine/scoop.h,MACHINES["SCOOP"] = true
+---------------------------------------------------
+if (MACHINES["SCOOP"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/scoop.cpp",
+ MAME_DIR .. "src/devices/machine/scoop.h",
+ }
+end
+
+---------------------------------------------------
+--
--@src/devices/machine/scnxx562.h,MACHINES["DUSCC"] = true
---------------------------------------------------
@@ -3271,6 +3282,18 @@ end
---------------------------------------------------
--
+--@src/devices/machine/ucb1200.h,MACHINES["UCB1200"] = true
+---------------------------------------------------
+
+if (MACHINES["UCB1200"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/ucb1200.cpp",
+ MAME_DIR .. "src/devices/machine/ucb1200.h",
+ }
+end
+
+---------------------------------------------------
+--
--@src/devices/machine/upd1990a.h,MACHINES["UPD1990A"] = true
---------------------------------------------------