mirror of
https://github.com/holub/mame
synced 2025-10-07 17:27:06 +03:00
wrally.c - Added/verified DIP Locations for World Rally [Guru]
This commit is contained in:
parent
de2aa6fdf0
commit
8c1b18c52f
@ -155,26 +155,26 @@ static const ds5002fp_config dallas_config =
|
||||
|
||||
static INPUT_PORTS_START( wrally )
|
||||
PORT_START("DSW")
|
||||
PORT_DIPNAME( 0x0003, 0x0003, DEF_STR( Difficulty ) )
|
||||
PORT_DIPNAME( 0x0003, 0x0003, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:7,8")
|
||||
PORT_DIPSETTING( 0x0003, DEF_STR( Normal ) )
|
||||
PORT_DIPSETTING( 0x0002, DEF_STR( Easy ) )
|
||||
PORT_DIPSETTING( 0x0001, DEF_STR( Hard ) )
|
||||
PORT_DIPSETTING( 0x0000, DEF_STR( Hardest ) )
|
||||
PORT_DIPNAME( 0x0004, 0x0004, "Number of Joysticks" )
|
||||
PORT_DIPNAME( 0x0004, 0x0004, "Number of Joysticks" ) PORT_DIPLOCATION("SW2:6")
|
||||
PORT_DIPSETTING( 0x0004, "2" )
|
||||
PORT_DIPSETTING( 0x0000, "1" )
|
||||
PORT_DIPNAME( 0x0018, 0x0018, "Control Configuration" )
|
||||
PORT_DIPNAME( 0x0018, 0x0018, "Control Configuration" ) PORT_DIPLOCATION("SW2:4,5")
|
||||
PORT_DIPSETTING( 0x0018, DEF_STR( Joystick ) )
|
||||
PORT_DIPSETTING( 0x0010, "Pot Wheel" )
|
||||
PORT_DIPSETTING( 0x0000, "Opt Wheel" )
|
||||
PORT_DIPNAME( 0x0020, 0x0000, DEF_STR( Demo_Sounds ) )
|
||||
PORT_DIPSETTING( 0x0000, "Optical Wheel" )
|
||||
PORT_DIPNAME( 0x0020, 0x0000, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW2:3")
|
||||
PORT_DIPSETTING( 0x0020, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x0000, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x0040, 0x0040, DEF_STR( Cabinet ) )
|
||||
PORT_DIPNAME( 0x0040, 0x0040, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("SW2:2")
|
||||
PORT_DIPSETTING( 0x0040, DEF_STR( Upright ) )
|
||||
PORT_DIPSETTING( 0x0000, DEF_STR( Cocktail ) )
|
||||
PORT_SERVICE( 0x0080, IP_ACTIVE_LOW )
|
||||
PORT_DIPNAME( 0x0700, 0x0700, DEF_STR( Coin_A ) )
|
||||
PORT_SERVICE( 0x0080, IP_ACTIVE_LOW ) PORT_DIPLOCATION("SW2:1")
|
||||
PORT_DIPNAME( 0x0700, 0x0700, DEF_STR( Coin_A ) ) PORT_DIPLOCATION("SW1:6,7,8")
|
||||
PORT_DIPSETTING( 0x0700, DEF_STR( 1C_1C ) )
|
||||
PORT_DIPSETTING( 0x0000, DEF_STR( 3C_4C ) )
|
||||
PORT_DIPSETTING( 0x0100, DEF_STR( 2C_3C ) )
|
||||
@ -183,7 +183,7 @@ static INPUT_PORTS_START( wrally )
|
||||
PORT_DIPSETTING( 0x0400, DEF_STR( 1C_4C ) )
|
||||
PORT_DIPSETTING( 0x0300, DEF_STR( 1C_5C ) )
|
||||
PORT_DIPSETTING( 0x0200, DEF_STR( 1C_6C ) )
|
||||
PORT_DIPNAME( 0x3800, 0x3800, DEF_STR( Coin_B ) )
|
||||
PORT_DIPNAME( 0x3800, 0x3800, DEF_STR( Coin_B ) ) PORT_DIPLOCATION("SW1:3,4,5")
|
||||
PORT_DIPSETTING( 0x1000, DEF_STR( 6C_1C ) )
|
||||
PORT_DIPSETTING( 0x1800, DEF_STR( 5C_1C ) )
|
||||
PORT_DIPSETTING( 0x2000, DEF_STR( 4C_1C ) )
|
||||
@ -192,10 +192,10 @@ static INPUT_PORTS_START( wrally )
|
||||
PORT_DIPSETTING( 0x0800, DEF_STR( 3C_2C ) )
|
||||
PORT_DIPSETTING( 0x0000, DEF_STR( 4C_3C ) )
|
||||
PORT_DIPSETTING( 0x3800, DEF_STR( 1C_1C ) )
|
||||
PORT_DIPNAME( 0x4000, 0x4000, "Credit configuration" )
|
||||
PORT_DIPNAME( 0x4000, 0x4000, "Credit configuration" ) PORT_DIPLOCATION("SW1:2")
|
||||
PORT_DIPSETTING( 0x4000, "Start 1C/Continue 1C" )
|
||||
PORT_DIPSETTING( 0x0000, "Start 2C/Continue 1C" )
|
||||
PORT_DIPNAME( 0x8000, 0x8000, DEF_STR( Free_Play ) )
|
||||
PORT_DIPNAME( 0x8000, 0x8000, DEF_STR( Free_Play ) ) PORT_DIPLOCATION("SW1:1")
|
||||
PORT_DIPSETTING( 0x8000, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x0000, DEF_STR( On ) )
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user