From c6db220e0e62cd7b050b1f1dbe72b2431a4b456f Mon Sep 17 00:00:00 2001 From: David Haywood <28625134+DavidHaywood@users.noreply.github.com> Date: Mon, 8 Feb 2021 08:44:41 +0000 Subject: new WORKING machines (#7755) ----------- Go Diego Go! - Aztec ABC Adventure (Sharp Cookie) (PAL, UK) [Sean Riddle, David Haywood] Dora the Explorer - Dora Saves the Mermaids (Sharp Cookie) (PAL, UK) [Sean Riddle, David Haywood] --- src/mame/drivers/spg2xx_jakks_sharp.cpp | 21 +++++++++++++++++++-- src/mame/mame.lst | 2 ++ 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/spg2xx_jakks_sharp.cpp b/src/mame/drivers/spg2xx_jakks_sharp.cpp index 86581d3129a..3159c9660fd 100644 --- a/src/mame/drivers/spg2xx_jakks_sharp.cpp +++ b/src/mame/drivers/spg2xx_jakks_sharp.cpp @@ -75,11 +75,28 @@ ROM_START( jsc_spid ) ROM_LOAD16_WORD_SWAP( "sharpcookiespiderman.bin", 0x000000, 0x200000, CRC(84cf58bf) SHA1(ac0be079c2469c9c0dea3decd7a7318806cc7ac0) ) ROM_END +ROM_START( jsc_gdg ) + ROM_REGION( 0x800000, "maincpu", ROMREGION_ERASE00 ) + ROM_LOAD16_WORD_SWAP( "shckdiego.bin", 0x000000, 0x200000, CRC(8069147a) SHA1(3f90dd3deff89d7d66b4f14b6246c2bf63c44586) ) +ROM_END + +ROM_START( jsc_dora ) + ROM_REGION( 0x800000, "maincpu", ROMREGION_ERASE00 ) + ROM_LOAD16_WORD_SWAP( "shckdora.bin", 0x000000, 0x200000, CRC(4a973046) SHA1(13b38b5db23169731ebf1a4657d95e34fc88b9b8) ) +ROM_END + + + // has UK specific voice actors, US versions on YouTube have different voices not present in this set CONS( 2007, jsc_thom, 0, 0, base_config_pal, jak_sharp, jakks_sharp_state, empty_init, "JAKKS Pacific Inc / Child Guidance / Pronto Games", "Thomas & Friends - Learning Circus Express (Sharp Cookie) (PAL, UK)", MACHINE_IMPERFECT_SOUND | MACHINE_IMPERFECT_GRAPHICS ) CONS( 2007, jsc_spid, 0, 0, base_config, jak_sharp, jakks_sharp_state, empty_init, "JAKKS Pacific Inc / Child Guidance / Pronto Games", "The Amazing Spider-Man - Great Math Caper (Sharp Cookie) (NTSC, US)", MACHINE_IMPERFECT_SOUND | MACHINE_IMPERFECT_GRAPHICS ) +// from a UK unit but still says 'Zee' instead of 'Zed' for 'Z' This does not appear to be controlled by a PAL/NTSC flag in the inputs. +CONS( 2007, jsc_gdg, 0, 0, base_config_pal, jak_sharp, jakks_sharp_state, empty_init, "JAKKS Pacific Inc / Child Guidance / Pronto Games", "Go Diego Go! - Aztec ABC Adventure (Sharp Cookie) (PAL, UK)", MACHINE_IMPERFECT_SOUND | MACHINE_IMPERFECT_GRAPHICS ) + +CONS( 2007, jsc_dora 0, 0, base_config_pal, jak_sharp, jakks_sharp_state, empty_init, "JAKKS Pacific Inc / Child Guidance / Handheld Games", "Dora the Explorer - Dora Saves the Mermaids (Sharp Cookie) (PAL, UK)", MACHINE_IMPERFECT_SOUND | MACHINE_IMPERFECT_GRAPHICS ) + // Scooby-Doo! - The Pirate's Puzzles -// Go Diego Go - Aztec ABC Adventure -// Dora the Explorer - Dora Saves the Mermaids +// +// diff --git a/src/mame/mame.lst b/src/mame/mame.lst index 2a14e87ef2f..1f7baa55371 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -38531,6 +38531,8 @@ jak_nick // jak_sbfc // @source:spg2xx_jakks_sharp.cpp +jsc_dora +jsc_gdg jsc_spid jsc_thom -- cgit v1.2.3