From 650e7ee3bac08a8e5c6fee72fcd594a0d657386e Mon Sep 17 00:00:00 2001 From: Steven Coomber <81829553+scoomby@users.noreply.github.com> Date: Fri, 15 Apr 2022 21:47:17 +0100 Subject: wink.cpp: Identified more inputs for wink, winka (MT08284) (#9574) --- src/mame/drivers/wink.cpp | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/src/mame/drivers/wink.cpp b/src/mame/drivers/wink.cpp index 014ae5a31fd..f4478db313c 100644 --- a/src/mame/drivers/wink.cpp +++ b/src/mame/drivers/wink.cpp @@ -243,9 +243,11 @@ static INPUT_PORTS_START( wink ) PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON3 ) // slam PORT_START("DSW1") - PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unknown ) ) - PORT_DIPSETTING( 0x01, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x11, 0x10, DEF_STR( Bonus_Life ) ) + PORT_DIPSETTING( 0x10, "60k/120k/240k/480k" ) + PORT_DIPSETTING( 0x01, "80k/160k/320k/640k" ) + PORT_DIPSETTING( 0x00, "100k/200k/400k/800k" ) + PORT_DIPSETTING( 0x11, DEF_STR( None ) ) PORT_DIPNAME( 0x26, 0x26, DEF_STR( Coin_B ) ) PORT_DIPSETTING( 0x26, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x24, DEF_STR( 1C_2C ) ) @@ -264,9 +266,6 @@ static INPUT_PORTS_START( wink ) PORT_DIPSETTING( 0x08, DEF_STR( 2C_2C ) ) PORT_DIPSETTING( 0x40, DEF_STR( 2C_3C ) ) PORT_DIPSETTING( 0x00, DEF_STR( 2C_5C ) ) - PORT_DIPNAME( 0x10, 0x10, DEF_STR( Unknown ) ) - PORT_DIPSETTING( 0x10, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) PORT_START("DSW2") PORT_DIPNAME( 0x11, 0x11, "Ball Save Barrier" ) @@ -283,12 +282,11 @@ static INPUT_PORTS_START( wink ) PORT_DIPSETTING( 0x80, "3" ) PORT_DIPSETTING( 0x08, "5" ) PORT_DIPSETTING( 0x00, "7" ) - PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) ) - PORT_DIPSETTING( 0x20, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) - PORT_DIPNAME( 0x40, 0x40, DEF_STR( Unknown ) ) - PORT_DIPSETTING( 0x40, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x60, 0x40, "Timer Speed" ) + PORT_DIPSETTING( 0x00, "Slow" ) + PORT_DIPSETTING( 0x40, DEF_STR( Normal ) ) + PORT_DIPSETTING( 0x60, "Fast" ) + PORT_DIPSETTING( 0x20, "Very Fast" ) PORT_START("DSW3") PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unknown ) ) @@ -328,7 +326,7 @@ static INPUT_PORTS_START( wink ) PORT_DIPSETTING( 0x40, "5%" ) PORT_DIPSETTING( 0x04, "10%" ) PORT_DIPSETTING( 0x00, "20%" ) - PORT_DIPNAME( 0x08, 0x08, DEF_STR( Unknown ) ) + PORT_DIPNAME( 0x08, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPSETTING( 0x08, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) PORT_SERVICE( 0x10, IP_ACTIVE_LOW ) -- cgit v1.2.3