mirror of
https://github.com/holub/mame
synced 2025-05-04 21:43:05 +03:00
gstriker.cpp: fixed dip-switches for V Goal Soccer, added dip locations (nw)
This commit is contained in:
parent
4a9afe9b16
commit
4e02207b54
@ -428,7 +428,7 @@ static INPUT_PORTS_START( vgoalsoc )
|
||||
PORT_INCLUDE( gstriker_generic )
|
||||
|
||||
PORT_START("DSW1")
|
||||
PORT_DIPNAME( 0x07, 0x07, DEF_STR( Coin_A ) )
|
||||
PORT_DIPNAME( 0x07, 0x07, DEF_STR( Coin_A ) ) PORT_DIPLOCATION("SWA:1,2,3")
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( 4C_1C ) )
|
||||
PORT_DIPSETTING( 0x01, DEF_STR( 3C_1C ) )
|
||||
PORT_DIPSETTING( 0x02, DEF_STR( 2C_1C ) )
|
||||
@ -438,7 +438,7 @@ static INPUT_PORTS_START( vgoalsoc )
|
||||
PORT_DIPSETTING( 0x04, DEF_STR( 1C_4C ) )
|
||||
PORT_DIPSETTING( 0x03, DEF_STR( 1C_6C ) )
|
||||
|
||||
PORT_DIPNAME( 0x38, 0x38, DEF_STR( Coin_B ) )
|
||||
PORT_DIPNAME( 0x38, 0x38, DEF_STR( Coin_B ) ) PORT_DIPLOCATION("SWA:4,5,6")
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( 4C_1C ) )
|
||||
PORT_DIPSETTING( 0x08, DEF_STR( 3C_1C ) )
|
||||
PORT_DIPSETTING( 0x10, DEF_STR( 2C_1C ) )
|
||||
@ -448,33 +448,31 @@ static INPUT_PORTS_START( vgoalsoc )
|
||||
PORT_DIPSETTING( 0x20, DEF_STR( 1C_4C ) )
|
||||
PORT_DIPSETTING( 0x18, DEF_STR( 1C_6C ) )
|
||||
|
||||
PORT_DIPNAME( 0xc0, 0xc0, DEF_STR (Unknown) ) // Probably difficulty
|
||||
PORT_DIPNAME( 0xc0, 0xc0, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SWA:7,8")
|
||||
PORT_DIPSETTING( 0x80, "A" )
|
||||
PORT_DIPSETTING( 0xc0, "B" )
|
||||
PORT_DIPSETTING( 0x40, "C" )
|
||||
PORT_DIPSETTING( 0x00, "D" )
|
||||
|
||||
PORT_START("DSW2")
|
||||
PORT_DIPNAME( 0x03, 0x03, "Player VS CPU Time" ) // no coperative
|
||||
PORT_DIPNAME( 0x03, 0x03, "Player VS CPU Time" ) PORT_DIPLOCATION("SWB:1,2") // no cooperative
|
||||
PORT_DIPSETTING( 0x02, "1:00" )
|
||||
PORT_DIPSETTING( 0x03, "1:30" )
|
||||
PORT_DIPSETTING( 0x01, "2:00" )
|
||||
PORT_DIPSETTING( 0x00, "2:30" )
|
||||
PORT_DIPNAME( 0x0c, 0x0c, "Player VS Player Time" )
|
||||
PORT_DIPNAME( 0x0c, 0x0c, "Player VS Player Time" ) PORT_DIPLOCATION("SWB:3,4")
|
||||
PORT_DIPSETTING( 0x08, "1:30" )
|
||||
PORT_DIPSETTING( 0x0c, "2:00" )
|
||||
PORT_DIPSETTING( 0x04, "2:30" )
|
||||
PORT_DIPSETTING( 0x00, "3:00" )
|
||||
PORT_DIPNAME( 0x10, 0x10, "Countdown" )
|
||||
PORT_DIPNAME( 0x10, 0x10, "Countdown" ) PORT_DIPLOCATION("SWB:5")
|
||||
PORT_DIPSETTING( 0x10, "54 sec" )
|
||||
PORT_DIPSETTING( 0x00, "60 sec" )
|
||||
PORT_DIPNAME( 0x20, 0x00, DEF_STR( Demo_Sounds ) )
|
||||
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x40, 0x40, "DWS2:6" ) // hangs at POST
|
||||
PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x80, 0x80, "Start credit" )
|
||||
PORT_DIPNAME( 0x20, 0x20, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SWB:6")
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x20, DEF_STR( On ) )
|
||||
PORT_SERVICE_DIPLOC( 0x40, IP_ACTIVE_LOW, "SWB:7" )
|
||||
PORT_DIPNAME( 0x80, 0x80, "Start credit" ) PORT_DIPLOCATION("SWB:8")
|
||||
PORT_DIPSETTING( 0x80, "1" )
|
||||
PORT_DIPSETTING( 0x00, "2" )
|
||||
INPUT_PORTS_END
|
||||
|
Loading…
Reference in New Issue
Block a user