New working systems

-------------------
Pyuuta-kun (Japan) [Hammy]
This commit is contained in:
Ivan Vangelista 2024-12-27 18:26:56 +01:00
parent 7c3855befd
commit dfe669f887
2 changed files with 27 additions and 3 deletions

View File

@ -45517,6 +45517,7 @@ snowbro2ny // TP-033 (c) 1994 Nyanko
burgkids // (c) 1995 Sunwise
othldrby // (c) 1995 Sunwise
pwrkick // (c) 1994 Sunwise
pyutakun // (c) 1995 Sunwise
@source:toaplan/tekipaki.cpp
tekipaki // TP-020 (c) 1991 Toaplan

View File

@ -22,8 +22,9 @@
Name Board No Maker Game name
----------------------------------------------------------------------------
pwrkick SW931201 Sunwise Power Kick
burgkids SW931201 Sunwise Burger Kids
pwrkick SW931201-1 Sunwise Power Kick
burgkids SW931201-1 Sunwise Burger Kids
pyutakun SW931201-1 Sunwise Pyuuta-kun
othldrby S951060-VGP Sunwise Othello Derby
@ -283,6 +284,15 @@ static INPUT_PORTS_START( burgkids )
INPUT_PORTS_END
static INPUT_PORTS_START( pyutakun )
PORT_INCLUDE( burgkids )
PORT_MODIFY("IN1")
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON1 )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_BUTTON2 )
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON3 )
INPUT_PORTS_END
static INPUT_PORTS_START( 2b )
PORT_START("IN1")
TOAPLAN_JOY_UDLR_2_BUTTONS( 1 )
@ -557,7 +567,7 @@ NOTE: This PCB uses an 8-Liner style edge connector
MB3771 Voltage monitor
BT1 - CR2550 3Volt battery
NOTE: Sunwise's S951060-VGP PCB uses identical componenets to the SW931201 but has a standard JAMMA connector
NOTE: Sunwise's S951060-VGP PCB uses identical components to the SW931201 but has a standard JAMMA connector
*/
ROM_START( burgkids ) // Sunwise SW931201-1 PCB - 8-liner connections
@ -572,6 +582,18 @@ ROM_START( burgkids ) // Sunwise SW931201-1 PCB - 8-liner connections
ROM_LOAD( "ffk4.u33", 0x000000, 0x080000, CRC(3b032d4f) SHA1(69056bf205aadf6c9fee56ce396b11a5187caa03) )
ROM_END
ROM_START( pyutakun ) // Sunwise SW931201-1 PCB - 8-liner connections
ROM_REGION( 0x80000, "maincpu", 0 )
ROM_LOAD16_WORD_SWAP( "sunwise_p1.u61", 0x00000, 0x80000, CRC(00907713) SHA1(0822044bcf476b3e8aaba752e503ee79459b34ed) )
ROM_REGION( 0x100000, "gp9001", 0 )
ROM_LOAD( "sunwise_p2.u26", 0x00000, 0x80000, CRC(180b8b13) SHA1(4a317bd0825f4e4383293220e775c0f807cdd80f) )
ROM_LOAD( "sunwise_p3.u27", 0x80000, 0x80000, CRC(a23ccb8e) SHA1(5f2f23fa86817ff491058123d775ffebd7e98dee) )
ROM_REGION( 0x40000, "oki", 0 )
ROM_LOAD( "sunwise_p4.u33", 0x00000, 0x40000, CRC(b1c5a8bc) SHA1(aa18165a9214f9ed0969da073e4b6092be3c5c1a) )
ROM_END
ROM_START( othldrby ) // Sunwise S951060-VGP PCB - JAMMA compliant (components identical to Sunwise SW931201-1 PCB)
ROM_REGION( 0x080000, "maincpu", 0 )
ROM_LOAD16_WORD_SWAP( "sunwise_db0_1.u61", 0x00000, 0x80000, CRC(6b4008d3) SHA1(4cf838c47563ba482be8364b2e115569a4a06c83) )
@ -588,4 +610,5 @@ ROM_END
GAME( 1994, pwrkick, 0, pwrkick, pwrkick, sunwise_state, empty_init, ROT0, "Sunwise", "Power Kick (Japan)", 0 )
GAME( 1995, burgkids, 0, pwrkick, burgkids, sunwise_state, empty_init, ROT0, "Sunwise", "Burger Kids (Japan)", 0 )
GAME( 1995, pyutakun, 0, pwrkick, pyutakun, sunwise_state, empty_init, ROT0, "Sunwise", "Pyuuta-kun (Japan)", 0 )
GAME( 1995, othldrby, 0, othldrby, othldrby, sunwise_state, empty_init, ROT0, "Sunwise", "Othello Derby (Japan)", 0 )