new NOT WORKING machines (#12509)

--------------------
Virtual Tennis (VTG) [Sean Riddle, David Haywood]
This commit is contained in:
mamehaze 2024-06-26 19:32:28 +01:00 committed by GitHub
parent 0cf2c68c32
commit 312e45364e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 23 additions and 0 deletions

View File

@ -45269,6 +45269,7 @@ tmntmutm
totspies
tvsprt10 //
virtbb
virtten
vtechtvsgr // (c) 2006 VTech
vtechtvssp // (c) 2006 VTech
wfcentro

View File

@ -1305,6 +1305,22 @@ static INPUT_PORTS_START( virtbb )
PORT_MODIFY("P3")
INPUT_PORTS_END
static INPUT_PORTS_START( virtten )
PORT_INCLUDE( spg2xx )
PORT_MODIFY("P1")
PORT_BIT( 0x0001, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN )
PORT_BIT( 0x0002, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP )
PORT_BIT( 0x0004, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT )
PORT_BIT( 0x0010, IP_ACTIVE_HIGH, IPT_BUTTON1 )
PORT_BIT( 0x0020, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT )
PORT_BIT( 0x0040, IP_ACTIVE_HIGH, IPT_BUTTON2 )
PORT_MODIFY("P2")
PORT_MODIFY("P3")
INPUT_PORTS_END
void spg2xx_game_state::machine_start()
{
if (m_bank)
@ -2240,6 +2256,11 @@ ROM_START( virtbb )
ROM_LOAD16_WORD_SWAP( "virtualbb.bin", 0x000000, 0x400000, CRC(7cb7a69f) SHA1(eae0c516c1ff89a369662d09321feafc8a8054b0) )
ROM_END
ROM_START( virtten )
ROM_REGION( 0x400000, "maincpu", ROMREGION_ERASE00 )
ROM_LOAD16_WORD_SWAP( "virttennis.bin", 0x000000, 0x400000, CRC(e665bea9) SHA1(8c2c9f879c929e224cd885165ed60aed8baeb19d) )
ROM_END
void spg2xx_game_state::init_crc()
{
// several games have a byte sum checksum listed at the start of ROM, this little helper function logs what it should match.
@ -2410,3 +2431,4 @@ CONS( 200?, tiktokmm, 0, 0, spg2xx, spg2xx, spg2xx_game_wfcentro_
CONS( 2005, doyousud, 0, 0, spg2xx, doyousud, spg2xx_game_state, empty_init, "SDW Games", "Sudoku: Do You Sudoku?", MACHINE_NOT_WORKING )
CONS( 200?, virtbb, 0, 0, spg2xx, virtbb, spg2xx_game_state, empty_init, "VTG Interactive", "Virtual Baseball (VTG)", MACHINE_NOT_WORKING ) // motion controls not fully understood
CONS( 200?, virtten, 0, 0, spg2xx, virtten, spg2xx_game_state, empty_init, "VTG Interactive", "Virtual Tennis (VTG)", MACHINE_NOT_WORKING ) // motion controls not fully understood