From c8c09a8c88ca41e8478ac22a0269fcdad43b5cc9 Mon Sep 17 00:00:00 2001 From: James Wallace Date: Wed, 26 Jun 2024 01:12:12 +0100 Subject: cops.cpp: Promote Revelations to working (#12485) * LDP1450: Added HLE of player and hookups to some games that use it * LDP1450: Tweaked timings * LDP1450 - added some more comms, and text overlay logging * cops.cpp: Fixed loose input that stopped Nova games from booting * cops.cpp: Add Revelations support * LDP1450: Added multibyte command support * Revelations: Add SHA1 for disc image (needs redump) --- scripts/src/machine.lua | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'scripts/src/machine.lua') diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index ace32673389..7814da83e12 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2082,6 +2082,18 @@ if (MACHINES["LDP1450"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/machine/ldp1450hle.h,MACHINES["LDP1450HLE"] = true +--------------------------------------------------- + +if (MACHINES["LDP1450HLE"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ldp1450hle.cpp", + MAME_DIR .. "src/devices/machine/ldp1450hle.h", + } +end + --------------------------------------------------- -- --@src/devices/machine/ldvp931.h,MACHINES["LDVP931"] = true @@ -3035,6 +3047,18 @@ if (MACHINES["R10788"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/machine/r65c52.h,MACHINES["R65C52"] = true +--------------------------------------------------- + +if (MACHINES["R65C52"]~=null) then + files { + MAME_DIR .. "src/devices/machine/r65c52.cpp", + MAME_DIR .. "src/devices/machine/r65c52.h", + } +end + --------------------------------------------------- -- --@src/devices/machine/ra17xx.h,MACHINES["RA17XX"] = true -- cgit v1.2.3