mirror of
https://github.com/holub/mame
synced 2025-05-25 23:35:26 +03:00
Verified dips for Space Firebird and clones (spacefb.c). [Tafoid]
This commit is contained in:
parent
f6705e7c82
commit
401df19878
@ -288,10 +288,10 @@ static INPUT_PORTS_START( spacefb )
|
|||||||
PORT_DIPSETTING( 0x02, "5" )
|
PORT_DIPSETTING( 0x02, "5" )
|
||||||
PORT_DIPSETTING( 0x03, "6" )
|
PORT_DIPSETTING( 0x03, "6" )
|
||||||
PORT_DIPNAME( 0x0c, 0x00, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW:3,4")
|
PORT_DIPNAME( 0x0c, 0x00, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW:3,4")
|
||||||
|
PORT_DIPSETTING( 0x08, DEF_STR( 3C_1C ) )
|
||||||
PORT_DIPSETTING( 0x04, DEF_STR( 2C_1C ) )
|
PORT_DIPSETTING( 0x04, DEF_STR( 2C_1C ) )
|
||||||
PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) )
|
PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) )
|
||||||
PORT_DIPSETTING( 0x0c, DEF_STR( 1C_2C ) )
|
PORT_DIPSETTING( 0x0c, DEF_STR( 1C_2C ) )
|
||||||
PORT_DIPSETTING( 0x08, DEF_STR( 1C_3C ) )
|
|
||||||
PORT_DIPNAME( 0x10, 0x00, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW:5")
|
PORT_DIPNAME( 0x10, 0x00, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW:5")
|
||||||
PORT_DIPSETTING( 0x00, "5000" )
|
PORT_DIPSETTING( 0x00, "5000" )
|
||||||
PORT_DIPSETTING( 0x10, "8000" )
|
PORT_DIPSETTING( 0x10, "8000" )
|
||||||
@ -302,29 +302,22 @@ static INPUT_PORTS_START( spacefb )
|
|||||||
INPUT_PORTS_END
|
INPUT_PORTS_END
|
||||||
|
|
||||||
|
|
||||||
/* same as Space Firebird, except for the difficulty switch */
|
/* same as Space Firebird, except for the difficulty switch (replacing 5/6 lives) and 1C_3C (rather than 3C_1C) */
|
||||||
static INPUT_PORTS_START( spacedem )
|
static INPUT_PORTS_START( spacedem )
|
||||||
PORT_INCLUDE( spacefb )
|
PORT_INCLUDE( spacefb )
|
||||||
|
|
||||||
PORT_MODIFY("DSW")
|
PORT_MODIFY("DSW")
|
||||||
PORT_DIPNAME( 0x01, 0x00, DEF_STR( Lives ) )
|
PORT_DIPNAME( 0x01, 0x00, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW:1")
|
||||||
PORT_DIPSETTING( 0x00, "3" )
|
PORT_DIPSETTING( 0x00, "3" )
|
||||||
PORT_DIPSETTING( 0x01, "4" )
|
PORT_DIPSETTING( 0x01, "4" )
|
||||||
PORT_DIPNAME( 0x02, 0x00, DEF_STR( Difficulty ) )
|
PORT_DIPNAME( 0x02, 0x00, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW:2")
|
||||||
PORT_DIPSETTING( 0x00, DEF_STR( Easy ) )
|
PORT_DIPSETTING( 0x00, DEF_STR( Easy ) )
|
||||||
PORT_DIPSETTING( 0x01, DEF_STR( Hard ) )
|
PORT_DIPSETTING( 0x02, DEF_STR( Hard ) )
|
||||||
PORT_DIPNAME( 0x0c, 0x00, DEF_STR( Coinage ) )
|
PORT_DIPNAME( 0x0c, 0x00, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW:3,4")
|
||||||
PORT_DIPSETTING( 0x04, DEF_STR( 2C_1C ) )
|
PORT_DIPSETTING( 0x04, DEF_STR( 2C_1C ) )
|
||||||
PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) )
|
PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) )
|
||||||
PORT_DIPSETTING( 0x0c, DEF_STR( 1C_2C ) )
|
PORT_DIPSETTING( 0x0c, DEF_STR( 1C_2C ) )
|
||||||
PORT_DIPSETTING( 0x08, DEF_STR( 1C_3C ) )
|
PORT_DIPSETTING( 0x08, DEF_STR( 1C_3C ) )
|
||||||
PORT_DIPNAME( 0x10, 0x00, DEF_STR( Bonus_Life ) )
|
|
||||||
PORT_DIPSETTING( 0x00, "5000" )
|
|
||||||
PORT_DIPSETTING( 0x10, "8000" )
|
|
||||||
PORT_DIPNAME( 0x20, 0x20, DEF_STR( Cabinet ) )
|
|
||||||
PORT_DIPSETTING( 0x20, DEF_STR( Upright ) )
|
|
||||||
PORT_DIPSETTING( 0x00, DEF_STR( Cocktail ) )
|
|
||||||
PORT_BIT( 0xc0, IP_ACTIVE_HIGH, IPT_UNKNOWN )
|
|
||||||
INPUT_PORTS_END
|
INPUT_PORTS_END
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user