diff options
| author | 2020-12-06 14:51:57 +0100 | |
|---|---|---|
| committer | 2020-12-06 14:52:40 +0100 | |
| commit | be92cc6c652296e472919a9a298fdc4cfb6540e5 (patch) | |
| tree | 1a8a3491ae061b092c66a54876a40384059bab23 /scripts/src/machine.lua | |
| parent | 8287057888f7a755d0b1ac6f189d8273da7fdc8f (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.lua | 23 |
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 --------------------------------------------------- |
