From c2d90bc30fe2d02e85c66eadceced6b8e3005152 Mon Sep 17 00:00:00 2001 From: Sandro Ronco Date: Thu, 15 Jan 2015 20:54:09 +0100 Subject: [PATCH] (MESS) Added VTech Genius Junior Movie softlist. [TeamEurope] --- hash/gjmovie.xml | 15 +++++++++++++++ src/mess/drivers/prestige.c | 6 +++++- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 hash/gjmovie.xml diff --git a/hash/gjmovie.xml b/hash/gjmovie.xml new file mode 100644 index 00000000000..631c9cd44bc --- /dev/null +++ b/hash/gjmovie.xml @@ -0,0 +1,15 @@ + + + + + + Wort-und Zahlenspaß + 1993 + VTech + + + + + + + diff --git a/src/mess/drivers/prestige.c b/src/mess/drivers/prestige.c index 5869da3aede..64be3224490 100644 --- a/src/mess/drivers/prestige.c +++ b/src/mess/drivers/prestige.c @@ -779,6 +779,10 @@ static MACHINE_CONFIG_DERIVED( gl7007sl, prestige_base ) MCFG_SOFTWARE_LIST_COMPATIBLE_ADD("misterx_cart", "misterx") MACHINE_CONFIG_END +static MACHINE_CONFIG_DERIVED( gjmovie, prestige_base ) + MCFG_SOFTWARE_LIST_ADD("cart_list", "gjmovie") +MACHINE_CONFIG_END + /* ROM definition */ ROM_START( gl6000sl ) ROM_REGION(0x100000, "maincpu", 0) @@ -865,7 +869,7 @@ COMP( 1999, gwnf, 0, 0, prestige, prestige, driver_device, 0, // these systems need to be moved into a separate driver COMP( 1996, gj4000, 0, 0, prestige, prestige, driver_device, 0, "VTech", "Genius Junior 4000 (Germany)", GAME_IS_SKELETON) -COMP( 1993, gjmovie, 0, 0, prestige, prestige, driver_device, 0, "VTech", "Genius Junior Movie (Germany)", GAME_IS_SKELETON) +COMP( 1993, gjmovie, 0, 0, gjmovie, prestige, driver_device, 0, "VTech", "Genius Junior Movie (Germany)", GAME_IS_SKELETON) COMP( 1996, gjrstar, 0, 0, prestige, prestige, driver_device, 0, "VTech", "Genius Junior Redstar(Germany)", GAME_IS_SKELETON) COMP( 1996, gjrstar2, gjrstar, 0, prestige, prestige, driver_device, 0, "VTech", "Genius Junior Redstar 2 (Germany)", GAME_IS_SKELETON) COMP( 1998, gjrstar3, 0, 0, prestige, prestige, driver_device, 0, "VTech", "Genius Junior Redstar 3 (Germany)", GAME_IS_SKELETON)