From 671b8c33d9f964e1d118910905e506a58ea1beed Mon Sep 17 00:00:00 2001 From: mamehaze <140764005+mamehaze@users.noreply.github.com> Date: Fri, 11 Jul 2025 00:05:17 +0100 Subject: nintendo/nes_vt32.cpp: Add typo240 (#13936) New working systems ------------------- Vintage Gamer 240-in-1 [AJR Hacker, David Haywood, TeamEurope] --- src/mame/mame.lst | 1 + src/mame/nintendo/nes_vt32.cpp | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/src/mame/mame.lst b/src/mame/mame.lst index bf3f895a75f..a4537cb873b 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -35474,6 +35474,7 @@ myaass retro400 rfcp168 rminitv +typo240 @source:nintendo/nes_vt369_vtunknown.cpp 36pcase diff --git a/src/mame/nintendo/nes_vt32.cpp b/src/mame/nintendo/nes_vt32.cpp index 69c65651dc0..40757193f06 100644 --- a/src/mame/nintendo/nes_vt32.cpp +++ b/src/mame/nintendo/nes_vt32.cpp @@ -663,6 +663,11 @@ ROM_START( mc_9x6sa ) ROM_LOAD( "999999-in-1, 8 bit slim station, newpxp-dvt22-a pcb.bin", 0x00000, 0x200000, CRC(6a47c6a0) SHA1(b4dd376167a57dbee3dea70eb16f1a38e16bcdaa) ) ROM_END +ROM_START( typo240 ) + ROM_REGION( 0x2000000, "mainrom", 0 ) + ROM_LOAD( "240nes.u2", 0x00000, 0x1000000, CRC(d709f66c) SHA1(73ca34ce07a1a8782226bd74b1ae43fc6d7126e1) ) // s29gl128p90tfcr1 +ROM_END + void nes_vt32_unk_state::init_rfcp168() { uint8_t *romdata = memregion("mainrom")->base(); @@ -766,6 +771,9 @@ CONS( 200?, mc_9x6sa, mc_9x6ss, 0, nes_vt32_2mb, nes_vt32, nes_vt32_unk_state, e CONS( 200?, mc_7x6ss, 0, 0, nes_vt32_1mb, nes_vt32, nes_vt32_unk_state, empty_init, "", "777777 in 1 (8 bit Slim Station, NEWPXP-DVT22-A PCB)", MACHINE_IMPERFECT_GRAPHICS ) CONS( 200?, mc_8x6ss, 0, 0, nes_vt32_1mb, nes_vt32, nes_vt32_unk_state, empty_init, "", "888888 in 1 (8 bit Slim Station, NEWPXP-DVT22-A PCB)", MACHINE_IMPERFECT_GRAPHICS ) +// most games work, a few minor graphical issues common to the same games in other units +CONS( 202?, typo240, 0, 0, nes_vt32_16mb, nes_vt32, nes_vt32_unk_state, empty_init, "Typo", "Vintage Gamer 240-in-1", MACHINE_IMPERFECT_GRAPHICS ) + // there's also a 250+ version of the unit below at least CONS( 2018, goretrop, 0, 0, nes_vt32_32mb, nes_vt32, nes_vt32_unk_state, empty_init, "Retro-Bit", "Go Retro Portable 260+ Games", MACHINE_NOT_WORKING ) -- cgit v1.2.3