From f67a0177a4d8e29f7f5286a0c0cbca3ee4c27b66 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Sat, 6 May 2017 10:26:12 +0200 Subject: [PATCH] spoker.cpp: a couple more dips identified (nw) --- src/mame/drivers/spoker.cpp | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/spoker.cpp b/src/mame/drivers/spoker.cpp index 566159fca3a..2597f49176e 100644 --- a/src/mame/drivers/spoker.cpp +++ b/src/mame/drivers/spoker.cpp @@ -337,9 +337,15 @@ static INPUT_PORTS_START( spoker ) PORT_DIPSETTING( 0x02, "5" ) PORT_DIPSETTING( 0x01, "10" ) PORT_DIPSETTING( 0x00, "20" ) - PORT_DIPUNKNOWN( 0x04, 0x04 ) - PORT_DIPUNKNOWN( 0x08, 0x08 ) - PORT_DIPUNKNOWN( 0x10, 0x10 ) + PORT_DIPNAME( 0x1c, 0x1c, "Key In/Out" ) + PORT_DIPSETTING( 0x1c, "10 Credits" ) + PORT_DIPSETTING( 0x18, "20 Credits" ) + PORT_DIPSETTING( 0x14, "40 Credits" ) + PORT_DIPSETTING( 0x10, "50 Credits" ) + PORT_DIPSETTING( 0x0c, "100 Credits" ) + PORT_DIPSETTING( 0x08, "200 Credits" ) + PORT_DIPSETTING( 0x04, "250 Credits" ) + PORT_DIPSETTING( 0x00, "500 Credits" ) PORT_DIPUNKNOWN( 0x20, 0x20 ) PORT_DIPUNKNOWN( 0x40, 0x40 ) PORT_DIPUNKNOWN( 0x80, 0x80 ) @@ -349,7 +355,9 @@ static INPUT_PORTS_START( spoker ) PORT_DIPUNKNOWN( 0x02, 0x02 ) PORT_DIPUNKNOWN( 0x04, 0x04 ) PORT_DIPUNKNOWN( 0x08, 0x08 ) - PORT_DIPUNKNOWN( 0x10, 0x10 ) + PORT_DIPNAME( 0x10, 0x10, "Credit Limit" ) + PORT_DIPSETTING( 0x10, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, "On (2000)" ) PORT_DIPUNKNOWN( 0x20, 0x20 ) PORT_DIPUNKNOWN( 0x40, 0x40 ) PORT_DIPUNKNOWN( 0x80, 0x80 )