Skip to content
Closed
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 @@ -47294,6 +47294,7 @@ retro150
retro150a
rhhc152
supreme
throwback
toumapet

@source:tvgames/titan_soc.cpp
Expand Down
10 changes: 10 additions & 0 deletions src/mame/tvgames/st2302u_bbl_spi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,14 @@ ROM_START(toumapet)
ROM_LOAD("p25d32sh.bin", 0x000000, 0x400000, CRC(25498f00) SHA1(c5c410e29f540d7f1fd4bbb333467f8a3eaccc15) )
ROM_END

ROM_START(throwback)
ROM_REGION(0x800000, "maincpu", ROMREGION_ERASEFF)
ROM_LOAD("st2x_internal.bin", 0x002000, 0x002000, BAD_DUMP CRC(f4dc1fc2) SHA1(bbc11539c48eb612ebae50da45e03b6fde440941)) // internal OTPROM BIOS, dumped from dgun2953 PCB, 6000-7fff range

ROM_REGION(0x800000, "spi", ROMREGION_ERASEFF)
ROM_LOAD("25q32egig.bin", 0x000000, 0x400000, CRC(959EB09D) SHA1(901738e6b6c8fdfe4ed9b268ba3ddd1444551442))
ROM_END


} // anonymous namespace

Expand All @@ -433,6 +441,8 @@ CONS( 201?, arcade10, 0, 0, bbl380, bbl380, bbl380_state, empt

CONS( 201?, supreme, 0, 0, bbl380, bbl380, bbl380_state, empty_init, "Fizz Creations", "Arcade Classics Mini Handheld Arcade (Supreme 150)", MACHINE_IMPERFECT_SOUND )

CONS( 201?, throwback, 0, 0, bbl380, bbl380, bbl380_state, empty_init, "Westminster", "Throwback Pocket Video Game Console 150-in-1", MACHINE_IMPERFECT_SOUND )

// these are for the Japanese market, the ROM is the same between the Pocket Game and Game Computer but the form factor is different.
// they have the 0xE4 XOR on the SPI data like many of the above units, but don't currently boot - need to verify if the internal ROM part should be the same or not
CONS( 2019, pg118, 0, 0, bbl380, bbl380, bbl380_state, empty_init, "Pocket Game / Game Computer", "Pocket Game 118-in-1 / Game Computer 118-in-1", MACHINE_NOT_WORKING )
Expand Down
Loading