summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/prestige.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-07-02 13:44:38 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-07-02 13:45:57 -0400
commit0b8733206a1f6d3c931171c18f2200b2eb5a2b87 (patch)
tree2562856c430f5e9c3772a198214b75fa63231c4d /src/mame/drivers/prestige.cpp
parent1ba8223dfa4b763d4d59c087dca1c9beaba513da (diff)
prestige.cpp: Identify Genius Junior CPU architecture and split to new driver file (nw)
Diffstat (limited to 'src/mame/drivers/prestige.cpp')
-rw-r--r--src/mame/drivers/prestige.cpp44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/mame/drivers/prestige.cpp b/src/mame/drivers/prestige.cpp
index 07fe746c614..6c6e4b33801 100644
--- a/src/mame/drivers/prestige.cpp
+++ b/src/mame/drivers/prestige.cpp
@@ -110,7 +110,6 @@ public:
void prestige_base(machine_config &config);
void gl6000sl(machine_config &config);
- void gjmovie(machine_config &config);
void snotec(machine_config &config);
void glmcolor(machine_config &config);
void glcolor(machine_config &config);
@@ -831,13 +830,6 @@ void prestige_state::gl7007sl(machine_config &config)
SOFTWARE_LIST(config, "misterx_cart").set_compatible("misterx");
}
-void prestige_state::gjmovie(machine_config &config)
-{
- prestige_base(config);
-
- SOFTWARE_LIST(config, "cart_list").set_original("gjmovie");
-}
-
/* ROM definition */
ROM_START( gl6000sl )
@@ -890,36 +882,6 @@ ROM_START( glmcolor )
ROM_LOAD( "27-5673-00.u6", 0x00000, 0x100000, CRC(c4245392) SHA1(bb651aaf11b75f4155c0a0106de9394018110cc7) )
ROM_END
-ROM_START( gj4000 )
- ROM_REGION( 0x100000, "maincpu", 0 )
- ROM_LOAD( "27-05886-000-000.u4", 0x000000, 0x40000, CRC(5f6db95b) SHA1(fe683154e33a82ea38696096616d11e850e0c7a3))
-ROM_END
-
-ROM_START( gj5000 )
- ROM_REGION( 0x100000, "maincpu", 0 )
- ROM_LOAD( "27-6019-01.u2", 0x000000, 0x80000, CRC(946e5b7d) SHA1(80963d6ad80d49e54c8996bfc77ac135c4935be5))
-ROM_END
-
-ROM_START( gjmovie )
- ROM_REGION( 0x100000, "maincpu", 0 )
- ROM_LOAD( "lh532hlk.bin", 0x000000, 0x40000, CRC(2e64c296) SHA1(604034f902e20851cb9af60964031a508ceef83e))
-ROM_END
-
-ROM_START( gjrstar )
- ROM_REGION( 0x100000, "maincpu", 0 )
- ROM_LOAD( "27-5740-00.u1", 0x000000, 0x40000, CRC(ff3dc3bb) SHA1(bc16dfc1e12b0008456c700c431c8df6263b671f))
-ROM_END
-
-ROM_START( gjrstar2 )
- ROM_REGION( 0x100000, "maincpu", 0 )
- ROM_LOAD( "27-5740-00.u1", 0x000000, 0x40000, CRC(ff3dc3bb) SHA1(bc16dfc1e12b0008456c700c431c8df6263b671f)) // identical to 'Genius Junior Redstar'
-ROM_END
-
-ROM_START( gjrstar3 )
- ROM_REGION( 0x100000, "maincpu", 0 )
- ROM_LOAD( "54-06056-000-000.u3", 0x000000, 0x040000, CRC(72522179) SHA1(ede9491713ad018012cf925a519bcafe126f1ad3))
-ROM_END
-
ROM_START( gkidabc )
ROM_REGION( 0x20000, "maincpu", 0 )
ROM_LOAD("27-5730-00.bin", 0x00000, 0x20000, CRC(64664708) SHA1(74212c2dec1caa41dbc933b50f857904a8ac623b))
@@ -948,11 +910,5 @@ COMP( 1999, gwnf, 0, 0, prestige, prestige, prestige_state, empty
// these systems need to be moved into a separate driver
-COMP( 1996, gj4000, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Junior 4000 (Germany)", MACHINE_IS_SKELETON )
COMP( 1996, gkidabc, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius KID ABC Fan (Germany)", MACHINE_IS_SKELETON )
-COMP( 1993, gjmovie, 0, 0, gjmovie, prestige, prestige_state, empty_init, "VTech", "Genius Junior Movie (Germany)", MACHINE_IS_SKELETON )
-COMP( 1996, gjrstar, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Junior Redstar(Germany)", MACHINE_IS_SKELETON )
-COMP( 1996, gjrstar2, gjrstar, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Junior Redstar 2 (Germany)", MACHINE_IS_SKELETON )
-COMP( 1998, gjrstar3, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Junior Redstar 3 (Germany)", MACHINE_IS_SKELETON )
-COMP( 1998, gj5000, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Junior 5000 (Germany)", MACHINE_IS_SKELETON )
COMP( 2012, cars2lap, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "CARS 2 Laptop (Germany)", MACHINE_IS_SKELETON )