diff options
author | 2022-03-26 14:41:51 +0100 | |
---|---|---|
committer | 2022-03-27 00:41:51 +1100 | |
commit | 06e60e848fde3f2c0a08f664bddb3b98f0937336 (patch) | |
tree | 42a7410145700712b872241106c0ad7fa16a4a80 /scripts/src/machine.lua | |
parent | 524986a64867139bb6587a3110d323824319b442 (diff) |
Time Traveler (set 1) - promoted to working (#9468) [Ryan Holtz]
* machine/laserdsc.cpp: Added functionality to retrieve if a disc is CAV.
* machine/ldv4200hle.cpp: Added high-level Pioneer LD-V4200 player emulation.
Machines promoted to working
----------------------------
Time Traveler (set 1) [Ryan Holtz, Matt O, ld-decode Team]
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index f4f825e64b9..06d11c4d388 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1976,6 +1976,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/ldv4200hle.h,MACHINES["LDV4200HLE"] = true +--------------------------------------------------- + +if (MACHINES["LDV4200HLE"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ldv4200hle.cpp", + MAME_DIR .. "src/devices/machine/ldv4200hle.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ldp1000.h,MACHINES["LDP1000"] = true --------------------------------------------------- |