diff options
| author | 2020-12-31 19:18:24 +0100 | |
|---|---|---|
| committer | 2020-12-31 19:18:54 +0100 | |
| commit | 139f044859484fa7c0f2e319bbb65e06e534aba6 (patch) | |
| tree | d3e3d54481c79cc8b180630c5aa15f58ffcd5728 /scripts | |
| parent | eb602d3871f717eb1974348dd8a00b80cba3092c (diff) | |
-arm7: Added optional logging for Windows CE calls. [Ryan Holtz]
-uda1344: Added skeleton audio device for Philips UDA13444 Codec. [Ryan Holtz]
-sa1111: Hooked up basic L3 audio transceiver support. [Ryan Holtz]
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/sound.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/sound.lua b/scripts/src/sound.lua index 4d5f53de389..9844605eeae 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1606,3 +1606,15 @@ if (SOUNDS["TT5665"]~=null) then MAME_DIR .. "src/devices/sound/tt5665.h", } end + +--------------------------------------------------- +-- +--@src/devices/sound/uda1344.h,SOUNDS["UDA1344"] = true +--------------------------------------------------- + +if (SOUNDS["UDA1344"]~=null) then + files { + MAME_DIR .. "src/devices/sound/uda1344.cpp", + MAME_DIR .. "src/devices/sound/uda1344.h", + } +end diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 7d6b768d072..7d78cb972fe 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -290,6 +290,7 @@ SOUNDS["S_DSP"] = true SOUNDS["KS0164"] = true SOUNDS["TT5665"] = true --SOUNDS["RP2C33_SOUND"] = true +--SOUNDS["UDA1344"] = true -------------------------------------------------- -- specify available video cores diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 8081e7f9c97..9c965137bec 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -314,6 +314,7 @@ SOUNDS["S_DSP"] = true SOUNDS["ROLANDPCM"] = true --SOUNDS["TT5665"] = true SOUNDS["RP2C33_SOUND"] = true +SOUNDS["UDA1344"] = true -------------------------------------------------- -- specify available video cores |
