diff options
author | 2024-01-07 17:47:49 +0100 | |
---|---|---|
committer | 2024-01-08 03:47:49 +1100 | |
commit | ba60c481b596a5bcdb9e1f4c2d3e0a29e5787840 (patch) | |
tree | 1c897ef9499c31a388929d8362fad3e2a0c464c8 /scripts/src/sound.lua | |
parent | 46dbcf7f79ce4e48e7c86500965638440ca96725 (diff) |
Added LD-V1000 HLE device, placeholder SSI-263A HLE device, and promoted Thayer's Quest. (#11915) [Ryan Holtz]
-cinematronics/thayers.cpp: Added CHD and promoted to working. [Ryan Holtz]
* Fixed periodic IRQ hookup.
* Fixed COP421 clock divisor.
* Switched to LD-V1000 by default and removed LD-PR7820 support for now.
* Switched to using logmacro and shorthand data types.
* Adjusted IRQ triggering and acknowledgement according to schematics.
-sound/ssi263hle.cpp: Added a temporary SSI-263 device which remaps SC-02 phonemes onto the SC-01's phoneme set. [Ryan Holtz]
* SSI-263 skeleton extracted from cinematronics/thayers.cpp.
-machine/ldv1000hle.cpp: Added an HLE version of the Pioneer LD-V1000 laserdisc player. [Ryan Holtz]
-machine/laserdsc.h: Added a general-purpose parallel LaserDisc player interface, to have a common class parent for LD-PR7820. [Ryan Holtz]
-sega/timetrv.cpp: Replaced timetrv2 LaserDisc image with a good capture. [Ryan Holtz, Matt Ownby, ld-decode Team]
Systems promoted to working
---------------------------
Thayer's Quest (set 1) [Ryan Holtz, Matt Ownby, ld-decode Team]
Clones promoted to working
--------------------------
Thayer's Quest (set 2) [Ryan Holtz, Matt Ownby, ld-decode Team]
Diffstat (limited to 'scripts/src/sound.lua')
-rw-r--r-- | scripts/src/sound.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index 67aa52cfd68..ed9652835b2 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1011,6 +1011,20 @@ end --------------------------------------------------- +-- Silicon Systems SSI-263A HLE +--@src/devices/sound/ssi263hle.h,SOUNDS["SSI263HLE"] = true +--------------------------------------------------- + +if (SOUNDS["SSI263HLE"]~=null) then + files { + MAME_DIR .. "src/devices/sound/ssi263hle.cpp", + MAME_DIR .. "src/devices/sound/ssi263hle.h", + } +end + + + +--------------------------------------------------- -- Texas Instruments TMS36xx doorbell chime --@src/devices/sound/tms36xx.h,SOUNDS["TMS36XX"] = true --------------------------------------------------- |