diff options
| author | 2015-01-15 20:54:09 +0100 | |
|---|---|---|
| committer | 2015-01-15 20:54:47 +0100 | |
| commit | c2d90bc30fe2d02e85c66eadceced6b8e3005152 (patch) | |
| tree | 335430102d5f575d0ae1fd19a414804637604038 | |
| parent | 4f66319703eeed62539aeec2012f9811d5b7ad28 (diff) | |
(MESS) Added VTech Genius Junior Movie softlist. [TeamEurope]
| -rw-r--r-- | hash/gjmovie.xml | 15 | ||||
| -rw-r--r-- | src/mess/drivers/prestige.c | 6 |
2 files changed, 20 insertions, 1 deletions
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 @@ +<?xml version="1.0"?> +<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd"> +<softwarelist name="gjmovie" description="VTech Genius Junior Movie cartridges"> + + <software name="wuz" supported="no"> + <description>Wort-und Zahlenspaß</description> + <year>1993</year> + <publisher>VTech</publisher> + <part name="rom" interface="genius_cart"> + <dataarea name="rom" size="0x40000"> + <rom name="27-5364-00.u6" size="0x40000" crc="203f0461" sha1="dfc8bb341f703c5f018a7222c24d4a2195316387" offset="0" /> + </dataarea> + </part> + </software> +</softwarelist> 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) |
