summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/machine.lua
diff options
context:
space:
mode:
author MooglyGuy <MooglyGuy@users.noreply.github.com>2024-01-07 17:47:49 +0100
committer GitHub <noreply@github.com>2024-01-08 03:47:49 +1100
commitba60c481b596a5bcdb9e1f4c2d3e0a29e5787840 (patch)
tree1c897ef9499c31a388929d8362fad3e2a0c464c8 /scripts/src/machine.lua
parent46dbcf7f79ce4e48e7c86500965638440ca96725 (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/machine.lua')
-rw-r--r--scripts/src/machine.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 049cae04d36..f17010c82f0 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -2050,6 +2050,18 @@ end
---------------------------------------------------
--
+--@src/devices/machine/ldv1000hle.h,MACHINES["LDV1000HLE"] = true
+---------------------------------------------------
+
+if (MACHINES["LDV1000HLE"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/ldv1000hle.cpp",
+ MAME_DIR .. "src/devices/machine/ldv1000hle.h",
+ }
+end
+
+---------------------------------------------------
+--
--@src/devices/machine/ldv4200hle.h,MACHINES["LDV4200HLE"] = true
---------------------------------------------------