Previous 199869 Revisions Next

r36382 Thursday 12th March, 2015 at 06:02:37 UTC by Vasantha Crabb
Figured out another Crazy Bonus DIP switch
Verify '7' In Double Up Game DIP switch for many games
Correct some more Cherry Master DIP switches
[src/mame/drivers]goldstar.c

trunk/src/mame/drivers/goldstar.c
r244893r244894
11571157   PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_GAMBLE_BOOK ) PORT_NAME("Stats")
11581158INPUT_PORTS_END
11591159
1160static INPUT_PORTS_START( cmv4_dsw1 )
1161   PORT_START("DSW1")
1162   PORT_DIPNAME( 0x01, 0x00, DEF_STR( Unused ) )           PORT_DIPLOCATION("DSW1:1")
1163   PORT_DIPSETTING(    0x00, DEF_STR( Off ) )
1164   PORT_DIPSETTING(    0x01, DEF_STR( On ) )
1165   PORT_DIPNAME( 0x02, 0x00, "Hopper Out Switch" )         PORT_DIPLOCATION("DSW1:2")
1166   PORT_DIPSETTING(    0x00, "Active Low" )
1167   PORT_DIPSETTING(    0x02, "Active High" )
1168   PORT_DIPNAME( 0x04, 0x00, "Payout Mode" )               PORT_DIPLOCATION("DSW1:3")
1169   PORT_DIPSETTING(    0x00, "Payout Switch" )
1170   PORT_DIPSETTING(    0x04, "Automatic" )
1171   PORT_DIPNAME( 0x08, 0x00, "'7' In Double Up Game" )     PORT_DIPLOCATION("DSW1:4")
1172   PORT_DIPSETTING(    0x00, "Lose" )
1173   PORT_DIPSETTING(    0x08, "Even" )
1174   PORT_DIPNAME( 0x10, 0x00, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")
1175   PORT_DIPSETTING(    0x00, DEF_STR( Low ) )
1176   PORT_DIPSETTING(    0x10, DEF_STR( High ) )
1177   PORT_DIPNAME( 0x20, 0x00, "Double Up Game" )            PORT_DIPLOCATION("DSW1:6")
1178   PORT_DIPSETTING(    0x20, DEF_STR( Off ) )
1179   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1180   PORT_DIPNAME( 0xc0, 0xc0, "Bet Max" )                   PORT_DIPLOCATION("DSW1:7,8")
1181   PORT_DIPSETTING(    0x00, "8" )
1182   PORT_DIPSETTING(    0x40, "16" )
1183   PORT_DIPSETTING(    0x80, "32" )
1184   PORT_DIPSETTING(    0xc0, "64" )
1185INPUT_PORTS_END
1186
11601187static INPUT_PORTS_START( cmv4_dsw2 )
11611188   PORT_START("DSW2")
11621189   PORT_DIPNAME( 0x07, 0x07, "Main Game Pay Rate" )        PORT_DIPLOCATION("DSW2:1,2,3")
r244893r244894
12751302   PORT_START("DSW1")
12761303   PORT_DIPNAME( 0x01, 0x01, "Game Style" )                PORT_DIPLOCATION("DSW1:1")
12771304   PORT_DIPSETTING(    0x01, "Tokens" )
1278   PORT_DIPSETTING(    0x00, "Ticket" )
1305   PORT_DIPSETTING(    0x00, "Tickets" )
12791306   PORT_DIPNAME( 0x02, 0x02, "Hopper Out Switch" )         PORT_DIPLOCATION("DSW1:2")
12801307   PORT_DIPSETTING(    0x02, "Active Low" )
12811308   PORT_DIPSETTING(    0x00, "Active High" )
r244893r244894
12831310   PORT_DIPSETTING(    0x04, "Payout Switch" )
12841311   PORT_DIPSETTING(    0x00, "Automatic" )
12851312   PORT_DIPNAME( 0x08, 0x08, "'7' In Double Up Game" )     PORT_DIPLOCATION("DSW1:4")
1286   PORT_DIPSETTING(    0x08, "Loss" )
1313   PORT_DIPSETTING(    0x08, "Lose" )
12871314   PORT_DIPSETTING(    0x00, "Even" )
12881315   PORT_DIPNAME( 0x10, 0x10, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")
12891316   PORT_DIPSETTING(    0x10, "80%" )
r244893r244894
13651392
13661393   PORT_INCLUDE( cmv4_service )
13671394
1368   PORT_START("DSW1")
1369   PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unused ) )   PORT_DIPLOCATION("DSW1:1")  /* OK */
1370   PORT_DIPSETTING(    0x01, DEF_STR( Off ) )
1371   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1372   PORT_DIPNAME( 0x02, 0x02, "Hopper Out Switch" ) PORT_DIPLOCATION("DSW1:2")  /* OK */
1373   PORT_DIPSETTING(    0x02, "Active Low" )
1374   PORT_DIPSETTING(    0x00, "Active High" )
1375   PORT_DIPNAME( 0x04, 0x04, "Payout Mode" )       PORT_DIPLOCATION("DSW1:3")  /* OK */
1376   PORT_DIPSETTING(    0x04, "Payout Switch" )
1377   PORT_DIPSETTING(    0x00, "Automatic" )
1378   PORT_DIPNAME( 0x08, 0x00, "W-UP '7'" )          PORT_DIPLOCATION("DSW1:4")  /* not checked */
1379   PORT_DIPSETTING(    0x08, "Loss" )
1380   PORT_DIPSETTING(    0x00, "Even" )
1381   PORT_DIPNAME( 0x10, 0x00, "W-UP Pay Rate" )     PORT_DIPLOCATION("DSW1:5")  /* OK */
1395   PORT_INCLUDE( cmv4_dsw1 )
1396   PORT_MODIFY("DSW1")
1397   /* DSW1-1 unused */
1398   /* Hopper Out Switch not checked */
1399   /* Payout Mode not checked */
1400   /* '7' In Double Up Game OK */
1401   PORT_DIPNAME( 0x10, 0x00, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")      /* OK */
13821402   PORT_DIPSETTING(    0x00, "80%" )
13831403   PORT_DIPSETTING(    0x10, "90%" )
1384   PORT_DIPNAME( 0x20, 0x00, "W-UP Game" )         PORT_DIPLOCATION("DSW1:6")  /* OK */
1385   PORT_DIPSETTING(    0x20, DEF_STR( Off ) )
1386   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1387   PORT_DIPNAME( 0xc0, 0xc0, "Bet Max" )           PORT_DIPLOCATION("DSW1:7,8")    /* OK */
1404   /* Double Up Game OK */
1405   PORT_DIPNAME( 0xc0, 0xc0, "Bet Max" )                   PORT_DIPLOCATION("DSW1:7,8")    /* OK */
13881406   PORT_DIPSETTING(    0x00, "16" )
13891407   PORT_DIPSETTING(    0x40, "32" )
13901408   PORT_DIPSETTING(    0x80, "64" )
r244893r244894
14261444
14271445   PORT_INCLUDE( cmv4_service )
14281446
1429   PORT_START("DSW1")
1430   PORT_DIPNAME( 0x01, 0x00, DEF_STR( Unused ) )   PORT_DIPLOCATION("DSW1:1")  /* OK */
1431   PORT_DIPSETTING(    0x00, DEF_STR( Off ) )
1432   PORT_DIPSETTING(    0x01, DEF_STR( On ) )
1433   PORT_DIPNAME( 0x02, 0x00, "Hopper Out Switch" ) PORT_DIPLOCATION("DSW1:2")  /* OK */
1434   PORT_DIPSETTING(    0x00, "Active Low" )
1435   PORT_DIPSETTING(    0x02, "Active High" )
1436   PORT_DIPNAME( 0x04, 0x00, "Payout Mode" )       PORT_DIPLOCATION("DSW1:3")  /* OK */
1437   PORT_DIPSETTING(    0x00, "Payout Switch" )
1438   PORT_DIPSETTING(    0x04, "Automatic" )
1439   PORT_DIPNAME( 0x08, 0x00, "'7' In W-UP Game" )  PORT_DIPLOCATION("DSW1:4")  /* not checked */
1440   PORT_DIPSETTING(    0x08, "Loss" )
1441   PORT_DIPSETTING(    0x00, "Even" )
1442   PORT_DIPNAME( 0x10, 0x10, "W-UP Pay Rate" )     PORT_DIPLOCATION("DSW1:5")  /* OK */
1447   PORT_INCLUDE( cmv4_dsw1 )
1448   PORT_MODIFY("DSW1")
1449   /* DSW1-1 unused */
1450   /* Hopper Out Switch not checked */
1451   /* Payout Mode not checked */
1452   /* '7' In Double Up Game OK */
1453   PORT_DIPNAME( 0x10, 0x00, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")  /* OK */
14431454   PORT_DIPSETTING(    0x00, "40%" )
14441455   PORT_DIPSETTING(    0x10, "60%" )
1445   PORT_DIPNAME( 0x20, 0x00, "W-UP Game" )         PORT_DIPLOCATION("DSW1:6")  /* OK */
1446   PORT_DIPSETTING(    0x20, DEF_STR( Off ) )
1447   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1448   PORT_DIPNAME( 0xc0, 0xc0, "Bet Max" )           PORT_DIPLOCATION("DSW1:7,8")    /* OK */
1449   PORT_DIPSETTING(    0x00, "8" )
1450   PORT_DIPSETTING(    0x40, "16" )
1451   PORT_DIPSETTING(    0x80, "32" )
1452   PORT_DIPSETTING(    0xc0, "64" )
1456   /* Double Up Game OK */
1457   /* Bet Max OK */
14531458
14541459   PORT_INCLUDE( cmv4_dsw2 )
14551460   PORT_MODIFY("DSW2")
r244893r244894
14951500
14961501   PORT_INCLUDE( cmv4_service )
14971502
1498   PORT_START("DSW1")
1499   PORT_DIPNAME( 0x01, 0x00, DEF_STR( Unused ) )   PORT_DIPLOCATION("DSW1:1")  /* OK */
1500   PORT_DIPSETTING(    0x00, DEF_STR( Off ) )
1501   PORT_DIPSETTING(    0x01, DEF_STR( On ) )
1502   PORT_DIPNAME( 0x02, 0x00, "Hopper Out Switch" ) PORT_DIPLOCATION("DSW1:2")  /* OK */
1503   PORT_DIPSETTING(    0x00, "Active Low" )
1504   PORT_DIPSETTING(    0x02, "Active High" )
1505   PORT_DIPNAME( 0x04, 0x00, "Payout Mode" )       PORT_DIPLOCATION("DSW1:3")  /* OK */
1506   PORT_DIPSETTING(    0x00, "Payout Switch" )
1507   PORT_DIPSETTING(    0x04, "Automatic" )
1508   PORT_DIPNAME( 0x08, 0x00, "'7' In W-UP Game" )  PORT_DIPLOCATION("DSW1:4")  /* not checked */
1509   PORT_DIPSETTING(    0x08, "Loss" )
1510   PORT_DIPSETTING(    0x00, "Even" )
1511   PORT_DIPNAME( 0x10, 0x00, "W-UP Pay Rate" )     PORT_DIPLOCATION("DSW1:5")  /* OK */
1503   PORT_INCLUDE( cmv4_dsw1 )
1504   PORT_MODIFY("DSW1")
1505   /* DSW1-1 unused */
1506   /* Hopper Out Switch not checked */
1507   /* Payout Mode not checked */
1508   /* '7' In Double Up Game OK */
1509   PORT_DIPNAME( 0x10, 0x00, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")  /* OK */
15121510   PORT_DIPSETTING(    0x00, "60%" )
15131511   PORT_DIPSETTING(    0x10, "70%" )
1514   PORT_DIPNAME( 0x20, 0x00, "W-UP Game" )         PORT_DIPLOCATION("DSW1:6")  /* OK */
1515   PORT_DIPSETTING(    0x20, DEF_STR( Off ) )
1516   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1517   PORT_DIPNAME( 0xc0, 0xc0, "Bet Max" )           PORT_DIPLOCATION("DSW1:7,8")    /* OK */
1518   PORT_DIPSETTING(    0x00, "8" )
1519   PORT_DIPSETTING(    0x40, "16" )
1520   PORT_DIPSETTING(    0x80, "32" )
1521   PORT_DIPSETTING(    0xc0, "64" )
1512   /* Double Up Game OK */
1513   /* Bet Max OK */
15221514
15231515   PORT_INCLUDE( cmv4_dsw2 )
15241516   PORT_MODIFY("DSW2")
r244893r244894
15641556
15651557   PORT_INCLUDE( cmv4_service )
15661558
1567   PORT_START("DSW1")
1568   PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unused ) )   PORT_DIPLOCATION("DSW1:1")  /* OK */
1569   PORT_DIPSETTING(    0x01, DEF_STR( Off ) )
1570   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1571   PORT_DIPNAME( 0x02, 0x02, "Hopper Out Switch" ) PORT_DIPLOCATION("DSW1:2")  /* OK */
1572   PORT_DIPSETTING(    0x02, "Active Low" )
1573   PORT_DIPSETTING(    0x00, "Active High" )
1574   PORT_DIPNAME( 0x04, 0x00, "Payout Mode" )       PORT_DIPLOCATION("DSW1:3")  /* OK */
1575   PORT_DIPSETTING(    0x04, "Payout Switch" )
1576   PORT_DIPSETTING(    0x00, "Automatic" )
1577   PORT_DIPNAME( 0x08, 0x00, "W-UP '7'" )          PORT_DIPLOCATION("DSW1:4")  /* not checked */
1578   PORT_DIPSETTING(    0x08, "Loss" )
1579   PORT_DIPSETTING(    0x00, "Even" )
1580   PORT_DIPNAME( 0x10, 0x00, "W-UP Pay Rate" )     PORT_DIPLOCATION("DSW1:5")  /* OK */
1559   PORT_INCLUDE( cmv4_dsw1 )
1560   PORT_MODIFY("DSW1")
1561   /* DSW1-1 unused */
1562   /* Hopper Out Switch not checked */
1563   /* Payout Mode not checked */
1564   /* '7' In Double Up Game OK */
1565   PORT_DIPNAME( 0x10, 0x00, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")  /* OK */
15811566   PORT_DIPSETTING(    0x00, "80%" )
15821567   PORT_DIPSETTING(    0x10, "90%" )
1583   PORT_DIPNAME( 0x20, 0x00, "W-UP Game" )         PORT_DIPLOCATION("DSW1:6")  /* OK */
1584   PORT_DIPSETTING(    0x20, DEF_STR( Off ) )
1585   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1586   PORT_DIPNAME( 0xc0, 0xc0, "Bet Max" )           PORT_DIPLOCATION("DSW1:7,8")    /* OK */
1587   PORT_DIPSETTING(    0x00, "8" )
1588   PORT_DIPSETTING(    0x40, "16" )
1589   PORT_DIPSETTING(    0x80, "32" )
1590   PORT_DIPSETTING(    0xc0, "64" )
1568   /* Double Up Game OK */
1569   /* Bet Max OK */
15911570
15921571   PORT_INCLUDE( cmv4_dsw2 )
15931572   PORT_MODIFY("DSW2")
r244893r244894
16331612
16341613   PORT_INCLUDE( cmv4_service )
16351614
1636   PORT_START("DSW1")
1637   PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unused ) )   PORT_DIPLOCATION("DSW1:1")  /* OK */
1638   PORT_DIPSETTING(    0x01, DEF_STR( Off ) )
1639   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1640   PORT_DIPNAME( 0x02, 0x02, "Hopper Out Switch" ) PORT_DIPLOCATION("DSW1:2")  /* OK */
1641   PORT_DIPSETTING(    0x02, "Active Low" )
1642   PORT_DIPSETTING(    0x00, "Active High" )
1643   PORT_DIPNAME( 0x04, 0x00, "Payout Mode" )       PORT_DIPLOCATION("DSW1:3")  /* OK */
1644   PORT_DIPSETTING(    0x04, "Payout Switch" )
1645   PORT_DIPSETTING(    0x00, "Automatic" )
1646   PORT_DIPNAME( 0x08, 0x00, "W-UP '7'" )          PORT_DIPLOCATION("DSW1:4")  /* not checked */
1647   PORT_DIPSETTING(    0x08, "Loss" )
1648   PORT_DIPSETTING(    0x00, "Even" )
1649   PORT_DIPNAME( 0x10, 0x00, "W-UP Pay Rate" )     PORT_DIPLOCATION("DSW1:5")  /* OK */
1615   PORT_INCLUDE( cmv4_dsw1 )
1616   PORT_MODIFY("DSW1")
1617   /* DSW1-1 unused */
1618   /* Hopper Out Switch not checked */
1619   /* Payout Mode not checked */
1620   /* '7' In Double Up Game OK */
1621   PORT_DIPNAME( 0x10, 0x00, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")  /* OK */
16501622   PORT_DIPSETTING(    0x00, "80%" )
16511623   PORT_DIPSETTING(    0x10, "90%" )
1652   PORT_DIPNAME( 0x20, 0x00, "W-UP Game" )         PORT_DIPLOCATION("DSW1:6")  /* OK */
1653   PORT_DIPSETTING(    0x20, DEF_STR( Off ) )
1654   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1655   PORT_DIPNAME( 0xc0, 0xc0, "Bet Max" )           PORT_DIPLOCATION("DSW1:7,8")    /* OK */
1656   PORT_DIPSETTING(    0x00, "8" )
1657   PORT_DIPSETTING(    0x40, "16" )
1658   PORT_DIPSETTING(    0x80, "32" )
1659   PORT_DIPSETTING(    0xc0, "64" )
1624   /* Double Up Game OK */
1625   /* Bet Max OK */
16601626
16611627   PORT_INCLUDE( cmv4_dsw2 )
16621628   PORT_MODIFY("DSW2")
r244893r244894
17851751   PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_GAMBLE_SERVICE ) PORT_NAME("Settings")
17861752   PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_GAMBLE_BOOK ) PORT_NAME("Stats")
17871753
1788   PORT_START("DSW1")
1789   PORT_DIPNAME( 0x01, 0x00, "Game Style" )                PORT_DIPLOCATION("DSW1:1")
1790   PORT_DIPSETTING(    0x01, "Gettoni" )
1791   PORT_DIPSETTING(    0x00, "Ticket" )
1792   PORT_DIPNAME( 0x02, 0x02, "Hopper Out" )                PORT_DIPLOCATION("DSW1:2")
1793   PORT_DIPSETTING(    0x02, "Active Low" )
1794   PORT_DIPSETTING(    0x00, "Active High" )
1795   PORT_DIPNAME( 0x04, 0x04, "Payout Automatic" )          PORT_DIPLOCATION("DSW1:3")
1796   PORT_DIPSETTING(    0x04, DEF_STR( Off ) )
1797   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1798   PORT_DIPNAME( 0x08, 0x00, "'7' In Double Up Game" )     PORT_DIPLOCATION("DSW1:4")
1799   PORT_DIPSETTING(    0x08, "Loss" )
1800   PORT_DIPSETTING(    0x00, "Even" )
1754   PORT_INCLUDE( cb3_dsw1 )
1755   PORT_MODIFY("DSW1")
1756   /* Game Style not checked */
1757   /* Hopper Out Switch not checked */
1758   /* Payout Mode not checked */
1759   /* '7' In Double Up Game OK */
18011760   PORT_DIPNAME( 0x10, 0x10, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")      /* OK */
18021761   PORT_DIPSETTING(    0x10, "60%" )
18031762   PORT_DIPSETTING(    0x00, "70%" )
1804   PORT_DIPNAME( 0x20, 0x20, "Double Up Game" )            PORT_DIPLOCATION("DSW1:6")      /* OK */
1805   PORT_DIPSETTING(    0x00, DEF_STR( Off ) )
1806   PORT_DIPSETTING(    0x20, DEF_STR( On ) )
1763   /* Double Up Game OK */
18071764   PORT_DIPNAME( 0xc0, 0x00, "Bet Max" )                   PORT_DIPLOCATION("DSW1:7,8")    /* OK */
1808   PORT_DIPSETTING(    0xc0, "8 Bet" )
1809   PORT_DIPSETTING(    0x80, "16 Bet" )
1810   PORT_DIPSETTING(    0x40, "32 Bet" )
1811   PORT_DIPSETTING(    0x00, "50 Bet" )
1765   PORT_DIPSETTING(    0xc0, "8" )
1766   PORT_DIPSETTING(    0x80, "16" )
1767   PORT_DIPSETTING(    0x40, "32" )
1768   PORT_DIPSETTING(    0x00, "50" )
18121769
18131770   PORT_START("UNK1")
18141771   PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNKNOWN )
r244893r244894
18181775
18191776   PORT_START("DSW2")
18201777   PORT_DIPNAME( 0x07, 0x00, "Main Game Pay Rate" )    PORT_DIPLOCATION("DSW2:1,2,3" ) /* Does this work?  Settings screen always shows "28F3%". */
1821   PORT_DIPSETTING(    0x00, "75%" )
1822   PORT_DIPSETTING(    0x01, "70%" )
1823   PORT_DIPSETTING(    0x02, "65%" )
1824   PORT_DIPSETTING(    0x03, "60%" )
1825   PORT_DIPSETTING(    0x04, "55%" )
1826   PORT_DIPSETTING(    0x05, "50%" )
1827   PORT_DIPSETTING(    0x06, "45%" )
18281778   PORT_DIPSETTING(    0x07, "40%" )
1779   PORT_DIPSETTING(    0x06, "45%" )
1780   PORT_DIPSETTING(    0x05, "50%" )
1781   PORT_DIPSETTING(    0x04, "55%" )
1782   PORT_DIPSETTING(    0x03, "60%" )
1783   PORT_DIPSETTING(    0x02, "65%" )
1784   PORT_DIPSETTING(    0x01, "70%" )
1785   PORT_DIPSETTING(    0x00, "75%" )
18291786   PORT_DIPNAME( 0x18, 0x00, "Hopper Limit" )          PORT_DIPLOCATION("DSW2:4,5" )
18301787   PORT_DIPSETTING(    0x18, "300" )
18311788   PORT_DIPSETTING(    0x10, "500" )
r244893r244894
19061863   /* Game Style not checked */
19071864   /* Hopper Out Switch not checked */
19081865   /* Payout Mode not checked */
1909   /* '7' In Double Up Game not checked */
1866   /* '7' In Double Up Game OK */
19101867   /* Double Up Game Pay Rate OK */
19111868   /* Double Up Game OK */
19121869   PORT_DIPNAME( 0xc0, 0xc0, "Bet Max" )   PORT_DIPLOCATION("DSW1:7,8")    /* OK */
r244893r244894
24992456   PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN )
25002457
25012458   PORT_INCLUDE( cb3_dsw1 )
2459   PORT_MODIFY("DSW1")
25022460   /* Game Style not checked */
25032461   /* Hopper Out Switch not checked */
25042462   /* Payout Mode not checked */
2505   /* '7' In Double Up Game not checked */
2463   PORT_DIPNAME( 0x08, 0x08, DEF_STR( Unknown ) )      PORT_DIPLOCATION("DSW1:4")  /* normally '7' In Double Up Game but doesn't seem to do anything */
2464   PORT_DIPSETTING(    0x08, DEF_STR( Off ) )
2465   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
25062466   /* Double Up Game Pay Rate OK */
25072467   /* Double Up Game OK */
25082468   /* Bet Max OK */
r244893r244894
25922552   /* Game Style not checked */
25932553   /* Hopper Out Switch not checked */
25942554   /* Payout Mode not checked */
2595   /* '7' In Double Up Game not checked */
2555   /* '7' In Double Up Game OK */
25962556   /* Double Up Game Pay Rate OK */
25972557   /* Double Up Game OK */
25982558   /* Bet Max OK */
r244893r244894
26862646   PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_GAMBLE_BOOK ) PORT_NAME("Stats")
26872647
26882648   PORT_START("DSW1")
2689   PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unused ) )    PORT_DIPLOCATION("DSW1:1")
2649   PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unused ) )           PORT_DIPLOCATION("DSW1:1")
26902650   PORT_DIPSETTING(    0x01, DEF_STR( Off ) )
26912651   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
2692   PORT_DIPNAME( 0x02, 0x02, "Hopper Coin Switch" ) PORT_DIPLOCATION("DSW1:2")
2652   PORT_DIPNAME( 0x02, 0x02, "Hopper Coin Switch" )        PORT_DIPLOCATION("DSW1:2")
26932653   PORT_DIPSETTING(    0x02, "Active Low" )
26942654   PORT_DIPSETTING(    0x00, "Active High" )
2695   PORT_DIPNAME( 0x04, 0x04, "Payout Mode" )       PORT_DIPLOCATION("DSW1:3")
2655   PORT_DIPNAME( 0x04, 0x04, "Payout Mode" )               PORT_DIPLOCATION("DSW1:3")
26962656   PORT_DIPSETTING(    0x04, "Payout Switch" )
26972657   PORT_DIPSETTING(    0x00, "Automatic" )
2698   PORT_DIPNAME( 0x08, 0x00, "W-UP '7'" )          PORT_DIPLOCATION("DSW1:4")
2658   PORT_DIPNAME( 0x08, 0x00, "'7' In Double Up Game" )     PORT_DIPLOCATION("DSW1:4")      /* OK */
26992659   PORT_DIPSETTING(    0x08, "Lose" )
27002660   PORT_DIPSETTING(    0x00, "Even" )
2701   PORT_DIPNAME( 0x10, 0x10, "W-UP Pay Rate" )     PORT_DIPLOCATION("DSW1:5")  /* OK */
2661   PORT_DIPNAME( 0x10, 0x10, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")      /* OK */
27022662   PORT_DIPSETTING(    0x10, "80%" )
27032663   PORT_DIPSETTING(    0x00, "90%" )
2704   PORT_DIPNAME( 0x20, 0x20, "W-UP Game" )         PORT_DIPLOCATION("DSW1:6")
2664   PORT_DIPNAME( 0x20, 0x20, "Double Up Game" )            PORT_DIPLOCATION("DSW1:6")      /* OK */
27052665   PORT_DIPSETTING(    0x00, DEF_STR( Off ) )
27062666   PORT_DIPSETTING(    0x20, DEF_STR( On ) )
2707   PORT_DIPNAME( 0xc0, 0x00, "Special Odds" )      PORT_DIPLOCATION("DSW1:7,8")  /* doesn't seem to actually do anything - in W-4 manual but probably unused in these game */
2667   PORT_DIPNAME( 0xc0, 0x00, "Special Odds" )              PORT_DIPLOCATION("DSW1:7,8")    /* doesn't seem to actually do anything - in W-4 manual but probably unused in these game */
27082668   PORT_DIPSETTING(    0xc0, "None" )
27092669   PORT_DIPSETTING(    0x80, "Limited to X 300 (X 1000)" )
27102670   PORT_DIPSETTING(    0x40, "Limited to X 500 (X 5000)" )
27112671   PORT_DIPSETTING(    0x00, "Limited to X 1000 (X 10000)" )
27122672
27132673   PORT_START("DSW2")
2714   PORT_DIPNAME( 0x07, 0x07, "Main Game Pay Rate" )    PORT_DIPLOCATION("DSW2:1,2,3")
2674   PORT_DIPNAME( 0x07, 0x07, "Main Game Pay Rate" )        PORT_DIPLOCATION("DSW2:1,2,3")  /* OK */
27152675   PORT_DIPSETTING(    0x07, "80%" )
27162676   PORT_DIPSETTING(    0x06, "83%" )
27172677   PORT_DIPSETTING(    0x05, "86%" )
r244893r244894
27202680   PORT_DIPSETTING(    0x02, "95%" )
27212681   PORT_DIPSETTING(    0x01, "98%" )
27222682   PORT_DIPSETTING(    0x00, "101%" )  /* ??? */
2723   PORT_DIPNAME( 0x18, 0x00, "Hopper Limit" )       PORT_DIPLOCATION("DSW2:4,5")
2683   PORT_DIPNAME( 0x18, 0x00, "Hopper Limit" )              PORT_DIPLOCATION("DSW2:4,5")
27242684   PORT_DIPSETTING(    0x18, "300" )
27252685   PORT_DIPSETTING(    0x10, "500" )
27262686   PORT_DIPSETTING(    0x08, "1000" )
27272687   PORT_DIPSETTING(    0x00, "Unlimited" )
2728   PORT_DIPNAME( 0x20, 0x20, "Over 100 Bet Sound" ) PORT_DIPLOCATION("DSW2:6")
2688   PORT_DIPNAME( 0x20, 0x20, "Over 100 Bet Sound" )        PORT_DIPLOCATION("DSW2:6")
27292689   PORT_DIPSETTING(    0x20, DEF_STR( Off ) )
27302690   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
2731   PORT_DIPNAME( 0x40, 0x40, "Paytable Settings" ) PORT_DIPLOCATION("DSW2:7")
2691   PORT_DIPNAME( 0x40, 0x40, "Paytable Settings" )         PORT_DIPLOCATION("DSW2:7")
27322692   PORT_DIPSETTING(    0x40, "Low Pay" )
27332693   PORT_DIPSETTING(    0x00, "High Pay" )
2734   PORT_DIPNAME( 0x80, 0x80, "W-UP Game Type" )    PORT_DIPLOCATION("DSW2:8")
2694   PORT_DIPNAME( 0x80, 0x80, "Double Up Game Type" )       PORT_DIPLOCATION("DSW2:8")      /* OK */
27352695   PORT_DIPSETTING(    0x80, "Reels (automatic)" )
27362696   PORT_DIPSETTING(    0x00, "Cards (Big/Small)" )
27372697
r244893r244894
28152775   PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN )
28162776
28172777   PORT_MODIFY("DSW1")
2818   PORT_DIPNAME( 0x10, 0x10, "W-UP Pay Rate" )     PORT_DIPLOCATION("DSW1:5")
2778   PORT_DIPNAME( 0x10, 0x10, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")      /* OK */
28192779   PORT_DIPSETTING(    0x10, "60%" )
28202780   PORT_DIPSETTING(    0x00, "75%" )
28212781
28222782   PORT_MODIFY("DSW2")
2823   PORT_DIPNAME( 0x07, 0x07, "Main Game Pay Rate" )    PORT_DIPLOCATION("DSW2:1,2,3")
2783   PORT_DIPNAME( 0x07, 0x07, "Main Game Pay Rate" )        PORT_DIPLOCATION("DSW2:1,2,3")  /* OK */
28242784   PORT_DIPSETTING(    0x07, "58%" )
28252785   PORT_DIPSETTING(    0x06, "62%" )
28262786   PORT_DIPSETTING(    0x05, "66%" )
r244893r244894
28352795   PORT_INCLUDE( lucky8 )
28362796
28372797   PORT_MODIFY("DSW1")
2838   PORT_DIPNAME( 0x10, 0x10, "W-UP Pay Rate" )     PORT_DIPLOCATION("DSW1:5")
2798   PORT_DIPNAME( 0x10, 0x10, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")      /* OK */
28392799   PORT_DIPSETTING(    0x10, "60%" )
28402800   PORT_DIPSETTING(    0x00, "70%" )
28412801
28422802   PORT_MODIFY("DSW2")
2843   PORT_DIPNAME( 0x07, 0x07, "Main Game Pay Rate" )    PORT_DIPLOCATION("DSW2:1,2,3")
2803   PORT_DIPNAME( 0x07, 0x07, "Main Game Pay Rate" )        PORT_DIPLOCATION("DSW2:1,2,3")  /* OK */
28442804   PORT_DIPSETTING(    0x07, "43%" )
28452805   PORT_DIPSETTING(    0x06, "47%" )
28462806   PORT_DIPSETTING(    0x05, "53%" )
r244893r244894
29032863   PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_GAMBLE_BOOK ) PORT_NAME("Stats")
29042864
29052865   PORT_START("DSW1")
2906   PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unknown ) )      PORT_DIPLOCATION("DSW1:1")
2866   PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unknown ) )          PORT_DIPLOCATION("DSW1:1")
29072867   PORT_DIPSETTING(    0x01, DEF_STR( Off ) )
29082868   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
2909   PORT_DIPNAME( 0x02, 0x02, "Hopper Coin Switch" )    PORT_DIPLOCATION("DSW1:2")      /* not checked */
2869   PORT_DIPNAME( 0x02, 0x02, "Hopper Coin Switch" )        PORT_DIPLOCATION("DSW1:2")      /* not checked */
29102870   PORT_DIPSETTING(    0x02, "Active Low" )
29112871   PORT_DIPSETTING(    0x00, "Active High" )
2912   PORT_DIPNAME( 0x04, 0x04, "Payout Mode" )           PORT_DIPLOCATION("DSW1:3")      /* not checked */
2872   PORT_DIPNAME( 0x04, 0x04, "Payout Mode" )               PORT_DIPLOCATION("DSW1:3")      /* not checked */
29132873   PORT_DIPSETTING(    0x04, "Payout Switch" )
29142874   PORT_DIPSETTING(    0x00, "Automatic" )
2915   PORT_DIPNAME( 0x18, 0x18, "Double-Up Pay Rate" )    PORT_DIPLOCATION("DSW1:4,5")    /* OK */
2875   PORT_DIPNAME( 0x18, 0x18, "Double-Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:4,5")    /* OK */
29162876   PORT_DIPSETTING(    0x18, "60%" )
29172877   PORT_DIPSETTING(    0x10, "70%" )
29182878   PORT_DIPSETTING(    0x08, "80%" )
29192879   PORT_DIPSETTING(    0x00, "90%" )
2920   PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) )      PORT_DIPLOCATION("DSW1:6")
2880   PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) )          PORT_DIPLOCATION("DSW1:6")
29212881   PORT_DIPSETTING(    0x20, DEF_STR( Off ) )
29222882   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
2923   PORT_DIPNAME( 0xc0, 0x00, "Special Odds" )          PORT_DIPLOCATION("DSW1:7,8")    /* not checked */
2883   PORT_DIPNAME( 0xc0, 0x00, "Special Odds" )              PORT_DIPLOCATION("DSW1:7,8")    /* not checked */
29242884   PORT_DIPSETTING(    0xc0, "None" )
29252885   PORT_DIPSETTING(    0xb0, "Limited to x300 (x1000)" )
29262886   PORT_DIPSETTING(    0x40, "Limited to x500 (x5000)" )
r244893r244894
29322892   PORT_DIPSETTING(    0x02, "70%" )
29332893   PORT_DIPSETTING(    0x01, "80%" )
29342894   PORT_DIPSETTING(    0x00, "90%" )
2935   PORT_DIPNAME( 0x04, 0x04, "Double-Up Game" )        PORT_DIPLOCATION("DSW2:3")      /* OK */
2936   PORT_DIPSETTING(    0x00, DEF_STR( No ) )
2937   PORT_DIPSETTING(    0x04, DEF_STR( Yes ) )
2895   PORT_DIPNAME( 0x04, 0x04, "Double Up Game" )        PORT_DIPLOCATION("DSW2:3")      /* OK */
2896   PORT_DIPSETTING(    0x00, DEF_STR( Off ) )
2897   PORT_DIPSETTING(    0x04, DEF_STR( On ) )
29382898   PORT_DIPNAME( 0x18, 0x00, "Hopper Limit" )          PORT_DIPLOCATION("DSW2:4,5")    /* not checked */
29392899   PORT_DIPSETTING(    0x18, "300" )
29402900   PORT_DIPSETTING(    0x10, "500" )
r244893r244894
32753235   PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unknown ) )  PORT_DIPLOCATION("DSW1:1")
32763236   PORT_DIPSETTING(    0x01, DEF_STR( Off ) )
32773237   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
3278   PORT_DIPNAME( 0x02, 0x02, DEF_STR( Unknown ) )  PORT_DIPLOCATION("DSW1:2")
3238   PORT_DIPNAME( 0x02, 0x02, DEF_STR( Unknown ) )      PORT_DIPLOCATION("DSW1:2")
32793239   PORT_DIPSETTING(    0x02, DEF_STR( Off ) )
32803240   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
3281   PORT_DIPNAME( 0x04, 0x04, DEF_STR( Unknown ) )  PORT_DIPLOCATION("DSW1:3")
3241   PORT_DIPNAME( 0x04, 0x04, DEF_STR( Unknown ) )      PORT_DIPLOCATION("DSW1:3")
32823242   PORT_DIPSETTING(    0x04, DEF_STR( Off ) )
32833243   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
3284   PORT_DIPNAME( 0x08, 0x08, DEF_STR( Unknown ) )  PORT_DIPLOCATION("DSW1:4")
3244   PORT_DIPNAME( 0x08, 0x08, DEF_STR( Unknown ) )      PORT_DIPLOCATION("DSW1:4")
32853245   PORT_DIPSETTING(    0x08, DEF_STR( Off ) )
32863246   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
3287   PORT_DIPNAME( 0x10, 0x10, DEF_STR( Unknown ) )  PORT_DIPLOCATION("DSW1:5")
3247   PORT_DIPNAME( 0x10, 0x10, DEF_STR( Unknown ) )      PORT_DIPLOCATION("DSW1:5")
32883248   PORT_DIPSETTING(    0x10, DEF_STR( Off ) )
32893249   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
3290   PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) )  PORT_DIPLOCATION("DSW1:6")
3250   PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) )      PORT_DIPLOCATION("DSW1:6")
32913251   PORT_DIPSETTING(    0x20, DEF_STR( Off ) )
32923252   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
3293   PORT_DIPNAME( 0x40, 0x40, DEF_STR( Unknown ) )  PORT_DIPLOCATION("DSW1:7")
3253   PORT_DIPNAME( 0x40, 0x40, DEF_STR( Unknown ) )      PORT_DIPLOCATION("DSW1:7")
32943254   PORT_DIPSETTING(    0x40, DEF_STR( Off ) )
32953255   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
3296   PORT_DIPNAME( 0x80, 0x00, "W-UP Type" )         PORT_DIPLOCATION("DSW1:8")
3256   PORT_DIPNAME( 0x80, 0x00, "Double Up Game Type" )   PORT_DIPLOCATION("DSW1:8")
32973257   PORT_DIPSETTING(    0x80, "Reels (automatic)" ) /* Fix me - reel graphics do not show in game */
32983258   PORT_DIPSETTING(    0x00, "Flowers (Big/Small)" )
32993259INPUT_PORTS_END
r244893r244894
33503310   PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_GAMBLE_BOOK ) PORT_NAME("Stats")
33513311
33523312   PORT_START("DSW1")
3353   PORT_DIPNAME( 0x01, 0x01, "Cabinet Style" )     PORT_DIPLOCATION("DSW1:1")      /* not checked */
3313   PORT_DIPNAME( 0x01, 0x01, "Cabinet Style" )             PORT_DIPLOCATION("DSW1:1")      /* not checked */
33543314   PORT_DIPSETTING(    0x00, "Cocktail" )
33553315   PORT_DIPSETTING(    0x01, "Upright" )
3356   PORT_DIPNAME( 0x02, 0x02, "Hopper Coin Switch") PORT_DIPLOCATION("DSW1:2")      /* not checked */
3316   PORT_DIPNAME( 0x02, 0x02, "Hopper Coin Switch")         PORT_DIPLOCATION("DSW1:2")      /* not checked */
33573317   PORT_DIPSETTING(    0x00, "Active Low" )
33583318   PORT_DIPSETTING(    0x02, "Active High" )
3359   PORT_DIPNAME( 0x04, 0x04, "Payout Type" )       PORT_DIPLOCATION("DSW1:3")      /* not checked */
3319   PORT_DIPNAME( 0x04, 0x04, "Payout Type" )               PORT_DIPLOCATION("DSW1:3")      /* not checked */
33603320   PORT_DIPSETTING(    0x04, "Take Button" )
33613321   PORT_DIPSETTING(    0x00, "Automatic" )
3362   PORT_DIPNAME( 0x18, 0x18, "W-UP Pay Rate" )     PORT_DIPLOCATION("DSW1:4,5")    /* OK */
3322   PORT_DIPNAME( 0x18, 0x18, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:4,5")    /* OK */
33633323   PORT_DIPSETTING(    0x18, "75%" )
33643324   PORT_DIPSETTING(    0x10, "80%" )
33653325   PORT_DIPSETTING(    0x08, "85%" )
33663326   PORT_DIPSETTING(    0x00, "90%" )
3367   PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) )  PORT_DIPLOCATION("DSW1:6")
3327   PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) )          PORT_DIPLOCATION("DSW1:6")
33683328   PORT_DIPSETTING(    0x20, DEF_STR( Off ) )
33693329   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
3370   PORT_DIPNAME( 0x40, 0x40, DEF_STR( Unknown ) )  PORT_DIPLOCATION("DSW1:7")
3330   PORT_DIPNAME( 0x40, 0x40, DEF_STR( Unknown ) )          PORT_DIPLOCATION("DSW1:7")
33713331   PORT_DIPSETTING(    0x40, DEF_STR( Off ) )
33723332   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
3373   PORT_DIPNAME( 0x80, 0x80, DEF_STR( Unknown ) )  PORT_DIPLOCATION("DSW1:8")
3333   PORT_DIPNAME( 0x80, 0x80, DEF_STR( Unknown ) )          PORT_DIPLOCATION("DSW1:8")
33743334   PORT_DIPSETTING(    0x80, DEF_STR( Off ) )
33753335   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
33763336/*   On a W-4 PCB these are used as: "Special Odds-Prohibition Of Winning...(Odds B)" - see DSW2-7
3377   PORT_DIPNAME( 0x80, 0x00, "Special Odds" )      PORT_DIPLOCATION("DSW1:7,8")
3337   PORT_DIPNAME( 0x80, 0x00, "Special Odds" )              PORT_DIPLOCATION("DSW1:7,8")
33783338   PORT_DIPSETTING(    0x00, "None" )
33793339   PORT_DIPSETTING(    0x40, "x300 (x1000)" )
33803340   PORT_DIPSETTING(    0x80, "x500 (x5000" )
r244893r244894
33873347   PORT_DIPSETTING(    0x02, "Easy" )
33883348   PORT_DIPSETTING(    0x01, "Hard" )
33893349   PORT_DIPSETTING(    0x00, "Very Hard" )
3390   PORT_DIPNAME( 0x04, 0x00, "W-Up Game" )             PORT_DIPLOCATION("DSW2:3")      /* OK */
3350   PORT_DIPNAME( 0x04, 0x00, "Double Up Game" )        PORT_DIPLOCATION("DSW2:3")      /* OK */
33913351   PORT_DIPSETTING(    0x00, DEF_STR( Off ) )
33923352   PORT_DIPSETTING(    0x04, DEF_STR( On ) )
33933353   PORT_DIPNAME( 0x18, 0x18, "Hopper Limit" )          PORT_DIPLOCATION("DSW2:4,5")    /* not checked */
r244893r244894
36983658   PORT_DIPSETTING(    0xc0, "24" )
36993659
37003660   PORT_START("DSW2")
3701   PORT_DIPNAME( 0x01, 0x01, "Double-Up Game" )            PORT_DIPLOCATION("DSW2:1")  /* OK */
3661   PORT_DIPNAME( 0x01, 0x01, "Double Up Game" )            PORT_DIPLOCATION("DSW2:1")  /* OK */
37023662   PORT_DIPSETTING(    0x00, DEF_STR( No ) )
37033663   PORT_DIPSETTING(    0x01, DEF_STR( Yes ) )
37043664   PORT_DIPNAME( 0x02, 0x02, "Skill Spinning" )            PORT_DIPLOCATION("DSW2:2")  /* OK (listed as Non-Stop spinning in the manual) */
r244893r244894
38783838   PORT_DIPSETTING(    0xc0, "32" )    PORT_CONDITION("DSW5",0x10,EQUALS,0x10)
38793839
38803840   PORT_START("DSW2")
3881   PORT_DIPNAME( 0x01, 0x01, "Double-Up Game" )            PORT_DIPLOCATION("DSW2:1")  /* OK */
3841   PORT_DIPNAME( 0x01, 0x01, "Double Up Game" )            PORT_DIPLOCATION("DSW2:1")  /* OK */
38823842   PORT_DIPSETTING(    0x00, DEF_STR( No ) )
38833843   PORT_DIPSETTING(    0x01, DEF_STR( Yes ) )
38843844   PORT_DIPNAME( 0x02, 0x02, "Skill Spinning" )            PORT_DIPLOCATION("DSW2:2")  /* OK (listed as Non-Stop spinning in the manual) */
r244893r244894
40514011   PORT_DIPSETTING(    0xc0, "32" )
40524012
40534013   PORT_START("DSW2")
4054   PORT_DIPNAME( 0x01, 0x01, "Double-Up Game" )            PORT_DIPLOCATION("DSW2:1")  /* OK */
4014   PORT_DIPNAME( 0x01, 0x01, "Double Up Game" )            PORT_DIPLOCATION("DSW2:1")  /* OK */
40554015   PORT_DIPSETTING(    0x00, DEF_STR( No ) )
40564016   PORT_DIPSETTING(    0x01, DEF_STR( Yes ) )
40574017   PORT_DIPNAME( 0x02, 0x02, "Skill Spinning" )            PORT_DIPLOCATION("DSW2:2")  /* OK (listed as Non-Stop spinning in the manual) */
r244893r244894
42214181   PORT_DIPSETTING(    0xc0, "32" )
42224182
42234183   PORT_START("DSW2")
4224   PORT_DIPNAME( 0x01, 0x01, "Double-Up Game" )            PORT_DIPLOCATION("DSW2:1")  /* OK */
4184   PORT_DIPNAME( 0x01, 0x01, "Double Up Game" )            PORT_DIPLOCATION("DSW2:1")  /* OK */
42254185   PORT_DIPSETTING(    0x00, DEF_STR( No ) )
42264186   PORT_DIPSETTING(    0x01, DEF_STR( Yes ) )
42274187   PORT_DIPNAME( 0x02, 0x00, "Use Printer" )               PORT_DIPLOCATION("DSW2:2")
r244893r244894
59225882   PORT_DIPNAME( 0x04, 0x00, "Coin Out Rate" )             PORT_DIPLOCATION("DSW1:3")      /* OK */
59235883   PORT_DIPSETTING(    0x04, "1" )
59245884   PORT_DIPSETTING(    0x00, "10" )
5925   PORT_DIPNAME( 0x08, 0x00, DEF_STR( Unknown ) )          PORT_DIPLOCATION("DSW1:4")
5926   PORT_DIPSETTING(    0x08, DEF_STR( Off ) )
5927   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
5885   PORT_DIPNAME( 0x08, 0x00, "'7' In Double Up Game" )     PORT_DIPLOCATION("DSW1:4")      /* OK */
5886   PORT_DIPSETTING(    0x08, "Even" )
5887   PORT_DIPSETTING(    0x00, "Win" )
59285888   PORT_DIPNAME( 0x10, 0x00, "Double Up Game Pay Rate" )   PORT_DIPLOCATION("DSW1:5")      /* OK */
59295889   PORT_DIPSETTING(    0x10, "80%" )
59305890   PORT_DIPSETTING(    0x00, "90%" )


Previous 199869 Revisions Next


© 1997-2024 The MAME Team