Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/mame/mame.lst
Original file line number Diff line number Diff line change
Expand Up @@ -47341,6 +47341,7 @@ jak_ddhp
jak_prhp
kidizmb
kidizmp
kidizmtb
neopad
pdcm2
pocketmp
Expand Down
10 changes: 9 additions & 1 deletion src/mame/tvgames/generalplus_gpl32612.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,13 @@ ROM_START( kidizmb )
ROM_LOAD( "hy27uf081g2a_withspare.bin", 0x0000, 0x8400000, CRC(b87861c4) SHA1(8b5cc2557b54a37928be818430b91c48db98758f) )
ROM_END

ROM_START( kidizmtb )
ROM_REGION16_BE( 0x40000, "maincpu:internal", ROMREGION_ERASE00 )
ROM_LOAD16_WORD_SWAP( "internal.rom", 0x00000, 0x40000, NO_DUMP ) // used as bootstrap only?
ROM_REGION( 0x10800000, "nand", ROMREGION_ERASE00 )
ROM_LOAD( "kidizoomtwistdutchfw.bin", 0x0000, 0x10800000, CRC(9e24def0) SHA1(af51114f8e184e354205fc916b5db17e44da26e0) )
ROM_END

ROM_START( pocketmp )
ROM_REGION( 0x8800000, "nand", ROMREGION_ERASE00 )
ROM_LOAD( "tc58nvg0s3hta00.u3", 0x0000, 0x8800000, CRC(aabf2deb) SHA1(ee3118377c21b1fb28ff262484c9b587b394bd80) )
Expand Down Expand Up @@ -532,7 +539,8 @@ CONS( 201?, zippityuk, zippity, 0, zippity, gpl32612, generalplus_zip
CONS( 2013, kidizmp, 0, 0, gpl32612, gpl32612, generalplus_gpl32612_game_state, empty_init, "VTech", "Kidizoom Connect (Germany, pink camera)", MACHINE_NO_SOUND | MACHINE_NOT_WORKING)
// seems to be older tech, just glob + ROM, assuming it's a GP32 series based on above and due to having ARM code
CONS( 201?, kidizmb, 0, 0, gpl32612, gpl32612, generalplus_gpl32612_game_state, empty_init, "VTech", "Kidizoom (Germany, blue camera)", MACHINE_NO_SOUND | MACHINE_NOT_WORKING)

//From my dutch model
CONS( 2010, kidizmtb, 0, 0, gpl32612, gpl32612, generalplus_gpl32612_game_state, empty_init, "VTech", "Kidizoom Twist (Netherlands, blue camera)", MACHINE_NO_SOUND | MACHINE_NOT_WORKING)
// uses GPL32610
CONS( 2019, pocketmp, 0, 0, gpl32612, gpl32612, generalplus_gpl32612_game_state, nand_init880, "Takara Tomy", "Pocket Monsters PC", MACHINE_NO_SOUND | MACHINE_NOT_WORKING)

Expand Down