mirror of
https://github.com/holub/mame
synced 2025-05-28 16:43:04 +03:00
Updated DIP LOCATIONS and defaults to match those of the game upgrade manual.
This commit is contained in:
parent
97a1cc1646
commit
ba6689daa1
@ -44,6 +44,7 @@ write:
|
|||||||
TODO:
|
TODO:
|
||||||
|
|
||||||
- Fix Service Mode Output Test: press p1/p2 shot to insert coin
|
- Fix Service Mode Output Test: press p1/p2 shot to insert coin
|
||||||
|
- Flip Screen DIP is noted in service manual and added to DIP LOCATIONS, but not working.
|
||||||
|
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
@ -149,7 +150,7 @@ static INPUT_PORTS_START( sonson )
|
|||||||
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* probably unused */
|
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* probably unused */
|
||||||
|
|
||||||
PORT_START("DSW1")
|
PORT_START("DSW1")
|
||||||
PORT_DIPNAME( 0x0f, 0x0f, DEF_STR( Coinage ) )
|
PORT_DIPNAME( 0x0f, 0x0f, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW1:1,2,3,4")
|
||||||
PORT_DIPSETTING( 0x02, DEF_STR( 4C_1C ) )
|
PORT_DIPSETTING( 0x02, DEF_STR( 4C_1C ) )
|
||||||
PORT_DIPSETTING( 0x05, DEF_STR( 3C_1C ) )
|
PORT_DIPSETTING( 0x05, DEF_STR( 3C_1C ) )
|
||||||
PORT_DIPSETTING( 0x08, DEF_STR( 2C_1C ) )
|
PORT_DIPSETTING( 0x08, DEF_STR( 2C_1C ) )
|
||||||
@ -166,35 +167,37 @@ static INPUT_PORTS_START( sonson )
|
|||||||
PORT_DIPSETTING( 0x0a, DEF_STR( 1C_6C ) )
|
PORT_DIPSETTING( 0x0a, DEF_STR( 1C_6C ) )
|
||||||
PORT_DIPSETTING( 0x09, DEF_STR( 1C_7C ) )
|
PORT_DIPSETTING( 0x09, DEF_STR( 1C_7C ) )
|
||||||
PORT_DIPSETTING( 0x00, DEF_STR( Free_Play ) )
|
PORT_DIPSETTING( 0x00, DEF_STR( Free_Play ) )
|
||||||
PORT_DIPNAME( 0x10, 0x10, "Coinage affects" )
|
PORT_DIPNAME( 0x10, 0x10, "Coinage affects" ) PORT_DIPLOCATION("SW1:5") /* Not documented in manual */
|
||||||
PORT_DIPSETTING( 0x10, DEF_STR( Coin_A ) )
|
PORT_DIPSETTING( 0x10, DEF_STR( Coin_A ) )
|
||||||
PORT_DIPSETTING( 0x00, DEF_STR( Coin_B ) )
|
PORT_DIPSETTING( 0x00, DEF_STR( Coin_B ) )
|
||||||
PORT_DIPNAME( 0x20, 0x00, DEF_STR( Demo_Sounds ) )
|
PORT_DIPNAME( 0x20, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW1:6")
|
||||||
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
|
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
|
||||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||||
PORT_SERVICE( 0x40, IP_ACTIVE_LOW )
|
PORT_SERVICE( 0x40, IP_ACTIVE_LOW ) PORT_DIPLOCATION("SW1:7")
|
||||||
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNUSED )
|
PORT_DIPNAME( 0X80, 0x80, DEF_STR( Flip_Screen )) PORT_DIPLOCATION("SW1:8")
|
||||||
|
PORT_DIPSETTING( 0x80, DEF_STR( Off ) )
|
||||||
|
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||||
|
|
||||||
PORT_START("DSW2")
|
PORT_START("DSW2")
|
||||||
PORT_DIPNAME( 0x03, 0x03, DEF_STR( Lives ) )
|
PORT_DIPNAME( 0x03, 0x03, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW2:1,2")
|
||||||
PORT_DIPSETTING( 0x03, "3" )
|
PORT_DIPSETTING( 0x03, "3" )
|
||||||
PORT_DIPSETTING( 0x02, "4" )
|
PORT_DIPSETTING( 0x02, "4" )
|
||||||
PORT_DIPSETTING( 0x01, "5" )
|
PORT_DIPSETTING( 0x01, "5" )
|
||||||
PORT_DIPSETTING( 0x00, "7" )
|
PORT_DIPSETTING( 0x00, "7" )
|
||||||
PORT_DIPNAME( 0x04, 0x00, "2 Players Game" )
|
PORT_DIPNAME( 0x04, 0x00, "2 Players Game" ) PORT_DIPLOCATION("SW2:3") /* Not documented in manual */
|
||||||
PORT_DIPSETTING( 0x04, "1 Credit" )
|
PORT_DIPSETTING( 0x04, "1 Credit" )
|
||||||
PORT_DIPSETTING( 0x00, "2 Credits" )
|
PORT_DIPSETTING( 0x00, "2 Credits" )
|
||||||
PORT_DIPNAME( 0x18, 0x08, DEF_STR( Bonus_Life ) )
|
PORT_DIPNAME( 0x18, 0x08, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW2:4,5")
|
||||||
PORT_DIPSETTING( 0x08, "20000 80000 100000" )
|
PORT_DIPSETTING( 0x08, "20000 80000 100000" )
|
||||||
PORT_DIPSETTING( 0x00, "30000 90000 120000" )
|
PORT_DIPSETTING( 0x00, "30000 90000 120000" )
|
||||||
PORT_DIPSETTING( 0x18, "20000" )
|
PORT_DIPSETTING( 0x18, "20000" )
|
||||||
PORT_DIPSETTING( 0x10, "30000" )
|
PORT_DIPSETTING( 0x10, "30000" )
|
||||||
PORT_DIPNAME( 0x60, 0x60, DEF_STR( Difficulty ) )
|
PORT_DIPNAME( 0x60, 0x40, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:6,7")
|
||||||
PORT_DIPSETTING( 0x60, DEF_STR( Easy ) )
|
PORT_DIPSETTING( 0x60, DEF_STR( Easy ) )
|
||||||
PORT_DIPSETTING( 0x40, DEF_STR( Medium ) )
|
PORT_DIPSETTING( 0x40, DEF_STR( Normal ) )
|
||||||
PORT_DIPSETTING( 0x20, DEF_STR( Hard ) )
|
PORT_DIPSETTING( 0x20, DEF_STR( Hard ) )
|
||||||
PORT_DIPSETTING( 0x00, DEF_STR( Hardest ) )
|
PORT_DIPSETTING( 0x00, DEF_STR( Very_Hard ) )
|
||||||
PORT_DIPNAME( 0x80, 0x80, "Freeze" )
|
PORT_DIPNAME( 0x80, 0x80, "Freeze" ) PORT_DIPLOCATION("SW2:8")
|
||||||
PORT_DIPSETTING( 0x80, DEF_STR( Off ) )
|
PORT_DIPSETTING( 0x80, DEF_STR( Off ) )
|
||||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||||
INPUT_PORTS_END
|
INPUT_PORTS_END
|
||||||
|
Loading…
Reference in New Issue
Block a user