diff options
author | 2020-10-16 03:18:21 +0900 | |
---|---|---|
committer | 2020-10-15 14:18:21 -0400 | |
commit | 24d5367e8f65feb24bc763dbf0679854d773e03e (patch) | |
tree | b9b9d2bc01f760d120e718e06458a98be3949d82 /scripts/src | |
parent | 6ef3f9dc5b1a6752184c64c86a2951807a4c4669 (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/src')
-rw-r--r-- | scripts/src/sound.lua | 12 |
1 files changed, 12 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 |