diff options
author | 2024-02-29 01:52:28 +0100 | |
---|---|---|
committer | 2024-02-29 01:52:37 +0100 | |
commit | 19c5c5bff841e226ca672d5c4b6e79dc0a8b52ec (patch) | |
tree | 3f4d0e559a07d5624187f80c65083a094202f8cb /scripts/src/sound.lua | |
parent | 094d06e5d7792a29966eb3c9c426bc0997fc0384 (diff) |
added preliminary OKI MSM6588 ADPCM Recorder device
Diffstat (limited to 'scripts/src/sound.lua')
-rw-r--r-- | scripts/src/sound.lua | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index fe1b86137cd..522aff46042 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -692,11 +692,12 @@ end --@src/devices/sound/msm5232.h,SOUNDS["MSM5232"] = true --@src/devices/sound/okim6376.h,SOUNDS["OKIM6376"] = true --@src/devices/sound/okim6295.h,SOUNDS["OKIM6295"] = true +--@src/devices/sound/okim6588.h,SOUNDS["OKIM6588"] = true --@src/devices/sound/okim9810.h,SOUNDS["OKIM9810"] = true --@src/devices/sound/okiadpcm.h,SOUNDS["OKIADPCM"] = true --------------------------------------------------- -if (SOUNDS["OKIM6258"]~=null or SOUNDS["OKIM6295"]~=null or SOUNDS["OKIM9810"]~=null or SOUNDS["I5000_SND"]~=null or SOUNDS["OKIADPCM"]~=null) then +if (SOUNDS["OKIM6258"]~=null or SOUNDS["OKIM6295"]~=null or SOUNDS["OKIM6588"]~=null or SOUNDS["OKIM9810"]~=null or SOUNDS["I5000_SND"]~=null or SOUNDS["OKIADPCM"]~=null) then files { MAME_DIR .. "src/devices/sound/okiadpcm.cpp", MAME_DIR .. "src/devices/sound/okiadpcm.h", @@ -738,6 +739,13 @@ if (SOUNDS["OKIM6258"]~=null) then } end +if (SOUNDS["OKIM6588"]~=null) then + files { + MAME_DIR .. "src/devices/sound/okim6588.cpp", + MAME_DIR .. "src/devices/sound/okim6588.h", + } +end + if (SOUNDS["OKIM9810"]~=null) then files { MAME_DIR .. "src/devices/sound/okim9810.cpp", |