summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2020-10-16 03:18:21 +0900
committer GitHub <noreply@github.com>2020-10-15 14:18:21 -0400
commit24d5367e8f65feb24bc763dbf0679854d773e03e (patch)
treeb9b9d2bc01f760d120e718e06458a98be3949d82 /scripts
parent6ef3f9dc5b1a6752184c64c86a2951807a4c4669 (diff)
Implement TT5665 emulation (#6841)
* Implement TT5665 emulation Similar as OKIM6295, but with Support more ROM capacity and phrase spaces, 2 sound outputs used in bowltry, igs_m036 (for some hardwares with TT5665, ex: cjddzsp) bowltry.cpp: Fix game name (BOWLING TRY! in both poster and PCB) * bowltry.cpp: Typo * Fix endline * tt5665.cpp: Reduce unnecessary argument
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/sound.lua12
-rw-r--r--scripts/target/mame/arcade.lua1
-rw-r--r--scripts/target/mame/mess.lua1
3 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua
index bcbc9749c4b..c28d9bf0d71 100644
--- a/scripts/src/sound.lua
+++ b/scripts/src/sound.lua
@@ -1605,3 +1605,15 @@ if (SOUNDS["RP2C33_SOUND"]~=null) then
MAME_DIR .. "src/devices/sound/rp2c33_snd.h",
}
end
+
+---------------------------------------------------
+--
+--@src/devices/sound/tt5665.h,SOUNDS["TT5665"] = true
+---------------------------------------------------
+
+if (SOUNDS["TT5665"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/tt5665.cpp",
+ MAME_DIR .. "src/devices/sound/tt5665.h",
+ }
+end
diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua
index 80466061f4a..9c1fca398cd 100644
--- a/scripts/target/mame/arcade.lua
+++ b/scripts/target/mame/arcade.lua
@@ -284,6 +284,7 @@ SOUNDS["LC7535"] = true
--SOUNDS["UPD934G"] = true
SOUNDS["S_DSP"] = true
SOUNDS["KS0164"] = true
+SOUNDS["TT5665"] = true
--SOUNDS["RP2C33_SOUND"] = true
--------------------------------------------------
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua
index 1401795fd94..2951a968659 100644
--- a/scripts/target/mame/mess.lua
+++ b/scripts/target/mame/mess.lua
@@ -308,6 +308,7 @@ SOUNDS["SWP20"] = true
SOUNDS["SWP30"] = true
SOUNDS["S_DSP"] = true
SOUNDS["ROLANDPCM"] = true
+--SOUNDS["TT5665"] = true
SOUNDS["RP2C33_SOUND"] = true
--------------------------------------------------