diff options
| author | 2026-05-15 16:38:28 +0100 | |
|---|---|---|
| committer | 2026-05-15 17:38:28 +0200 | |
| commit | e23b8f35ee92d13e5476f38a7f181f61ab7a849b (patch) | |
| tree | 6a7928b29de4f119fccffe50f0bbdcd324d86760 | |
| parent | 34cdf8cca4610be7ff25ecdd1a4c64ef12499671 (diff) | |
add a working VT set (#15338)
New working systems
-------------------
Game Kid - 85 jeux pour la télévision et 1 jeu LCD inclus! / Kid Land 85 in 1 (TV part) [Team Europe]
| -rw-r--r-- | src/mame/mame.lst | 1 | ||||
| -rw-r--r-- | src/mame/nintendo/nes_vt02_vt03.cpp | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/mame/mame.lst b/src/mame/mame.lst index 7475021cbcb..351ce5d95f2 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -36103,6 +36103,7 @@ dgun2959 dgun851 dgun853 fccomp88 +gamekid gamezn2 hs36blk hs36red diff --git a/src/mame/nintendo/nes_vt02_vt03.cpp b/src/mame/nintendo/nes_vt02_vt03.cpp index 22c913c649a..dc03a4c5261 100644 --- a/src/mame/nintendo/nes_vt02_vt03.cpp +++ b/src/mame/nintendo/nes_vt02_vt03.cpp @@ -1210,6 +1210,11 @@ ROM_START( mc_105te ) ROM_LOAD( "2011 super hik 105-in-1 turbo edition.prg", 0x00000, 0x800000, CRC(c0f85771) SHA1(8c4182b1de3be10dd895089823cc67a9d12589ef) ) ROM_END +ROM_START( gamekid ) + ROM_REGION( 0x800000, "mainrom", 0 ) + ROM_LOAD( "gamekid.bin", 0x00000, 0x800000, CRC(df721044) SHA1(b8ba8d1303b8a10b7d2f6c74bf40027156848fbd) ) +ROM_END + ROM_START( mc_sp69 ) ROM_REGION( 0x400000, "mainrom", 0 ) ROM_LOAD( "sports game 69-in-1.prg", 0x00000, 0x400000, CRC(1242da7f) SHA1(bb8f99b1f4a4783b3f7e54d74f1f2a6a628da154) ) @@ -1578,6 +1583,12 @@ CONS( 2006, ablmini, 0, 0, nes_vt_waixing_alt_pal_8mb, nes_vt, nes_vt_waixing CONS( 200?, solargm, 0, 0, nes_vt_waixing_alt_pal_8mb, nes_vt, nes_vt_waixing_alt_state, empty_init, "<unknown>", "Solar Games 80-in-1 (PAL)", MACHINE_IMPERFECT_GRAPHICS | MACHINE_IMPERFECT_SOUND ) // Solar Games logo is also found in the SunPlus based Millennium Arcade units +// Front of the box has the French name used in the description, no company name is present. +// back of box has "85 in 1 TV console and 1 LCD soccer game" (English) and "85 juegos para la televisión y 1 juego LCD incluido!" (Spanish) +// ingame shows "Kid Land 85 in 1" +// the LCD soccer game built into the unit appears to be driven by a separate glob and is not dumped +CONS( 200?, gamekid, 0, 0, nes_vt_waixing_alt_pal_8mb, nes_vt, nes_vt_waixing_alt_state, empty_init, "<unknown>", u8"Game Kid - 85 jeux pour la télévision et 1 jeu LCD inclus! / Kid Land 85 in 1 (TV part)", MACHINE_IMPERFECT_GRAPHICS ) + // silver 'N64' type controller design CONS( 200?, zudugo, 0, 0, nes_vt_waixing_alt_4mb, nes_vt, nes_vt_waixing_alt_state, empty_init, "Macro Winners / Waixing", "Zudu-go / 2udu-go", MACHINE_IMPERFECT_GRAPHICS | MACHINE_IMPERFECT_SOUND ) // the styling on the box looks like a '2' in places, a 'Z' in others. |
