misc/rawthrillspc.cpp: Dumped and recovery DVD for a new Raw Thrills PC-based arcade game. (#10882)

No hard disk dump, only recovery DVD is present as a placeholder for now.

New systems marked not working
---------------------------------
Doodle Jump Arcade (v1.16) [jordigahan, Museo del Recreativo]
This commit is contained in:
ClawGrip 2023-02-14 20:03:13 +01:00 committed by GitHub
parent 22529eb883
commit c50c99890d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 1 deletions

View File

@ -30939,6 +30939,7 @@ quizpun2 // (c) 1989 Space Computer System of Korea
radikaldrt // (c) 2011? Gaelco Darts
@source:misc/rawthrillspc.cpp
doodlejmp // (c) 2013 ICE / Raw Thrills / Lima Sky
fnf // (c) 2004 Raw Thrills
guitarheroac // (c) 2008 Raw Thrills / Activision / Konami

View File

@ -94,7 +94,7 @@ ROM_END
Two I/O boards on "The Fast and The Furious":
1. With Xilinx XC95144XL (labeled "FAST & FURIOUS U4 REV 1.0 (c)2004 RightHand Tech, Inc"),
ST72F63BK4M1 (labeled "U6 FAST&FURIOUS Release 3 3311h (c)2004 RightHand Tech, Inc") and a bank of 8 dipswitches.
2- With Xilinx XC9536XL (labeled "r1.0 (c)2004 RightHand Tech, Inc")
2. With Xilinx XC9536XL (labeled "r1.0 (c)2004 RightHand Tech, Inc")
Parallel port HASP4 1.5 dongle (MCU Marvin2)
*/
ROM_START( fnf )
@ -117,7 +117,34 @@ ROM_START( fnf )
DISK_IMAGE_READONLY( "faf3.06d2", 0, SHA1(183664482f6665adffc74d69e28338da740443c5) )
ROM_END
/*
Doodle Jump Arcade, by default, uses a different PC than other Raw Thrills games:
-HP with an Asus M2N68-LA motherboard (socket AM3).
-CPU Athlon II CPU (ADX2400CK23GQ).
-2GB RAM (single SIMM, PC3-12800) [HP P/N 655409-150].
-nVidia Club3D CGNX-G942LI.
The game runs over Linux CentOS.
I/O board with ICE P/N X2034X.
HASP USB security dongle.
*/
ROM_START( doodlejmp )
ROM_REGION32_LE( 0x100000, "bios", 0 )
ROM_SYSTEM_BIOS( 0, "1001", "ASUS 1001 (11/17/2010)" )
ROMX_LOAD( "m2n68-asus-1001.rom", 0x000000, 0x100000, CRC(6f4ff699) SHA1(d43baae25fcfb442ccf2cc716e6051b3795296cd), ROM_BIOS(0) )
DISK_REGION( "ide:0:hdd:image" )
DISK_IMAGE( "doodlejmp", 0, NO_DUMP )
/* Recovery DVD:
-Doodle Jump 1.16
-OS 00.07
-8-Feb-2013 */
DISK_REGION( "recovery116" )
DISK_IMAGE_READONLY( "doodlejump_recover_dvd_1_16", 0, SHA1(67f2bc3d9d71fc924f8f784e62eaf3dd39c88f45) )
ROM_END
} // Anonymous namespace
GAME(2013, doodlejmp, 0, rawthrillspc, rawthrillspc, rawthrillspc_state, empty_init, ROT0, "ICE / Raw Thrills (Lima Sky licensed)", "Doodle Jump Arcade (v1.16)", MACHINE_IS_SKELETON)
GAME(2004, fnf, 0, rawthrillspc, rawthrillspc, rawthrillspc_state, empty_init, ROT0, "Raw Thrills", "The Fast And The Furious (v3.06)", MACHINE_IS_SKELETON)
GAME(2008, guitarheroac, 0, rawthrillspc, rawthrillspc, rawthrillspc_state, empty_init, ROT0, "Raw Thrills (Activision / Konami licensed)", "Guitar Hero Arcade (v1.0.5)", MACHINE_IS_SKELETON)