diff options
author | 2022-03-20 02:42:13 +0000 | |
---|---|---|
committer | 2022-03-19 22:42:13 -0400 | |
commit | 6cb570ae72b9ff5a345d23e37e2cc466ca1d599a (patch) | |
tree | 2a745400f5bc830a5a25f0700b84308c9102f7f7 /src | |
parent | f1214e09a6c27163e69027f5b6db12c243e3f477 (diff) |
8080bw.cpp: update DIP switches for skylove & claybust (MT08251 & MT08254) (#9439)
Add Bonus Life DIP switch for skylove (MT08251)
Add Number of Flings DIP switch for claybust (MT08254)
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/drivers/8080bw.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/mame/drivers/8080bw.cpp b/src/mame/drivers/8080bw.cpp index 7ce29cc7f34..a800b0555ec 100644 --- a/src/mame/drivers/8080bw.cpp +++ b/src/mame/drivers/8080bw.cpp @@ -2730,12 +2730,11 @@ static INPUT_PORTS_START( skylove ) PORT_DIPNAME( 0x10, 0x00, DEF_STR( Unknown ) ) PORT_DIPSETTING( 0x10, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) - PORT_DIPNAME( 0x20, 0x00, DEF_STR( Unknown ) ) - PORT_DIPSETTING( 0x20, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) - PORT_DIPNAME( 0x40, 0x00, DEF_STR( Unknown ) ) - PORT_DIPSETTING( 0x40, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x60, 0x00, DEF_STR( Bonus_Life ) ) + PORT_DIPSETTING( 0x00, "10k" ) + PORT_DIPSETTING( 0x20, "20k" ) + PORT_DIPSETTING( 0x40, "40k" ) + PORT_DIPSETTING( 0x60, "60k" ) PORT_DIPNAME( 0x80, 0x00, DEF_STR( Unknown ) ) PORT_DIPSETTING( 0x80, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) @@ -3276,7 +3275,9 @@ static INPUT_PORTS_START( claybust ) PORT_DIPSETTING( 0x10, "4" ) PORT_DIPSETTING( 0x00, "2" ) PORT_DIPUNKNOWN_DIPLOC( 0x20, 0x20, "DNS06:2" ) - PORT_DIPUNKNOWN_DIPLOC( 0x40, 0x40, "DNS06:3" ) + PORT_DIPNAME( 0x40, 0x00, "Number of Flings" ) PORT_DIPLOCATION("DNS06:3") + PORT_DIPSETTING( 0x40, "8" ) + PORT_DIPSETTING( 0x00, "10" ) PORT_DIPUNKNOWN_DIPLOC( 0x80, 0x80, "DNS06:4" ) PORT_START( "GUNX" ) |