summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Steven Coomber <81829553+scoomby@users.noreply.github.com>2022-03-26 10:56:16 +0000
committer GitHub <noreply@github.com>2022-03-26 21:56:16 +1100
commit9a14087a8b4057adcf527ce2a713aa59d04d10be (patch)
tree5c4d8eb68ff0567f09bf1746c343deeb593ad5ff /src
parent81930264fa908bf48b6f84cb361d80526064dfd6 (diff)
8080bw.cpp: add bonus life DIP switch to rollingc (MT08267) (#9463)
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/8080bw.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/8080bw.cpp b/src/mame/drivers/8080bw.cpp
index a800b0555ec..585d2fd95f5 100644
--- a/src/mame/drivers/8080bw.cpp
+++ b/src/mame/drivers/8080bw.cpp
@@ -1419,7 +1419,9 @@ static INPUT_PORTS_START( rollingc )
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_COIN1 )
PORT_MODIFY("IN2")
- PORT_DIPUNKNOWN_DIPLOC( 0x08, 0x00, "SW1:4" )
+ PORT_DIPNAME( 0x08, 0x08, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW1:4")
+ PORT_DIPSETTING( 0x08, "RC=3000 / MB=1000" )
+ PORT_DIPSETTING( 0x00, "RC=5000 / MB=2000" )
INPUT_PORTS_END
MACHINE_START_MEMBER(_8080bw_state,rollingc)