| Previous | 199869 Revisions | Next |
| r25454 Sunday 29th September, 2013 at 03:20:11 UTC by Brian Troha |
|---|
| new clones / sets added peplus.c: Huge update of information, clones and new games. [BrianT] New Games Added ----------------------------------- Player's Edge Plus (Set001) Set Chip [BrianT, Kevin, Jim] Player's Edge Plus (PP0103) Deuces Wild Poker [BrianT, Kevin, Jim] Player's Edge Plus (PP0127) Deuces Joker Wild Poker [BrianT, Kevin, Jim] Player's Edge Plus (PP0434) Bonus Poker Deluxe [BrianT, Kevin, Jim] Player's Edge Plus (PP0452) Double Deuces Wild Poker [BrianT, Kevin, Jim] Player's Edge Plus (PP0508) Loose Deuce Deuces Wild! Poker [BrianT, Kevin, Jim] Player's Edge Plus (PP0542) One Eyed Jacks Wild Poker [BrianT, Kevin, Jim] Player's Edge Plus (X002031P+XP000112) Lucky Deal Poker [BrianT, Kevin, Jim] Player's Edge Plus (X002040P+XP000038) Nevada Bonus Poker [BrianT, Kevin, Jim] Player's Edge Plus (X002042P+XP000038) Triple Bonus Poker [BrianT, Kevin, Jim] Player's Edge Plus (X002067P+XP000038) Double Double Bonus Poker [BrianT, Kevin, Jim] Player's Edge Plus (X002250P+XP000050) Shockwave Poker [BrianT, Kevin, Jim] Player's Edge Plus (X002307P+XP000112) Triple Double Bonus Poker [BrianT, Kevin, Jim] Player's Edge Plus (X002314P+XP000112) Triple Bonus Poker Plus [BrianT, Kevin, Jim] Player's Edge Plus (XMP00002+XM00004P) Multi-Poker [BrianT, Kevin, Jim] Player's Edge Plus (XMP00004+XM00005P) Multi-Poker [BrianT, Kevin, Jim] New Clones Added ------------------------------------------- Various Player's Edge Plus Poker sets (90+) [BrianT, Kevin, Jim] |
| [src/mame] | mame.lst |
| [src/mame/drivers] | peplus.c |
| r25453 | r25454 | |
|---|---|---|
| 130 | 130 | |
| 131 | 131 | |
| 132 | 132 | Stephh's log (2007.11.28) : |
| 133 | - split old peplus.c to peplus.c and pe_drvr.c (same as it was done for the NEOGEO) | |
| 134 | 133 | - Renamed sets : |
| 135 | 134 | * 'peplus' -> 'pepp0516' (so we get the game ID as for the other games) |
| 136 | 135 | - added MACHINE_RESET definition (needed for fake "Enable Autohold Feature" configuration) |
| r25453 | r25454 | |
| 144 | 143 | * added one fake layout |
| 145 | 144 | * added one fake INPUT_PORT definition |
| 146 | 145 | |
| 146 | ****************************************************************************************************************** | |
| 147 | ||
| 148 | Board type with program type | |
| 149 | ||
| 150 | Standard PE+ | |
| 151 | Program Types: | |
| 152 | BEnnnn Black Jack / 21 games | |
| 153 | KEnnnn Keno | |
| 154 | PPnnnn Poker games. Several different types of poker require specific CG graphics + CAP color prom | |
| 155 | PSnnnn Slot games. Each slot game requires specific CG graphics + CAP color prom | |
| 156 | ||
| 157 | Super PE+ | |
| 158 | Program Types | |
| 159 | XPnnnnnn Poker Programs. Different options for each set, but all use the same XnnnnnnP data roms | |
| 160 | XnnnnnnP Poker Data. Contains poker game + paytable percentages | |
| 161 | Data roms will not work with every Program rom. Incompatible combos report: Incompatible Data EPROM | |
| 162 | X000055P is a good example, it works with 19 XP000xxx Program roms. Other may be as few as 2. | |
| 163 | XMPnnnnn Multi-Poker Programs. Different options for each set, but all use the same XMnnnnnP data roms | |
| 164 | XMP00002 through XMP00006 & XMP00024 Use the XM00000P Poker Data | |
| 165 | XMP00014 & XMP00017 Use the WING Board add-on and use the XnnnnnnP Poker Data (Not all are compatible!) | |
| 166 | XMnnnnnP Poker Data. Contains poker game + paytable percentages: Requires specific CG graphics + CAP color prom | |
| 167 | XKnnnnnn Spot Keno Programs. Different options for each set, but all use the same XnnnnnnK data roms | |
| 168 | XnnnnnnK Spot Keno Data. Uses CG2120 with CAP1267 | |
| 169 | XSnnnnnn Slot Programs. Different options for each set, but all use the same XnnnnnnS data roms | |
| 170 | XnnnnnnT Slot Program. For Slant (table top) machines?? | |
| 171 | XnnnnnnS Slot Data. Each set requires specific CG graphics + CAP color prom | |
| 172 | ||
| 173 | The CG graphics + CAP color proms along with which program sets they belong to is a closely guarded secret by IGT. | |
| 174 | The only public information is from collectors who document and share such information. | |
| 175 | ||
| 176 | NOTE: Do NOT use the CG+CAP combos listed below as THE definitive absolute reference. There are other combos that | |
| 177 | worked to produce correct card graphics plus paytable information for some sets. So the combos listed below | |
| 178 | are not the "official" combo and a better or more correct combo may exsist. | |
| 179 | ||
| 147 | 180 | ***********************************************************************************/ |
| 148 | 181 | |
| 149 | 182 | #include "emu.h" |
| r25453 | r25454 | |
| 1424 | 1457 | * Rom Load * |
| 1425 | 1458 | *************************/ |
| 1426 | 1459 | |
| 1460 | ROM_START( peset001 ) /* Normal board : Set Chip (Set001) - Use for PP0542 */ | |
| 1461 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1462 | ROM_LOAD( "set001.u68", 0x00000, 0x10000, CRC(03397ced) SHA1(89d8ba7e6706e6d34ae9aae09a8a631fff06a36f) ) | |
| 1463 | ||
| 1464 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1465 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 1466 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 1467 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 1468 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 1469 | ||
| 1470 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1471 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1472 | ROM_END | |
| 1473 | ||
| 1427 | 1474 | ROM_START( peset038 ) /* Normal board : Set Chip (Set038) */ |
| 1428 | 1475 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1429 | 1476 | ROM_LOAD( "set038.u68", 0x00000, 0x10000, CRC(9c4b1d1a) SHA1(8a65cd1d8e2d74c7b66f4dfc73e7afca8458e979) ) |
| r25453 | r25454 | |
| 1439 | 1486 | ROM_END |
| 1440 | 1487 | |
| 1441 | 1488 | ROM_START( pepp0043 ) /* Normal board : 10's or Better (PP0043) */ |
| 1442 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1443 | ROM_LOAD( "pp0043.u68", 0x00000, 0x10000, CRC(04051a88) SHA1(e7a9ec2ab7f6f575245d47ee10a03f39c887d1b3) ) | |
| 1444 | 1489 | /* |
| 1445 | 1490 | PayTable 10s+ 2PR 3K STR FL FH 4K SF RF (Bonus) |
| 1446 | 1491 | ---------------------------------------------------------- |
| r25453 | r25454 | |
| 1448 | 1493 | % Range: 87.2-89.2% Optimum: 91.2% Hit Frequency: 49.1% |
| 1449 | 1494 | Programs Available: PP0043 |
| 1450 | 1495 | */ |
| 1496 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1497 | ROM_LOAD( "pp0043_a45-a75.u68", 0x00000, 0x10000, CRC(04051a88) SHA1(e7a9ec2ab7f6f575245d47ee10a03f39c887d1b3) ) /* Game Version: A45, Library Version: A74 */ | |
| 1451 | 1498 | |
| 1452 | 1499 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1453 | ROM_LOAD( "mro-cg2004.u72", 0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /* Some references show CG740 roms here */ | |
| 1454 | ROM_LOAD( "mgo-cg2004.u73", 0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) ) | |
| 1455 | ROM_LOAD( "mbo-cg2004.u74", 0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) | |
| 1456 | ROM_LOAD( "mxo-cg2004.u75", 0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) ) | |
| 1500 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 1501 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 1502 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 1503 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 1457 | 1504 | |
| 1458 | 1505 | ROM_REGION( 0x200, "proms", 0 ) |
| 1459 | 1506 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) |
| 1460 | 1507 | ROM_END |
| 1461 | 1508 | |
| 1509 | ROM_START( pepp0055 ) /* Normal board : Deuces Wild Poker (PP0055) */ | |
| 1510 | /* | |
| 1511 | w/D w/oD | |
| 1512 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 1513 | ---------------------------------------------------------- | |
| 1514 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 1515 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 1516 | Programs Available: PP0055, X000055P, PP0723 | |
| 1517 | */ | |
| 1518 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1519 | ROM_LOAD( "pp0055_961-984.u68", 0x00000, 0x10000, CRC(c6b897cc) SHA1(9ba200652db58e602f388c21aaf9b3f837412385) ) /* Game Version: 961, Library Version: 984 */ | |
| 1520 | ||
| 1521 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1522 | ROM_LOAD( "mro-cg1215.u72", 0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) | |
| 1523 | ROM_LOAD( "mgo-cg1215.u73", 0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) ) | |
| 1524 | ROM_LOAD( "mbo-cg1215.u74", 0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) ) | |
| 1525 | ROM_LOAD( "mxo-cg1215.u75", 0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) ) | |
| 1526 | ||
| 1527 | ROM_REGION( 0x100, "proms", 0 ) | |
| 1528 | ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) ) | |
| 1529 | ROM_END | |
| 1530 | ||
| 1462 | 1531 | ROM_START( pepp0065 ) /* Normal board : Jokers Wild Poker (PP0065) */ |
| 1463 | 1532 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1464 | ROM_LOAD( "pp0065.u68", 0x00000, 0x10000, CRC(76c1a367) SHA1(ea8be9241e9925b5a4206db6875e1572f85fa5fe) ) | |
| 1533 | ROM_LOAD( "pp0065_944-a00.u68", 0x00000, 0x10000, CRC(76c1a367) SHA1(ea8be9241e9925b5a4206db6875e1572f85fa5fe) ) /* Game Version: 944, Library Version: A00 */ | |
| 1465 | 1534 | |
| 1466 | 1535 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1467 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 1536 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 1468 | 1537 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) |
| 1469 | 1538 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) |
| 1470 | 1539 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) |
| 1471 | 1540 | |
| 1472 | 1541 | ROM_REGION( 0x200, "proms", 0 ) |
| 1473 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1542 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1474 | 1543 | ROM_END |
| 1475 | 1544 | |
| 1476 | ROM_START( pepp01 | |
| 1545 | ROM_START( pepp0103 ) /* Normal board : Deuces Wild Poker 1-100 Coin (PP0103) */ | |
| 1477 | 1546 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1478 | ROM_LOAD( "pp0158.u68", 0x00000, 0x10000, CRC(5976cd19) SHA1(6a461ea9ddf78dffa3cf8b65903ebf3127f23d45) ) | |
| 1547 | ROM_LOAD( "pp0103_600-550.u68", 0x00000, 0x10000, CRC(ba8bb1bf) SHA1(e6f13dd8922696f7ff94dce33fba8dc5bafa9bc6) ) /* Game Version: 600, Library Version: 550, Video Lib Ver: 550 */ | |
| 1548 | ||
| 1549 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1550 | ROM_LOAD( "mro-cg773.u72", 0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) ) | |
| 1551 | ROM_LOAD( "mgo-cg773.u73", 0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) ) | |
| 1552 | ROM_LOAD( "mbo-cg773.u74", 0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) ) | |
| 1553 | ROM_LOAD( "mxo-cg773.u75", 0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) ) | |
| 1554 | ||
| 1555 | ROM_REGION( 0x100, "proms", 0 ) | |
| 1556 | ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(0b496da9) SHA1(612363cb78f2ab5e100ca4bd0bfae6f7c3f80381) ) | |
| 1557 | ROM_END | |
| 1558 | ||
| 1559 | ROM_START( pepp0126 ) /* Normal board : Deuces Wild Poker (PP0126) */ | |
| 1479 | 1560 | /* |
| 1561 | w/D w/oD | |
| 1562 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 1563 | ---------------------------------------------------------- | |
| 1564 | P63A 1 2 2 3 5 9 12 20 200 250 800 | |
| 1565 | % Range: 94.9-96.9% Optimum: 98.9% Hit Frequency: 45.4% | |
| 1566 | Programs Available: PP0126, X000126P | |
| 1567 | */ | |
| 1568 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1569 | ROM_LOAD( "pp0126_961-984.u68", 0x00000, 0x10000, CRC(aadb62ef) SHA1(85979d5932ef254241c363414c2093cc943e88a5) ) /* Game Version: 961, Library Version: 984 */ | |
| 1570 | ||
| 1571 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1572 | ROM_LOAD( "mro-cg1215.u72", 0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) | |
| 1573 | ROM_LOAD( "mgo-cg1215.u73", 0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) ) | |
| 1574 | ROM_LOAD( "mbo-cg1215.u74", 0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) ) | |
| 1575 | ROM_LOAD( "mxo-cg1215.u75", 0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) ) | |
| 1576 | ||
| 1577 | ROM_REGION( 0x100, "proms", 0 ) | |
| 1578 | ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) ) | |
| 1579 | ROM_END | |
| 1580 | ||
| 1581 | ROM_START( pepp0127 ) /* Normal board : Deuces Joker Wild Poker (PP0127) */ | |
| 1582 | /* | |
| 1583 | With w/o w/o With | |
| 1584 | Wild JKR Wild JKR | |
| 1585 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF 4D (Bonus) | |
| 1586 | -------------------------------------------------------------------- | |
| 1587 | P65N 1 2 3 3 3 6 9 12 25 250 1000 2000 | |
| 1588 | % Range: 95.1-97.1% Optimum: 99.1% Hit Frequency: 50.4% | |
| 1589 | Programs Available: PP0127 | |
| 1590 | */ | |
| 1591 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1592 | ROM_LOAD( "pp0127_a47-a76.u68", 0x00000, 0x10000, CRC(2997aaac) SHA1(b52525154f4ae39a341ecf829c33449f31a8ce07) ) /* Game Version: A47, Library Version: A76 */ | |
| 1593 | ||
| 1594 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1595 | ROM_LOAD( "mro-cg1215.u72", 0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) | |
| 1596 | ROM_LOAD( "mgo-cg1215.u73", 0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) ) | |
| 1597 | ROM_LOAD( "mbo-cg1215.u74", 0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) ) | |
| 1598 | ROM_LOAD( "mxo-cg1215.u75", 0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) ) | |
| 1599 | ||
| 1600 | ROM_REGION( 0x100, "proms", 0 ) | |
| 1601 | ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) ) | |
| 1602 | ROM_END | |
| 1603 | ||
| 1604 | ROM_START( pepp0158 ) /* Normal board : 4 of a Kind Bonus Poker (PP0158) */ | |
| 1605 | /* | |
| 1480 | 1606 | 5-K 2-4 |
| 1481 | 1607 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) |
| 1482 | 1608 | ----------------------------------------------------------------- |
| 1483 | 1609 | P77A 1 2 3 4 5 8 25 40 80 50 250 800 |
| 1484 | % Range: 95.-97.2% Optimum: 99.2% Hit Frequency: 45.5% | |
| 1610 | % Range: 95.2-97.2% Optimum: 99.2% Hit Frequency: 45.5% | |
| 1485 | 1611 | Programs Available: PP0158, X000158P |
| 1486 | 1612 | */ |
| 1613 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1614 | ROM_LOAD( "pp0158_a46-a75.u68", 0x00000, 0x10000, CRC(5976cd19) SHA1(6a461ea9ddf78dffa3cf8b65903ebf3127f23d45) ) /* Game Version: A46, Library Version: A75, Video Lib ver A0Y */ | |
| 1487 | 1615 | |
| 1488 | 1616 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1617 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 1618 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 1619 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 1620 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 1621 | ||
| 1622 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1623 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1624 | ROM_END | |
| 1625 | ||
| 1626 | ROM_START( pepp0178 ) /* Normal board : Joker Poker 1-100 Coins (PP0178) */ | |
| 1627 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1628 | ROM_LOAD( "pp0178_645-627.u68", 0x00000, 0x10000, CRC(96cb3b13) SHA1(d8b0621e48b20142d25bf81d07d6716d9858f33e) ) /* Game Version: 645, Library Version: 627 */ | |
| 1629 | ||
| 1630 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1631 | ROM_LOAD( "mro-cg1219.u72", 0x00000, 0x8000, CRC(159e2fc2) SHA1(3437ece23de9083dff2516252e3eb6971a9c6d4a) ) /* WRONG!!! */ | |
| 1632 | ROM_LOAD( "mgo-cg1219.u73", 0x08000, 0x8000, CRC(f109a9b6) SHA1(62de57da6fc5fc1d32cbe393369b49ca578efa5f) ) | |
| 1633 | ROM_LOAD( "mbo-cg1219.u74", 0x10000, 0x8000, CRC(98b08cc0) SHA1(50d4e67db9bb27f254f088b4ec5303e04b2c18e7) ) | |
| 1634 | ROM_LOAD( "mxo-cg1219.u75", 0x18000, 0x8000, CRC(bcbeea5f) SHA1(e042171177c5c05aa2e9edef9ac7613850c777f2) ) | |
| 1635 | ||
| 1636 | ROM_REGION( 0x100, "proms", 0 ) | |
| 1637 | ROM_LOAD( "cap953.u50", 0x0000, 0x0100, CRC(6ece50ad) SHA1(bc5761303b09625850ba50263607d11871ea3ed3) ) /* WRONG!!! */ | |
| 1638 | ROM_END | |
| 1639 | ||
| 1640 | ROM_START( pepp0188 ) /* Normal board : Standard Draw Poker (PP0188) */ | |
| 1641 | /* | |
| 1642 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 1643 | ---------------------------------------------------------- | |
| 1644 | P40A 1 2 3 4 6 9 15 40 250 800 | |
| 1645 | % Range: 86.5-88.5% Optimum: 92.5% Hit Frequency: 45.5% | |
| 1646 | Programs Available: PP0188 | |
| 1647 | */ | |
| 1648 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1649 | ROM_LOAD( "pp0188_986-a0u.u68", 0x00000, 0x10000, CRC(cf36a53c) SHA1(99b578538ab24d9ff91971b1f77599272d1dbfc6) ) /* Game Version: 986, Library Version: A0U */ | |
| 1650 | ||
| 1651 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1489 | 1652 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) |
| 1490 | 1653 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) |
| 1491 | 1654 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) |
| r25453 | r25454 | |
| 1495 | 1658 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) |
| 1496 | 1659 | ROM_END |
| 1497 | 1660 | |
| 1498 | ROM_START( pepp0188 ) /* Normal board : Standard Draw Poker (PP0188) */ | |
| 1499 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1500 | ROM_LOAD( "pp0188.u68", 0x00000, 0x10000, CRC(cf36a53c) SHA1(99b578538ab24d9ff91971b1f77599272d1dbfc6) ) | |
| 1661 | ROM_START( pepp0188a ) /* Normal board : Standard Draw Poker (PP0188) */ | |
| 1501 | 1662 | /* |
| 1502 | 1663 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) |
| 1503 | 1664 | ---------------------------------------------------------- |
| r25453 | r25454 | |
| 1505 | 1666 | % Range: 86.5-88.5% Optimum: 92.5% Hit Frequency: 45.5% |
| 1506 | 1667 | Programs Available: PP0188 |
| 1507 | 1668 | */ |
| 1669 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1670 | ROM_LOAD( "pp0188_a66-a8h.u68", 0x00000, 0x10000, CRC(72740894) SHA1(5b7109b6cbe67e0a951fd48b4daf09875abb75fc) ) /* Game Version: A66, Library Version: A8H */ | |
| 1508 | 1671 | |
| 1509 | 1672 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1510 | 1673 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) |
| r25453 | r25454 | |
| 1516 | 1679 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) |
| 1517 | 1680 | ROM_END |
| 1518 | 1681 | |
| 1682 | ROM_START( pepp0190 ) /* Normal board : Deuces Wild Poker - System Progressive/Non Progressive (No Double-up) (PP0190) */ | |
| 1683 | /* | |
| 1684 | w/D w/oD | |
| 1685 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 1686 | ---------------------------------------------------------- | |
| 1687 | P57A 1 2 3 4 4 8 10 20 200 250 800 | |
| 1688 | % Range: 92.0-94.0% Optimum: 96.0% Hit Frequency: 44.5% | |
| 1689 | Programs Available: PP0417, X000417P & PP0190 - Non Double-up Only | |
| 1690 | */ | |
| 1691 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1692 | ROM_LOAD( "pp0190_642-623.u68", 0x00000, 0x10000, CRC(3b8a3203) SHA1(33bd285def754df34f4815cd713e2ff599c74f11) ) /* Game Version: 642, Library Version: 623 */ | |
| 1693 | ||
| 1694 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1695 | ROM_LOAD( "mro-cg773.u72", 0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) ) /* Should be MxO-CG2023.U7x & CAP773 (or CAP2023)?? */ | |
| 1696 | ROM_LOAD( "mgo-cg773.u73", 0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) ) | |
| 1697 | ROM_LOAD( "mbo-cg773.u74", 0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) ) | |
| 1698 | ROM_LOAD( "mxo-cg773.u75", 0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) ) | |
| 1699 | ||
| 1700 | ROM_REGION( 0x100, "proms", 0 ) | |
| 1701 | ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(0b496da9) SHA1(612363cb78f2ab5e100ca4bd0bfae6f7c3f80381) ) | |
| 1702 | ROM_END | |
| 1703 | ||
| 1704 | ROM_START( pepp0197 ) /* Normal board : Standard Draw Poker (Auto Hold in options) (PP0197) */ | |
| 1705 | /* | |
| 1706 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 1707 | ---------------------------------------------------------- | |
| 1708 | BA 1 2 3 4 5 8 25 50 250 1000 | |
| 1709 | % Range: 93.8-95.8% Optimum: 97.8% Hit Frequency: 45.3% | |
| 1710 | Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only | |
| 1711 | */ | |
| 1712 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1713 | ROM_LOAD( "pp0197_689-654.u68", 0x00000, 0x10000, CRC(84a2fbde) SHA1(0515f2693d388e29cdf0de4d29708250c671e0a4) ) /* Game Version: 689, Library Version: 654 */ | |
| 1714 | ||
| 1715 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1716 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 1717 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 1718 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 1719 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 1720 | ||
| 1721 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1722 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1723 | ROM_END | |
| 1724 | ||
| 1725 | ROM_START( pepp0203 ) /* Normal board : 4 of a Kind Bonus Poker (PP0203) */ | |
| 1726 | /* | |
| 1727 | 5-K 2-4 | |
| 1728 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 1729 | ----------------------------------------------------------------- | |
| 1730 | P90A 1 2 3 4 5 7 25 40 80 50 250 800 | |
| 1731 | % Range: 94.0-96.0% Optimum: 98.0% Hit Frequency: 45.5% | |
| 1732 | Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only | |
| 1733 | */ | |
| 1734 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1735 | ROM_LOAD( "pp0203_813-824.u68", 0x00000, 0x10000, CRC(49ea6fb9) SHA1(ca595e30d786d28397eeef10786a811af1a5c74d) ) /* Game Version: 813, Library Version: 824 */ | |
| 1736 | ||
| 1737 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1738 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 1739 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 1740 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 1741 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 1742 | ||
| 1743 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1744 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1745 | ROM_END | |
| 1746 | ||
| 1747 | ROM_START( pepp0203a ) /* Normal board : 4 of a Kind Bonus Poker (PP0203) */ | |
| 1748 | /* | |
| 1749 | 5-K 2-4 | |
| 1750 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 1751 | ----------------------------------------------------------------- | |
| 1752 | P90A 1 2 3 4 5 7 25 40 80 50 250 800 | |
| 1753 | % Range: 94.0-96.0% Optimum: 98.0% Hit Frequency: 45.5% | |
| 1754 | Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only | |
| 1755 | */ | |
| 1756 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1757 | ROM_LOAD( "pp0203_a46-a75.u68", 0x00000, 0x10000, CRC(2955eeb5) SHA1(ac2483dbb92de84ab64d0d7e55acff196966ea1b) ) /* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */ | |
| 1758 | ||
| 1759 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1760 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 1761 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 1762 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 1763 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 1764 | ||
| 1765 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1766 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1767 | ROM_END | |
| 1768 | ||
| 1769 | ROM_START( pepp0221 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0221) */ | |
| 1770 | /* | |
| 1771 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 1772 | ---------------------------------------------------------- | |
| 1773 | P11A 1 2 3 4 5 9 25 50 250 800 | |
| 1774 | % Range: 92.1-94.1% Optimum: 96.1% Hit Frequency: 45.5% | |
| 1775 | Programs Available: PP0449, X000449P & PP0221 - Non Double-up Only | |
| 1776 | */ | |
| 1777 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1778 | ROM_LOAD( "pp0221_979_a0c.u68", 0x00000, 0x10000, CRC(c45fb8f1) SHA1(fba8dce2954beb168624ba94b2a4fdd3b260da46) ) /* Game Version: 979, Library Version: A0C */ | |
| 1779 | ||
| 1780 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1781 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 1782 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 1783 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 1784 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 1785 | ||
| 1786 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1787 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1788 | ROM_END | |
| 1789 | ||
| 1790 | ROM_START( pepp0224 ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0224) */ | |
| 1791 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1792 | /* | |
| 1793 | w/D w/oD | |
| 1794 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 1795 | ---------------------------------------------------------- | |
| 1796 | P56A 1 2 3 3 4 8 10 20 200 250 800 | |
| 1797 | % Range: 89.4-91.4% Optimum: 93.4% Hit Frequency: 45.1% | |
| 1798 | Programs Available: PP0242 | |
| 1799 | */ | |
| 1800 | ROM_LOAD( "pp0224_a47-a76.u68", 0x00000, 0x10000, CRC(5d6881ad) SHA1(38953ffadea04df614b14c70177736039495c408) ) /* Game Version: A47, Library Version: A76 */ | |
| 1801 | ||
| 1802 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1803 | ROM_LOAD( "mro-cg1215.u72", 0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) | |
| 1804 | ROM_LOAD( "mgo-cg1215.u73", 0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) ) | |
| 1805 | ROM_LOAD( "mbo-cg1215.u74", 0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) ) | |
| 1806 | ROM_LOAD( "mxo-cg1215.u75", 0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) ) | |
| 1807 | ||
| 1808 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1809 | ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) ) | |
| 1810 | ROM_END | |
| 1811 | ||
| 1812 | ROM_START( pepp0224a ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0224) */ | |
| 1813 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1814 | /* | |
| 1815 | w/D w/oD | |
| 1816 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 1817 | ---------------------------------------------------------- | |
| 1818 | P56A 1 2 3 3 4 8 10 20 200 250 800 | |
| 1819 | % Range: 89.4-91.4% Optimum: 93.4% Hit Frequency: 45.1% | |
| 1820 | Programs Available: PP0242 | |
| 1821 | */ | |
| 1822 | ||
| 1823 | ROM_LOAD( "pp0224_961-984.u68", 0x00000, 0x10000, CRC(71d5e112) SHA1(528f06ad7ea7e1e297939c7b3ca0bb7faa8ce8c1) ) /* Game Version: 961, Library Version: 984 */ | |
| 1824 | ||
| 1825 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1826 | ROM_LOAD( "mro-cg1215.u72", 0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) | |
| 1827 | ROM_LOAD( "mgo-cg1215.u73", 0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) ) | |
| 1828 | ROM_LOAD( "mbo-cg1215.u74", 0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) ) | |
| 1829 | ROM_LOAD( "mxo-cg1215.u75", 0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) ) | |
| 1830 | ||
| 1831 | ROM_REGION( 0x100, "proms", 0 ) | |
| 1832 | ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) ) | |
| 1833 | ROM_END | |
| 1834 | ||
| 1835 | ROM_START( pepp0230 ) /* Normal board : Standard Draw Poker (PP0230) */ | |
| 1836 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1837 | ROM_LOAD( "pp0230_715-702.u68", 0x00000, 0x10000, CRC(0272d8d6) SHA1(659f9149ab5e26283eaccd31588183c21c291adb) ) /* Game Version: 715, Library Version: 702 */ | |
| 1838 | ||
| 1839 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1840 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 1841 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 1842 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 1843 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 1844 | ||
| 1845 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1846 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1847 | ROM_END | |
| 1848 | ||
| 1849 | ROM_START( pepp0235 ) /* Normal board : 4 of a Kind Bonus Poker (PP0235) */ | |
| 1850 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1851 | ROM_LOAD( "pp0235_a46-a75.u68", 0x00000, 0x10000, CRC(dccb5e2f) SHA1(4c1ff0f79d9441d0b7e8b31f95def1056945eb96) ) /* Game Version: A46, Library Version: A75, Video Lib ver A0Y */ | |
| 1852 | ||
| 1853 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1854 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 1855 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 1856 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 1857 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 1858 | ||
| 1859 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1860 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1861 | ROM_END | |
| 1862 | ||
| 1519 | 1863 | ROM_START( pepp0250 ) /* Normal board : Double Down Stud Poker (PP0250) */ |
| 1864 | /* | |
| 1865 | PayTable 6s-10s Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 1866 | ----------------------------------------------------------------- | |
| 1867 | ?? 1 2 3 4 6 6 12 50 200 1000 ??? | |
| 1868 | */ | |
| 1520 | 1869 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1521 | ROM_LOAD( "pp0250.u68", 0x00000, 0x10000, CRC(4c919598) SHA1(fe73503c6ccb3c5746fb96be58cd5b740c819713) ) | |
| 1870 | ROM_LOAD( "pp0250_733-778.u68", 0x00000, 0x10000, CRC(4c919598) SHA1(fe73503c6ccb3c5746fb96be58cd5b740c819713) ) /* Game Version: 733, Library Version: 778 */ | |
| 1522 | 1871 | |
| 1523 | 1872 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1873 | ROM_LOAD( "mro-cg1019.u72", 0x00000, 0x8000, CRC(9086dc3c) SHA1(639baef8a9b347015d21817d69265700ff205774) ) /* Verified CG set for PP0250 set */ | |
| 1874 | ROM_LOAD( "mgo-cg1019.u73", 0x08000, 0x8000, CRC(fb538a19) SHA1(1ed480ebdf3ad210511e7e0a0dd4e28466219ae9) ) | |
| 1875 | ROM_LOAD( "mbo-cg1019.u74", 0x10000, 0x8000, CRC(493bf604) SHA1(9cbce26ed328e6878ec5f6531ea140e1c17e6753) ) | |
| 1876 | ROM_LOAD( "mxo-cg1019.u75", 0x18000, 0x8000, CRC(064a5c80) SHA1(4d21a7a424258f74d4a1e78c123288799e316228) ) | |
| 1877 | ||
| 1878 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1879 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1880 | ROM_END | |
| 1881 | ||
| 1882 | ROM_START( pepp0265 ) /* Normal board : 4 of a Kind Bonus Poker (PP0265) */ | |
| 1883 | /* | |
| 1884 | 5-K 2-4 | |
| 1885 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 1886 | ----------------------------------------------------------------- | |
| 1887 | P101A 1 2 3 4 5 6 25 40 80 50 250 800 | |
| 1888 | % Range: 92.5-94.5% Optimum: 96.9% Hit Frequency: 45.5% | |
| 1889 | Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only | |
| 1890 | */ | |
| 1891 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1892 | ROM_LOAD( "pp0265_a0n-a23.u68", 0x00000, 0x10000, CRC(7dad6907) SHA1(890bdafb8bf272e513e94c8016c9866ab39f8fa2) ) /* Game Version: A0N, Library Version: A23, Viedo Lib ver: A0Y */ | |
| 1893 | ||
| 1894 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1895 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 1896 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 1897 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 1898 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 1899 | ||
| 1900 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1901 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1902 | ROM_END | |
| 1903 | ||
| 1904 | ROM_START( pepp0274 ) /* Normal board : Standard Draw Poker (PP0274) */ | |
| 1905 | ||
| 1906 | /* | |
| 1907 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 1908 | ---------------------------------------------------------- | |
| 1909 | ?? 1 2 3 4 6 9 25 50 250 800 | |
| 1910 | */ | |
| 1911 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1912 | ROM_LOAD( "pp0274_741-728.u68", 0x00000, 0x10000, CRC(cd0b2890) SHA1(5f859dbc8d747a198c735a2bff42279c874928b0) ) /* Game Version: 741, Library Version: 728, Viedo Lib ver: 728 */ | |
| 1913 | ||
| 1914 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1524 | 1915 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) |
| 1525 | 1916 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) |
| 1526 | 1917 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) |
| r25453 | r25454 | |
| 1530 | 1921 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) |
| 1531 | 1922 | ROM_END |
| 1532 | 1923 | |
| 1924 | ROM_START( pepp0290 ) /* Normal board : Deuces Wild Poker (PP0290) */ | |
| 1925 | /* | |
| 1926 | w/D w/oD | |
| 1927 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 1928 | ---------------------------------------------------------- | |
| 1929 | P32A 1 2 2 3 4 13 16 22 200 250 800 | |
| 1930 | % Range: 92.8-94.8% Optimum: 96.8% Hit Frequency: 44.9% | |
| 1931 | Programs Available: PP0290 | |
| 1932 | */ | |
| 1933 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1934 | ROM_LOAD( "pp0290_a0v-a2d.u68", 0x00000, 0x10000, CRC(e2e6451c) SHA1(fa83b7a6d6c4ba1b3ee95b48ab6c3594477e536d) ) /* Game Version: A0V, Library Version: A2D */ | |
| 1935 | ||
| 1936 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1937 | ROM_LOAD( "mro-cg1215.u72", 0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) | |
| 1938 | ROM_LOAD( "mgo-cg1215.u73", 0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) ) | |
| 1939 | ROM_LOAD( "mbo-cg1215.u74", 0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) ) | |
| 1940 | ROM_LOAD( "mxo-cg1215.u75", 0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) ) | |
| 1941 | ||
| 1942 | ROM_REGION( 0x100, "proms", 0 ) | |
| 1943 | ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) ) | |
| 1944 | ROM_END | |
| 1945 | ||
| 1946 | ROM_START( pepp0291 ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0291) */ | |
| 1947 | /* | |
| 1948 | w/D w/oD | |
| 1949 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 1950 | ---------------------------------------------------------- | |
| 1951 | P62A 1 2 3 4 4 9 15 25 200 250 800 | |
| 1952 | % Range: 94.9-96.9% Optimum: 98.9% Hit Frequency: 44.4% | |
| 1953 | Programs Available: PP0418, X000291P & PP0291 - Non Double-up Only | |
| 1954 | */ | |
| 1955 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1956 | ROM_LOAD( "pp0291_a0v-a2d.u68", 0x00000, 0x10000, CRC(4eabac97) SHA1(dc849bca8ac90536c361cd576ee81c50afd7071b) ) /* Game Version: A0V, Library Version: A2D */ | |
| 1957 | ||
| 1958 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1959 | ROM_LOAD( "mro-cg1215.u72", 0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) | |
| 1960 | ROM_LOAD( "mgo-cg1215.u73", 0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) ) | |
| 1961 | ROM_LOAD( "mbo-cg1215.u74", 0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) ) | |
| 1962 | ROM_LOAD( "mxo-cg1215.u75", 0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) ) | |
| 1963 | ||
| 1964 | ROM_REGION( 0x100, "proms", 0 ) | |
| 1965 | ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) ) | |
| 1966 | ROM_END | |
| 1967 | ||
| 1968 | ROM_START( pepp0409 ) /* Normal board : 4 of a Kind Bonus Poker (No Double-up) (PP0409) */ | |
| 1969 | /* | |
| 1970 | 5-K 2-4 | |
| 1971 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 1972 | ----------------------------------------------------------------- | |
| 1973 | P90A 1 2 3 4 5 7 25 40 80 50 250 800 | |
| 1974 | % Range: 94.0-96.0% Optimum: 98.0% Hit Frequency: 45.5% | |
| 1975 | Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only | |
| 1976 | */ | |
| 1977 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1978 | ROM_LOAD( "pp0409_a45-a75.u68", 0x00000, 0x10000, CRC(a71fdad9) SHA1(a719787895ad035b2b930d2692930466a9bfb19d) ) /* Game Version: A46, Library Version: A75, Game Lib ver: A0Y */ | |
| 1979 | ||
| 1980 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1981 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 1982 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 1983 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 1984 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 1985 | ||
| 1986 | ROM_REGION( 0x200, "proms", 0 ) | |
| 1987 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 1988 | ROM_END | |
| 1989 | ||
| 1990 | ROM_START( pepp0410 ) /* Normal board : 4 of a Kind Bonus Poker (No Double-up) (PP0410) */ | |
| 1991 | /* | |
| 1992 | 5-K 2-4 | |
| 1993 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 1994 | ----------------------------------------------------------------- | |
| 1995 | P101A 1 2 3 4 5 6 25 40 80 50 250 800 | |
| 1996 | % Range: 92.5-94.5% Optimum: 96.9% Hit Frequency: 45.5% | |
| 1997 | Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only | |
| 1998 | */ | |
| 1999 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2000 | ROM_LOAD( "pp0410_a0n-a23.u68", 0x00000, 0x10000, CRC(474f4809) SHA1(8d88647ab4719fdcf6ec0800386f32574b1da66d) ) /* Game Version: A0N, Library Version: A23, Game Lib ver: A0Y */ | |
| 2001 | ||
| 2002 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2003 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2004 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2005 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2006 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2007 | ||
| 2008 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2009 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2010 | ROM_END | |
| 2011 | ||
| 2012 | ROM_START( pepp0417 ) /* Normal board : Deuces Wild Poker - System Progressive/Non Progressive (No Double-up) (PP0417) */ | |
| 2013 | /* | |
| 2014 | w/D w/oD | |
| 2015 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 2016 | ---------------------------------------------------------- | |
| 2017 | P57A 1 2 3 4 4 8 10 20 200 250 800 | |
| 2018 | % Range: 92.0-94.0% Optimum: 96.0% Hit Frequency: 44.5% | |
| 2019 | Programs Available: PP0417, X000417P & PP0190 - Non Double-up Only | |
| 2020 | */ | |
| 2021 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2022 | ROM_LOAD( "pp0417_961-984.u68", 0x00000, 0x10000, CRC(4a1e7899) SHA1(b6f243d275da70841482843e05c1be22fd80c25c) ) /* Game Version: 961, Library Version: 984 */ | |
| 2023 | ||
| 2024 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2025 | ROM_LOAD( "mro-cg1215.u72", 0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) | |
| 2026 | ROM_LOAD( "mgo-cg1215.u73", 0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) ) | |
| 2027 | ROM_LOAD( "mbo-cg1215.u74", 0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) ) | |
| 2028 | ROM_LOAD( "mxo-cg1215.u75", 0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) ) | |
| 2029 | ||
| 2030 | ROM_REGION( 0x100, "proms", 0 ) | |
| 2031 | ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) ) | |
| 2032 | ROM_END | |
| 2033 | ||
| 2034 | ROM_START( pepp0419 ) /* Normal board : Standard Draw Poker - Progressive Local/System - Auto Hold in Options (No Double-up) (PP0419) */ | |
| 2035 | /* | |
| 2036 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 2037 | ---------------------------------------------------------- | |
| 2038 | BA 1 2 3 4 5 8 25 50 250 800 | |
| 2039 | % Range: 93.3-95.3% Optimum: 97.3% Hit Frequency: 45.5% | |
| 2040 | Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only | |
| 2041 | */ | |
| 2042 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2043 | ROM_LOAD( "pp0419_768-761.u68", 0x00000, 0x10000, CRC(204f9ffe) SHA1(adfdc8b22ba5cc69234ad88ab2f92393a5fb3aff) ) /* Game Version: 768, Library Version: 761, Game Lib ver: 761 */ | |
| 2044 | ||
| 2045 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2046 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 2047 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 2048 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 2049 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 2050 | ||
| 2051 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2052 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2053 | ROM_END | |
| 2054 | ||
| 2055 | ROM_START( pepp0420 ) /* Normal board : Standard Draw Poker - System Progressive/Non Progressive (No Double-up) (PP0420) */ | |
| 2056 | /* | |
| 2057 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 2058 | ---------------------------------------------------------- | |
| 2059 | GA 1 2 3 4 5 6 25 50 250 800 | |
| 2060 | % Range: 91.0-93.0% Optimum: 95.0% Hit Frequency: 45.5% | |
| 2061 | Programs Available: PP0060, X000060P & PP0420 - Non Double-up Only | |
| 2062 | */ | |
| 2063 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2064 | ROM_LOAD( "pp0420_896-914.u68", 0x00000, 0x10000, CRC(cdd923d2) SHA1(f7548159ea3c36c3fce481156ab0293d00f0fd0f) ) /* Game Version: 896, Library Version: 914 */ | |
| 2065 | ||
| 2066 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2067 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 2068 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 2069 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 2070 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 2071 | ||
| 2072 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2073 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2074 | ROM_END | |
| 2075 | ||
| 2076 | ROM_START( pepp0423 ) /* Normal board : Standard Draw Poker (PP0423) - Progressive Local/System (No Double-up) */ | |
| 2077 | /* | |
| 2078 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 2079 | ---------------------------------------------------------- | |
| 2080 | P11A 1 2 3 4 5 9 25 50 250 800 | |
| 2081 | % Range: 92.1-94.1% Optimum: 96.1% Hit Frequency: 45.5% | |
| 2082 | Programs Available: PP0423 | |
| 2083 | */ | |
| 2084 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2085 | ROM_LOAD( "pp0423_836-847.u68", 0x00000, 0x10000, CRC(12eec557) SHA1(3721d068223262260ad22698e7dca0440becc53e) ) /* Game Version: 836, Library Version: 847 */ | |
| 2086 | ||
| 2087 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2088 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 2089 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 2090 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 2091 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 2092 | ||
| 2093 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2094 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2095 | ROM_END | |
| 2096 | ||
| 2097 | ROM_START( pepp0426 ) /* Normal board : Joker Poker (No Double-up) (PP0426) */ | |
| 2098 | /* | |
| 2099 | w/J w/oJ | |
| 2100 | PayTable Ks+ 2P 3K STR FL FH 4K SF RF 5K RF (Bonus) | |
| 2101 | ---------------------------------------------------------------- | |
| 2102 | YD 1 1 2 3 5 7 15 50 100 200 400 800 | |
| 2103 | % Range: 92.7-94.7% Optimum: 96.7% Hit Frequency: 44.1% | |
| 2104 | Programs Available: PP0568 & PP0426 - Non Double-up Only | |
| 2105 | */ | |
| 2106 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2107 | ROM_LOAD( "pp0426_979-a0c.u68", 0x00000, 0x10000, CRC(0dca4bf1) SHA1(f2cfe250e78fc0995dda653d231f75090ff5c394) ) /* Game Version: 979, Library Version: A0C */ | |
| 2108 | ||
| 2109 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2110 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 2111 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 2112 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 2113 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 2114 | ||
| 2115 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2116 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2117 | ROM_END | |
| 2118 | ||
| 2119 | ROM_START( pepp0428 ) /* Normal board : Joker Poker (No Double-up) (PP0428) */ | |
| 2120 | /* | |
| 2121 | w/J w/oJ | |
| 2122 | PayTable Ks+ 2P 3K STR FL FH 4K SF RF 5K RF (Bonus) | |
| 2123 | ---------------------------------------------------------------- | |
| 2124 | P17A 1 1 2 3 4 5 20 40 100 200 500 800 | |
| 2125 | % Range: 91.5-92.5% Optimum: 995.5% Hit Frequency: 44.7% | |
| 2126 | Programs Available: PP0459, X000459P & PP0428 - Non Double-up Only | |
| 2127 | */ | |
| 2128 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2129 | ROM_LOAD( "pp0428_979-a0c.u68", 0x00000, 0x10000, CRC(a206a3bd) SHA1(48e1386027308684daee09370b5ee09d9eb645a8) ) /* Game Version: 979, Library Version: A0c */ | |
| 2130 | ||
| 2131 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2132 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 2133 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 2134 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 2135 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 2136 | ||
| 2137 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2138 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2139 | ROM_END | |
| 2140 | ||
| 2141 | ROM_START( pepp0429 ) /* Normal board : Joker Poker (No Double-up) (PP0429) */ | |
| 2142 | /* | |
| 2143 | w/J w/oJ | |
| 2144 | PayTable Ks+ 2P 3K STR FL FH 4K SF RF 5K RF (Bonus) | |
| 2145 | ---------------------------------------------------------------- | |
| 2146 | P18A 1 1 2 3 5 6 20 50 100 200 500 800 | |
| 2147 | % Range: 91.5-92.5% Optimum: 995.5% Hit Frequency: 44.7% | |
| 2148 | Programs Available: PP0458, X000458P & PP0429 - Non Double-up Only | |
| 2149 | */ | |
| 2150 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2151 | ROM_LOAD( "pp0429_979-a0c.u68", 0x00000, 0x10000, CRC(453484e7) SHA1(6ba80b72cdd8b3bd43c656400591f4d543a9d94f) ) /* Game Version: 979, Library Version: A0C */ | |
| 2152 | ||
| 2153 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2154 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 2155 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 2156 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 2157 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 2158 | ||
| 2159 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2160 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2161 | ROM_END | |
| 2162 | ||
| 2163 | ROM_START( pepp0434 ) /* Normal board : Bonus Poker Deluxe (PP0434) */ | |
| 2164 | /* | |
| 2165 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 2166 | ---------------------------------------------------------- | |
| 2167 | P200A 1 1 3 4 6 8 80 50 250 800 | |
| 2168 | % Range: 94.5-96.5% Optimum: 98.5% Hit Frequency: 45.2% | |
| 2169 | Programs Available: PP0434, X000434P & PP0713 - Non Double-up Only | |
| 2170 | */ | |
| 2171 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2172 | ROM_LOAD( "pp0434_a45-a75.u68", 0x00000, 0x10000, CRC(e5c9ba19) SHA1(9a01457a54a0445a0f32affe2038366e681cada1) ) /* Game Version: A45, Library Version: A74 */ | |
| 2173 | ||
| 2174 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2175 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2176 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2177 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2178 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2179 | ||
| 2180 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2181 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2182 | ROM_END | |
| 2183 | ||
| 1533 | 2184 | ROM_START( pepp0447 ) /* Normal board : Standard Draw Poker (PP0447) */ |
| 2185 | /* | |
| 2186 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 2187 | --------------------------------------------------------- | |
| 2188 | CA 1 2 3 4 6 9 25 50 250 800 | |
| 2189 | % Range: 95.5-97.5% Optimum: 99.5% Hit Frequency: 45.5% | |
| 2190 | Programs Available: PP0447, X000447P | |
| 2191 | */ | |
| 1534 | 2192 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1535 | ROM_LOAD( "pp0447.u68", 0x00000, 0x10000, CRC(0ef0bb6c) SHA1(d0ef7a83417054f05d32d0a93ed0d5d618f4dfb9) ) | |
| 2193 | ROM_LOAD( "pp0447_a45-a74.u68", 0x00000, 0x10000, CRC(0ef0bb6c) SHA1(d0ef7a83417054f05d32d0a93ed0d5d618f4dfb9) ) /* Game Version: A45, Library Version: A74 */ | |
| 2194 | ||
| 2195 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2196 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 2197 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 2198 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 2199 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 2200 | ||
| 2201 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2202 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2203 | ROM_END | |
| 2204 | ||
| 2205 | ROM_START( pepp0447a ) /* Normal board : Standard Draw Poker (PP0447) */ | |
| 1536 | 2206 | /* |
| 1537 | 2207 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) |
| 1538 | 2208 | --------------------------------------------------------- |
| r25453 | r25454 | |
| 1540 | 2210 | % Range: 95.5-97.5% Optimum: 99.5% Hit Frequency: 45.5% |
| 1541 | 2211 | Programs Available: PP0447, X000447P |
| 1542 | 2212 | */ |
| 2213 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2214 | ROM_LOAD( "pp0447_979-a0c.u68", 0x00000, 0x10000, CRC(a62748ea) SHA1(585049160f7983047dd13a1715d1edbf3b9778ea) ) /* Game Version: 979, Library Version: A0C */ | |
| 1543 | 2215 | |
| 1544 | 2216 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1545 | 2217 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) |
| r25453 | r25454 | |
| 1551 | 2223 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) |
| 1552 | 2224 | ROM_END |
| 1553 | 2225 | |
| 2226 | ROM_START( pepp0449 ) /* Normal board : Standard Draw Poker (PP0449) */ | |
| 2227 | /* | |
| 2228 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 2229 | ---------------------------------------------------------- | |
| 2230 | P11A 1 2 3 4 5 9 25 50 250 800 | |
| 2231 | % Range: 92.1-94.1% Optimum: 96.1% Hit Frequency: 45.5% | |
| 2232 | Programs Available: PP0449, X000449P & PP0221 - Non Double-up Only | |
| 2233 | */ | |
| 2234 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2235 | ROM_LOAD( "pp0449_a45-a74.u68", 0x00000, 0x10000, CRC(44699ad7) SHA1(89d9d3107384a6b474c51a34bd34936c36c4b3f5) ) /* Game Version: A45, Library Version: A75 */ | |
| 2236 | ||
| 2237 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2238 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 2239 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 2240 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 2241 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 2242 | ||
| 2243 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2244 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2245 | ROM_END | |
| 2246 | ||
| 2247 | ROM_START( pepp0452 ) /* Normal board : Double Deuces Wild Poker (PP0452) */ | |
| 2248 | /* | |
| 2249 | w/D wo/D | |
| 2250 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 2251 | ---------------------------------------------------------- | |
| 2252 | P236A 1 2 2 3 4 11 16 25 400 250 800 | |
| 2253 | % Range: 95.6-97.6% Optimum: 99.6% Hit Frequency: 45.1% | |
| 2254 | Programs Available: PP0452, X000452P | |
| 2255 | */ | |
| 2256 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2257 | ROM_LOAD( "pp0452_726-706.u68", 0x00000, 0x10000, CRC(26413947) SHA1(66bc2fb3dd62aa9d8ab125665747d331a55e1868) ) /* Game Version: 726, Library Version: 706 */ | |
| 2258 | ||
| 2259 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2260 | ROM_LOAD( "mro-cg773.u72", 0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) ) | |
| 2261 | ROM_LOAD( "mgo-cg773.u73", 0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) ) | |
| 2262 | ROM_LOAD( "mbo-cg773.u74", 0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) ) | |
| 2263 | ROM_LOAD( "mxo-cg773.u75", 0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) ) | |
| 2264 | ||
| 2265 | ROM_REGION( 0x100, "proms", 0 ) | |
| 2266 | ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(0b496da9) SHA1(612363cb78f2ab5e100ca4bd0bfae6f7c3f80381) ) | |
| 2267 | ROM_END | |
| 2268 | ||
| 2269 | ROM_START( pepp0454 ) /* Normal board : Bonus Poker Deluxe (PP0454) */ | |
| 2270 | /* | |
| 2271 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 2272 | ---------------------------------------------------------- | |
| 2273 | P253A 1 1 3 4 5 7 80 50 250 800 | |
| 2274 | % Range: 92.3-94.3% Optimum: 96.3% Hit Frequency: 45.2% | |
| 2275 | Programs Available: PP0454, X000454P | |
| 2276 | */ | |
| 2277 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2278 | ROM_LOAD( "pp0454_a45-a75.u68", 0x00000, 0x10000, CRC(f15f751d) SHA1(6e73625bf3fe0461a171f72ab5478439207516b3) ) /* Game Version: A45, Library Version: A74 */ | |
| 2279 | ||
| 2280 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2281 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2282 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2283 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2284 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2285 | ||
| 2286 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2287 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2288 | ROM_END | |
| 2289 | ||
| 2290 | ROM_START( pepp0488 ) /* Normal board : Standard Draw Poker (PP0488) */ | |
| 2291 | /* | |
| 2292 | PayTable Js+ TP 3K STR FL FH 4K SF RF (Bonus) | |
| 2293 | -------------------------------------------------------- | |
| 2294 | ?? 1 1 2 4 5 8 ?? 50 250 800 | |
| 2295 | ||
| 2296 | NOTE: Will work with the standard CG740 + CAP740 graphics for a non-localized game. | |
| 2297 | */ | |
| 2298 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2299 | ROM_LOAD( "pp0488_a30-a4v.u68", 0x00000, 0x10000, CRC(99849f5d) SHA1(643a303beda1c4a4619803071df5e612ab922eb9) ) /* Game Version: A30, Library Version: A4V */ | |
| 2300 | ||
| 2301 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2302 | ROM_LOAD( "mro-cg2135.u72", 0x00000, 0x8000, CRC(004c9c8e) SHA1(ec3fa9d2c658de59e722d9979513d6b0c71d5742) ) /* Custom Arizona Charlie's Casino graphics */ | |
| 2303 | ROM_LOAD( "mgo-cg2135.u73", 0x08000, 0x8000, CRC(e6843b35) SHA1(2d5219a3cb054ce8b470797c0496c7e24e94ed81) ) | |
| 2304 | ROM_LOAD( "mbo-cg2135.u74", 0x10000, 0x8000, CRC(e3e28611) SHA1(d040f1df6203dc0bd6a79a391fb90fb930f8dd1a) ) | |
| 2305 | ROM_LOAD( "mxo-cg2135.u75", 0x18000, 0x8000, CRC(3ae44f7e) SHA1(00d625b60bffef6ce622cb50a3aa93b92131f578) ) | |
| 2306 | ||
| 2307 | ROM_REGION( 0x100, "proms", 0 ) | |
| 2308 | ROM_LOAD( "cap2135.u50", 0x0000, 0x0100, CRC(d02fca7e) SHA1(4384b4238d487b4c763983b27381f4c6c08eb605) ) /* BPROM type N82S135N verified */ | |
| 2309 | ROM_END | |
| 2310 | ||
| 2311 | ROM_START( pepp0508 ) /* Normal board : Loose Deuce Poker (PP0508) */ | |
| 2312 | /* | |
| 2313 | w/D W/oD | |
| 2314 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 2315 | ----------------------------------------------------------------- | |
| 2316 | P313A 1 2 2 3 4 8 12 25 500 250 800 | |
| 2317 | % Range: 95.2-97.2% Optimum: 99.2% Hit Frequency: 45.2% | |
| 2318 | Programs Available: PP0508, X000508P | |
| 2319 | */ | |
| 2320 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2321 | ROM_LOAD( "pp0508_872-888.u68", 0x00000, 0x10000, CRC(41da6c1e) SHA1(75dc178bc48a58ccf7e87d91419c5dcd99af2d58) ) /* Game Version: 872, Library Version: 888 */ | |
| 2322 | ||
| 2323 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2324 | ROM_LOAD( "mro-cg773.u72", 0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) ) | |
| 2325 | ROM_LOAD( "mgo-cg773.u73", 0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) ) | |
| 2326 | ROM_LOAD( "mbo-cg773.u74", 0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) ) | |
| 2327 | ROM_LOAD( "mxo-cg773.u75", 0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) ) | |
| 2328 | ||
| 2329 | ROM_REGION( 0x100, "proms", 0 ) | |
| 2330 | ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(0b496da9) SHA1(612363cb78f2ab5e100ca4bd0bfae6f7c3f80381) ) | |
| 2331 | ROM_END | |
| 2332 | ||
| 2333 | ROM_START( pepp0509 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0509) */ | |
| 2334 | /* | |
| 2335 | PayTable Js+ TP 3K STR FL FH 4K SF RF (Bonus) | |
| 2336 | -------------------------------------------------------- | |
| 2337 | ?? 1 2 3 4 6 10 25 50 250 800 | |
| 2338 | */ | |
| 2339 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2340 | ROM_LOAD( "pp0509_783-779.u68", 0x00000, 0x10000, CRC(a7c9b166) SHA1(3565070b9beba9aa50662253cafafa00f4f5abfa) ) /* Game Version: 782, Library Version: 779 */ | |
| 2341 | ||
| 2342 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2343 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 2344 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 2345 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 2346 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 2347 | ||
| 2348 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2349 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2350 | ROM_END | |
| 2351 | ||
| 2352 | ROM_START( pepp0514 ) /* Normal board : Double Bonus Poker (PP0514) */ | |
| 2353 | /* | |
| 2354 | 5-K 2-4 | |
| 2355 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 2356 | ----------------------------------------------------------------- | |
| 2357 | P323A 1 1 3 5 7 9 50 80 160 50 250 800 | |
| 2358 | % Range: 95.1-97.1% Optimum: 99.1% Hit Frequency: 43.2% | |
| 2359 | Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only | |
| 2360 | */ | |
| 2361 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2362 | ROM_LOAD( "pp0514_a46-a75.u68", 0x00000, 0x10000, CRC(53ca68c7) SHA1(2c46c89c6347bb8cf80b0ff85daabd0e925c87ec) ) /* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */ | |
| 2363 | ||
| 2364 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2365 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2366 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2367 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2368 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2369 | ||
| 2370 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2371 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2372 | ROM_END | |
| 2373 | ||
| 2374 | ROM_START( pepp0514a ) /* Normal board : Double Bonus Poker (PP0514) */ | |
| 2375 | /* | |
| 2376 | 5-K 2-4 | |
| 2377 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 2378 | ----------------------------------------------------------------- | |
| 2379 | P323A 1 1 3 5 7 9 50 80 160 50 250 800 | |
| 2380 | % Range: 95.1-97.1% Optimum: 99.1% Hit Frequency: 43.2% | |
| 2381 | Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only | |
| 2382 | */ | |
| 2383 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2384 | ROM_LOAD( "pp0514_a0n-a0y.u68", 0x00000, 0x10000, CRC(2d54260d) SHA1(cf891c5624331f9b2ef7fbb1e084cfc00f407691) ) /* Game Version: A0N, Library Version: A0Y */ | |
| 2385 | ||
| 2386 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2387 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2388 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2389 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2390 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2391 | ||
| 2392 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2393 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2394 | ROM_END | |
| 2395 | ||
| 2396 | ROM_START( pepp0515 ) /* Normal board : Double Bonus Poker (PP0515) */ | |
| 2397 | /* | |
| 2398 | 5-K 2-4 | |
| 2399 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 2400 | ----------------------------------------------------------------- | |
| 2401 | P324A 1 1 3 5 7 10 50 80 160 50 250 800 | |
| 2402 | % Range: 96.2-98.2% Optimum: 100.2% Hit Frequency: 43.3% | |
| 2403 | Programs Available: PP0515, X000515P & PP0539 - Non Double-up Only | |
| 2404 | */ | |
| 2405 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2406 | ROM_LOAD( "pp0515_989-974.u68", 0x00000, 0x10000, CRC(bc9654ab) SHA1(ecf2401bfbfcfa22354cde517cf425a8db8ea961) ) /* Game Version: 989, Library Version: 974 */ | |
| 2407 | ||
| 2408 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2409 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2410 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2411 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2412 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2413 | ||
| 2414 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2415 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2416 | ROM_END | |
| 2417 | ||
| 2418 | ROM_START( pepp0515a ) /* Normal board : Double Bonus Poker (PP0515) */ | |
| 2419 | /* | |
| 2420 | 5-K 2-4 | |
| 2421 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 2422 | ----------------------------------------------------------------- | |
| 2423 | P324A 1 1 3 5 7 10 50 80 160 50 250 800 | |
| 2424 | % Range: 96.2-98.2% Optimum: 100.2% Hit Frequency: 43.3% | |
| 2425 | Programs Available: PP0515, X000515P & PP0539 - Non Double-up Only | |
| 2426 | */ | |
| 2427 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2428 | ROM_LOAD( "pp0515_813-824.u68", 0x00000, 0x10000, CRC(6c06b0ea) SHA1(7907d10d7290080c33e46c9644f24d1d2fc6b3ff) ) /* Game Version: 813, Library Version: 824 */ | |
| 2429 | ||
| 2430 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2431 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2432 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2433 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2434 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2435 | ||
| 2436 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2437 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2438 | ROM_END | |
| 2439 | ||
| 1554 | 2440 | ROM_START( pepp0516 ) /* Normal board : Double Bonus Poker (PP0516) */ |
| 2441 | /* | |
| 2442 | 5-K 2-4 | |
| 2443 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 2444 | ----------------------------------------------------------------- | |
| 2445 | P325A 1 2 3 4 5 8 50 80 160 50 250 800 | |
| 2446 | % Range: 93.8-95.8% Optimum: 97.8% Hit Frequency: 44.5% | |
| 2447 | Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only | |
| 2448 | */ | |
| 1555 | 2449 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1556 | ROM_LOAD( "pp0516.u68", 0x00000, 0x10000, CRC(d9da6e13) SHA1(421678d9cb42daaf5b21074cc3900db914dd26cf) ) | |
| 2450 | ROM_LOAD( "pp0516_974-a0y.u68", 0x00000, 0x10000, CRC(d9da6e13) SHA1(421678d9cb42daaf5b21074cc3900db914dd26cf) ) /* Game Version: 974, Library Version: A0Y */ | |
| 2451 | ||
| 2452 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2453 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2454 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2455 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2456 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2457 | ||
| 2458 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2459 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2460 | ROM_END | |
| 2461 | ||
| 2462 | ROM_START( pepp0516a ) /* Normal board : Double Bonus Poker (PP0516) */ | |
| 1557 | 2463 | /* |
| 1558 | 2464 | 5-K 2-4 |
| 1559 | 2465 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) |
| 1560 | 2466 | ----------------------------------------------------------------- |
| 1561 | 2467 | P325A 1 2 3 4 5 8 50 80 160 50 250 800 |
| 1562 | 2468 | % Range: 93.8-95.8% Optimum: 97.8% Hit Frequency: 44.5% |
| 1563 | Programs Available: PP0516, X000516P & PP0540 - N | |
| 2469 | Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only | |
| 1564 | 2470 | */ |
| 2471 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2472 | ROM_LOAD( "pp0516_a46-a75.u68", 0x00000, 0x10000, CRC(6e226711) SHA1(71930ec43c4b75ca50971242be79459976882546) ) /* Game Version: A46, Library Version: A75 */ | |
| 1565 | 2473 | |
| 1566 | 2474 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 2475 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2476 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2477 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2478 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2479 | ||
| 2480 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2481 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2482 | ROM_END | |
| 2483 | ||
| 2484 | ROM_START( pepp0538 ) /* Normal board : Double Bonus Poker (No Double-up) (PP0538) */ | |
| 2485 | /* | |
| 2486 | 5-K 2-4 | |
| 2487 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 2488 | ----------------------------------------------------------------- | |
| 2489 | P323A 1 1 3 5 7 9 50 80 160 50 250 800 | |
| 2490 | % Range: 95.1-97.1% Optimum: 99.1% Hit Frequency: 43.2% | |
| 2491 | Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only | |
| 2492 | */ | |
| 2493 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2494 | ROM_LOAD( "pp0538_a46-a75.u68", 0x00000, 0x10000, CRC(f9e8dbe7) SHA1(dd745a48764f7da7314236016bf9c7fa67a78fad) ) /* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */ | |
| 2495 | ||
| 2496 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2497 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2498 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2499 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2500 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2501 | ||
| 2502 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2503 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2504 | ROM_END | |
| 2505 | ||
| 2506 | ROM_START( pepp0540 ) /* Normal board : Double Bonus Poker (No Double-up) (PP0540) */ | |
| 2507 | /* | |
| 2508 | 5-K 2-4 | |
| 2509 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 2510 | ----------------------------------------------------------------- | |
| 2511 | P325A 1 2 3 4 5 8 50 80 160 50 250 800 | |
| 2512 | % Range: 93.8-95.8% Optimum: 97.8% Hit Frequency: 44.5% | |
| 2513 | Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only | |
| 2514 | */ | |
| 2515 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2516 | ROM_LOAD( "pp0540_974-a0y.u68", 0x00000, 0x10000, CRC(b39e0c13) SHA1(a0dd05eb2927792efb1f432dbbd4a9a4fd6ad4c9) ) /* Game Version: 974, Library Version: A0Y */ | |
| 2517 | ||
| 2518 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2519 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2520 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2521 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2522 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2523 | ||
| 2524 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2525 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2526 | ROM_END | |
| 2527 | ||
| 2528 | ROM_START( pepp0542 ) /* Normal board : One Eyed Jacks (PP0542) Use SET001 to set Denomination for this game */ | |
| 2529 | /* | |
| 2530 | With w/o | |
| 2531 | Wild Wild | |
| 2532 | PayTable As 2PR 3K STR FL FH 4K SF RF 5K RF (Bonus) | |
| 2533 | ----------------------------------------------------------------- | |
| 2534 | ?? 1 1 1 2 4 5 10 ?? ?? ?? 250 800 | |
| 2535 | */ | |
| 2536 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2537 | ROM_LOAD( "pp0542_905-923.u68", 0x00000, 0x10000, CRC(f4fe3db5) SHA1(18521a569aae8d89e82f9709edc03badae153dd4) ) /* Game Version: 905, Library Version: 923 */ | |
| 2538 | ||
| 2539 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2540 | ROM_LOAD( "mro-cg2243.u72", 0x00000, 0x8000, CRC(9c81a78e) SHA1(0c5f91443f051bfab4b1e6b0fde443fbb94aa4ec) ) | |
| 2541 | ROM_LOAD( "mgo-cg2243.u73", 0x08000, 0x8000, CRC(53ccbf75) SHA1(092406f74b8604f19800c473dd9ec46fe7fc77b2) ) | |
| 2542 | ROM_LOAD( "mbo-cg2243.u74", 0x10000, 0x8000, CRC(2ae69415) SHA1(275245ffed10fb6ec2ff9dd433c3f41ff07fe5ad) ) | |
| 2543 | ROM_LOAD( "mxo-cg2243.u75", 0x18000, 0x8000, CRC(fa6f300b) SHA1(ba72c3004e6fd4e78d8385a52ede566cf5143d10) ) | |
| 2544 | ||
| 2545 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2546 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2547 | ROM_END | |
| 2548 | ||
| 2549 | ROM_START( pepp0568 ) /* Normal board : Joker Poker (PP0568) */ | |
| 2550 | /* | |
| 2551 | w/J w/oJ | |
| 2552 | PayTable Ks+ 2P 3K STR FL FH 4K SF RF 5K RF (Bonus) | |
| 2553 | ---------------------------------------------------------------- | |
| 2554 | YD 1 1 1 3 5 7 15 50 100 200 400 800 | |
| 2555 | % Range: 92.7-94.7% Optimum: 96.7% Hit Frequency: 44.1% | |
| 2556 | Programs Available: PP0568 & PP0426 - Non Double-up Only | |
| 2557 | */ | |
| 2558 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2559 | ROM_LOAD( "pp0568_a45-a74.u68", 0x00000, 0x10000, CRC(a1015eef) SHA1(074dcd966a5da6867532c6e90e2bc98404c2247b) ) /* Game Version: A45, Library Version: A74 */ | |
| 2560 | ||
| 2561 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 1567 | 2562 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) |
| 1568 | 2563 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) |
| 1569 | 2564 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) |
| r25453 | r25454 | |
| 1573 | 2568 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) |
| 1574 | 2569 | ROM_END |
| 1575 | 2570 | |
| 2571 | ROM_START( pepp0585 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0585) */ | |
| 2572 | /* | |
| 2573 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 2574 | ---------------------------------------------------------- | |
| 2575 | ?? 1 2 3 4 5 7 25 50 250 800 | |
| 2576 | */ | |
| 2577 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2578 | ROM_LOAD( "pp0585_956-979.u68", 0x00000, 0x10000, CRC(419633df) SHA1(f755e7b6cdd95444a02d2172789d9d73f31f56c4) ) /* Game Version: 956, Library Version: 979 */ | |
| 2579 | ||
| 2580 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2581 | ROM_LOAD( "mro-cg740.u72", 0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) | |
| 2582 | ROM_LOAD( "mgo-cg740.u73", 0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) ) | |
| 2583 | ROM_LOAD( "mbo-cg740.u74", 0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) ) | |
| 2584 | ROM_LOAD( "mxo-cg740.u75", 0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) ) | |
| 2585 | ||
| 2586 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2587 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2588 | ROM_END | |
| 2589 | ||
| 2590 | ROM_START( pepp0725 ) /* Normal board : Double Bonus Poker (PP0725) */ | |
| 2591 | /* | |
| 2592 | 5-K 2-4 | |
| 2593 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 2594 | ----------------------------------------------------------------- | |
| 2595 | P434A 1 1 3 4 6 9 50 80 160 50 250 800 | |
| 2596 | % Range: 92.4-94.4% Optimum: 96.4% Hit Frequency: 44.9% | |
| 2597 | Programs Available: PP0725, X000725P | |
| 2598 | */ | |
| 2599 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2600 | ROM_LOAD( "pp0725_a46-a75.u68", 0x00000, 0x10000, CRC(6679f095) SHA1(4cca3103610a75c8e515957ebea0cd75052a1100) )/* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */ | |
| 2601 | ||
| 2602 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2603 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2604 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2605 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2606 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2607 | ||
| 2608 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2609 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2610 | ROM_END | |
| 2611 | ||
| 2612 | ROM_START( pepp0760 ) /* Normal board : Double Down Stud Poker (PP0760) */ | |
| 2613 | /* | |
| 2614 | PayTable 8s-10s Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 2615 | ----------------------------------------------------------------- | |
| 2616 | ?? 1 2 3 4 6 9 12 50 200 1000 ??? | |
| 2617 | */ | |
| 2618 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2619 | ROM_LOAD( "pp0760_a4v-a6d.u68", 0x00000, 0x10000, CRC(1c26076c) SHA1(612ac66bbb0827b81dc9c6bc23fa7558445481bc) ) /* Game Version: A4V, Library Version: A6D */ | |
| 2620 | ||
| 2621 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2622 | ROM_LOAD( "mro-cg2015.u72", 0x00000, 0x8000, CRC(7f73ee5c) SHA1(b6c5d423c8176555c1f32605c328ffbfcf94b656) ) /* Verified CG set for PP0760 set */ | |
| 2623 | ROM_LOAD( "mgo-cg2015.u73", 0x08000, 0x8000, CRC(de270e0e) SHA1(41b207f9380f623ab64dc42224275cccd43417ee) ) | |
| 2624 | ROM_LOAD( "mbo-cg2015.u74", 0x10000, 0x8000, CRC(02e623d9) SHA1(4c689293f5c5a8eb0b17861cf433ae1e01d83545) ) | |
| 2625 | ROM_LOAD( "mxo-cg2015.u75", 0x18000, 0x8000, CRC(0c96b7fc) SHA1(adde93f08db0b957daf77d57a7ab60af3b667f25) ) | |
| 2626 | ||
| 2627 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2628 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2629 | ROM_END | |
| 2630 | ||
| 2631 | ROM_START( pepp0763 ) /* Normal board : 4 of a Kind Bonus Poker (PP0763) */ | |
| 2632 | /* | |
| 2633 | 5-K 2-4 | |
| 2634 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 2635 | ----------------------------------------------------------------- | |
| 2636 | P597A 1 1 3 5 8 10 25 40 80 50 250 800 | |
| 2637 | % Range: 90.2-92.2% Optimum: 94.2% Hit Frequency: 42.7% | |
| 2638 | Programs Available: PP0763, X000763P | |
| 2639 | */ | |
| 2640 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2641 | ROM_LOAD( "pp0763_a46-a75.u68", 0x00000, 0x10000, CRC(8e329f30) SHA1(bf271164a4e90e11630a236fb55c70639bdb3e11) ) /* Game Version: A46, Library Version: A75, Game Lib ver: A0Y */ | |
| 2642 | ||
| 2643 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2644 | ROM_LOAD( "mro-cg2003.u72", 0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) | |
| 2645 | ROM_LOAD( "mgo-cg2003.u73", 0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) ) | |
| 2646 | ROM_LOAD( "mbo-cg2003.u74", 0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) ) | |
| 2647 | ROM_LOAD( "mxo-cg2003.u75", 0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) ) | |
| 2648 | ||
| 2649 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2650 | ROM_LOAD( "cap740.u50", 0x0000, 0x0200, CRC(8020b65f) SHA1(e280b11315acba88799d8875fb2980bee9d5e687) ) | |
| 2651 | ROM_END | |
| 2652 | ||
| 2653 | ROM_START( pepp0775 ) /* Normal board : Standard Draw Poker (PP0775) */ | |
| 2654 | /* | |
| 2655 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 2656 | ---------------------------------------------------------- | |
| 2657 | P40A 1 2 3 4 6 9 15 40 250 800 | |
| 2658 | % Range: 86.5-88.5% Optimum: 92.5% Hit Frequency: 45.5% | |
| 2659 | Programs Available: PP0188 | |
| 2660 | */ | |
| 2661 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2662 | ROM_LOAD( "pp0775_a44-a73.u68", 0x00000, 0x10000, CRC(79a56642) SHA1(dfde6c12551e4f12a59e31c14fbfb9edb57e4fac) ) /* Game Version: A44, Library Version: A73 */ | |
| 2663 | ||
| 2664 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2665 | ROM_LOAD( "mro-cg2129.u72", 0x00000, 0x8000, CRC(f168f9ad) SHA1(acf98a155ccc892ac7c095bbd5538193c444ceb3) ) /* Most Likely WRONG!! But sort of works */ | |
| 2666 | ROM_LOAD( "mgo-cg2129.u73", 0x08000, 0x8000, CRC(40b6df21) SHA1(7de6ff24db09facae040b889612222a6b1ce1b4e) ) /* use until the correct set is verified! */ | |
| 2667 | ROM_LOAD( "mbo-cg2129.u74", 0x10000, 0x8000, CRC(508eab4b) SHA1(ba7920c3190302be924ef110b8a5e4c4c38ea535) ) | |
| 2668 | ROM_LOAD( "mxo-cg2129.u75", 0x18000, 0x8000, CRC(e98a0efd) SHA1(eed9229f904a38435cd34e06b2c22fd323d73e2d) ) | |
| 2669 | ||
| 2670 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2671 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 2672 | ROM_END | |
| 2673 | ||
| 1576 | 2674 | ROM_START( pebe0014 ) /* Normal board : Blackjack (BE0014) */ |
| 2675 | /* Known to exist: | |
| 2676 | BE0013 508-544 | |
| 2677 | BE0013 528-A22 | |
| 2678 | BE0014 526-906 | |
| 2679 | BE0014 527-936 | |
| 2680 | BE0017 532-A22 | |
| 2681 | */ | |
| 1577 | 2682 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1578 | ROM_LOAD( "be0014.u68", 0x00000, 0x10000, CRC(232b32b7) SHA1(a3af9414577642fedc23b4c1911901cd31e9d6e0) ) | |
| 2683 | ROM_LOAD( "be0014_522+a22.u68", 0x00000, 0x10000, CRC(232b32b7) SHA1(a3af9414577642fedc23b4c1911901cd31e9d6e0) ) /* Game Version: 528, Library Version: A22 */ | |
| 1579 | 2684 | |
| 1580 | 2685 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1581 | 2686 | ROM_LOAD( "mro-cg2036.u72", 0x00000, 0x8000, CRC(0a168d06) SHA1(7ed4fb5c7bcacab077bcec030f0465c6eaf3ce1c) ) |
| r25453 | r25454 | |
| 1601 | 2706 | ROM_LOAD( "cap1267.u50", 0x0000, 0x0200, CRC(3dac264f) SHA1(e9c9de42ffd64d4463bee6fa10886a53bc062ff8) ) |
| 1602 | 2707 | ROM_END |
| 1603 | 2708 | |
| 2709 | ROM_START( peke1013 ) /* Normal board : Keno (KE1013) */ | |
| 2710 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2711 | ROM_LOAD( "ke1013.u68", 0x00000, 0x10000, CRC(3b178f94) SHA1(c601150a728d750b73f949ba6e2d2979c4c4be2e) ) | |
| 2712 | ||
| 2713 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2714 | ROM_LOAD( "mro-cg1267.u72", 0x00000, 0x8000, CRC(16498b57) SHA1(9c22726299af7204c4be1c6d8afc4c1b512ad918) ) | |
| 2715 | ROM_LOAD( "mgo-cg1267.u73", 0x08000, 0x8000, CRC(80847c5a) SHA1(8422cd13a91c3c462af5efcfca8615e7eeaa2e52) ) | |
| 2716 | ROM_LOAD( "mbo-cg1267.u74", 0x10000, 0x8000, CRC(ce7af8a7) SHA1(38675122c764b8fa9260246ea99ac0f0750da277) ) | |
| 2717 | ROM_LOAD( "mxo-cg1267.u75", 0x18000, 0x8000, CRC(a4394303) SHA1(30a07028de35f74cc4fb776b0505ca743c8d7b5b) ) | |
| 2718 | ||
| 2719 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2720 | ROM_LOAD( "cap1267.u50", 0x0000, 0x0200, CRC(3dac264f) SHA1(e9c9de42ffd64d4463bee6fa10886a53bc062ff8) ) | |
| 2721 | ROM_END | |
| 2722 | ||
| 1604 | 2723 | ROM_START( peps0014 ) /* Normal board : Super Joker Slots (PS0014) */ |
| 1605 | 2724 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1606 | 2725 | ROM_LOAD( "ps0014.u68", 0x00000, 0x10000, CRC(368c3f58) SHA1(ebefcefbb5386659680719936bff72ad61087343) ) |
| r25453 | r25454 | |
| 1615 | 2734 | ROM_LOAD( "cap0916.u50", 0x0000, 0x0200, CRC(c9a4f87c) SHA1(3c7c53fbf7573f07b334e0529bfd7ccf8d5339b5) ) |
| 1616 | 2735 | ROM_END |
| 1617 | 2736 | |
| 2737 | ROM_START( peps0021 ) /* Normal board : Red White & Blue Slots (PS0021) */ | |
| 2738 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2739 | ROM_LOAD( "ps0021.u68", 0x00000, 0x10000, CRC(e87d5040) SHA1(e7478e845c888d97190f0398da4bfb043222a3c1) ) /* Play 3 Coins */ | |
| 2740 | ||
| 2741 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2742 | ROM_LOAD( "mro-cg0960.u72", 0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) ) | |
| 2743 | ROM_LOAD( "mgo-cg0960.u73", 0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) ) | |
| 2744 | ROM_LOAD( "mbo-cg0960.u74", 0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) ) | |
| 2745 | ROM_LOAD( "mxo-cg0960.u75", 0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) ) | |
| 2746 | ||
| 2747 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2748 | ROM_LOAD( "cap0960.u50", 0x0000, 0x0200, CRC(83d67070) SHA1(4c50abbe750dbd4a461084b0bfc51e38df97e421) ) | |
| 2749 | ROM_END | |
| 2750 | ||
| 1618 | 2751 | ROM_START( peps0022 ) /* Normal board : Red White & Blue Slots (PS0022) */ |
| 1619 | 2752 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1620 | ROM_LOAD( "ps0022.u68", 0x00000, 0x10000, CRC(d65c0939) SHA1(d91f472a43f77f9df8845e97561540f988e522e3) ) | |
| 2753 | ROM_LOAD( "ps0022.u68", 0x00000, 0x10000, CRC(d65c0939) SHA1(d91f472a43f77f9df8845e97561540f988e522e3) ) /* Play 3 Coins */ | |
| 1621 | 2754 | |
| 1622 | 2755 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1623 | 2756 | ROM_LOAD( "mro-cg0960.u72", 0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) ) |
| r25453 | r25454 | |
| 1629 | 2762 | ROM_LOAD( "cap0960.u50", 0x0000, 0x0200, CRC(83d67070) SHA1(4c50abbe750dbd4a461084b0bfc51e38df97e421) ) |
| 1630 | 2763 | ROM_END |
| 1631 | 2764 | |
| 2765 | ROM_START( peps0042 ) /* Normal board : Double Diamond Slots (PS0042) */ | |
| 2766 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2767 | ROM_LOAD( "ps0042.u68", 0x00000, 0x10000, CRC(b891f04b) SHA1(e735de918e6d91fd87cc85ff40f187dc421a8cf2) ) /* Play 3 Coins */ | |
| 2768 | ||
| 2769 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2770 | ROM_LOAD( "mro-cg1003.u72", 0x00000, 0x8000, CRC(41ce0395) SHA1(ae90dbae30e4efed33f83ee7038fb2e5171c1945) ) | |
| 2771 | ROM_LOAD( "mgo-cg1003.u73", 0x08000, 0x8000, CRC(5a383fa1) SHA1(27b1febbdda7332e8d474fc0cca683f451a07090) ) | |
| 2772 | ROM_LOAD( "mbo-cg1003.u74", 0x10000, 0x8000, CRC(5ec00224) SHA1(bb70a4326cd1810b200e193a449061df62085f37) ) | |
| 2773 | ROM_LOAD( "mxo-cg1003.u75", 0x18000, 0x8000, CRC(2ffacd52) SHA1(38126ac4998806a1ddd55e6aa1942044240d41d0) ) | |
| 2774 | ||
| 2775 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2776 | ROM_LOAD( "cap1003.u50", 0x0000, 0x0200, CRC(1fb7b69f) SHA1(cdb609f39ef1ca0ddf389a599f799c269c7163f9) ) | |
| 2777 | ROM_END | |
| 2778 | ||
| 1632 | 2779 | ROM_START( peps0043 ) /* Normal board : Double Diamond Slots (PS0043) */ |
| 1633 | 2780 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1634 | ROM_LOAD( "ps0043.u68", 0x00000, 0x10000, CRC(d612429c) SHA1(95eb4774482a930066456d517fb2e4f67d4df4cb) ) | |
| 2781 | ROM_LOAD( "ps0043.u68", 0x00000, 0x10000, CRC(d612429c) SHA1(95eb4774482a930066456d517fb2e4f67d4df4cb) ) /* Play 3 Coins */ | |
| 1635 | 2782 | |
| 1636 | 2783 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1637 | 2784 | ROM_LOAD( "mro-cg1003.u72", 0x00000, 0x8000, CRC(41ce0395) SHA1(ae90dbae30e4efed33f83ee7038fb2e5171c1945) ) |
| r25453 | r25454 | |
| 1645 | 2792 | |
| 1646 | 2793 | ROM_START( peps0045 ) /* Normal board : Red White & Blue Slots (PS0045) */ |
| 1647 | 2794 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1648 | ROM_LOAD( "ps0045.u68", 0x00000, 0x10000, CRC(de180b84) SHA1(0d592d7d535b0aacbd62c18ac222da770fab7b85) ) | |
| 2795 | ROM_LOAD( "ps0045.u68", 0x00000, 0x10000, CRC(de180b84) SHA1(0d592d7d535b0aacbd62c18ac222da770fab7b85) ) /* Play 3 Lines */ | |
| 1649 | 2796 | |
| 1650 | 2797 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1651 | 2798 | ROM_LOAD( "mro-cg0960.u72", 0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) ) |
| r25453 | r25454 | |
| 1657 | 2804 | ROM_LOAD( "cap0960.u50", 0x0000, 0x0200, CRC(83d67070) SHA1(4c50abbe750dbd4a461084b0bfc51e38df97e421) ) |
| 1658 | 2805 | ROM_END |
| 1659 | 2806 | |
| 2807 | ROM_START( peps0047 ) /* Normal board : Wild Cherry (PS0047) */ | |
| 2808 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2809 | ROM_LOAD( "ps0047.u68", 0x00000, 0x10000, CRC(b7df1cf8) SHA1(5c5392b7b3a387ccb45fe96310b47078215f2ea0) ) /* Play 2 Coins */ | |
| 2810 | ||
| 2811 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2812 | ROM_LOAD( "mro-cg1004.u72", 0x00000, 0x1000, BAD_DUMP CRC(631ca70e) SHA1(c4d9c4ebc9e90bd1704f154f1bf9b0ce91af35b4) ) /* These should each be 0x8000 bytes */ | |
| 2813 | ROM_LOAD( "mgo-cg1004.u73", 0x08000, 0x1000, BAD_DUMP CRC(28b4f718) SHA1(91ca3ebf288bb60f43fb0e7aace1f2ada2e978ba) ) /* Needs to redumped as standard 27C256 roms */ | |
| 2814 | ROM_LOAD( "mbo-cg1004.u74", 0x10000, 0x3000, BAD_DUMP CRC(542a3a45) SHA1(13569e5bac44c2cffd647c27cf40456494d4612e) ) | |
| 2815 | ROM_LOAD( "mxo-cg1004.u75", 0x18000, 0x1000, BAD_DUMP CRC(20242083) SHA1(f9c9bbe559516f1d02cd4f0bab69f0f7765780ca) ) | |
| 2816 | ||
| 2817 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2818 | ROM_LOAD( "cap1004.u50", 0x0000, 0x0200, CRC(5eced808) SHA1(b40b8efa8cbc76cff7560c36939275eb360c6f11) ) | |
| 2819 | ROM_END | |
| 2820 | ||
| 2821 | ROM_START( peps0092 ) /* Normal board : Wild Cherry (PS0092) */ | |
| 2822 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2823 | ROM_LOAD( "ps0092.u68", 0x00000, 0x10000, CRC(d533f6d5) SHA1(9c470f7c474022445aeb45ee8c5757d1b6957a91) ) /* Play 3 Coins */ | |
| 2824 | ||
| 2825 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2826 | ROM_LOAD( "mro-cg1004.u72", 0x00000, 0x1000, BAD_DUMP CRC(631ca70e) SHA1(c4d9c4ebc9e90bd1704f154f1bf9b0ce91af35b4) ) /* These should each be 0x8000 bytes */ | |
| 2827 | ROM_LOAD( "mgo-cg1004.u73", 0x08000, 0x1000, BAD_DUMP CRC(28b4f718) SHA1(91ca3ebf288bb60f43fb0e7aace1f2ada2e978ba) ) /* Needs to redumped as standard 27C256 roms */ | |
| 2828 | ROM_LOAD( "mbo-cg1004.u74", 0x10000, 0x3000, BAD_DUMP CRC(542a3a45) SHA1(13569e5bac44c2cffd647c27cf40456494d4612e) ) | |
| 2829 | ROM_LOAD( "mxo-cg1004.u75", 0x18000, 0x1000, BAD_DUMP CRC(20242083) SHA1(f9c9bbe559516f1d02cd4f0bab69f0f7765780ca) ) | |
| 2830 | ||
| 2831 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2832 | ROM_LOAD( "cap1004.u50", 0x0000, 0x0200, CRC(5eced808) SHA1(b40b8efa8cbc76cff7560c36939275eb360c6f11) ) | |
| 2833 | ROM_END | |
| 2834 | ||
| 2835 | ROM_START( peps0206 ) /* Normal board : Red White & Blue Slots (PS0206) */ | |
| 2836 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2837 | ROM_LOAD( "ps0206.u68", 0x00000, 0x10000, CRC(e165efc0) SHA1(170f917740c63b0b00f424ce02bfd04dc48a1397) ) /* Play 3 Coins */ | |
| 2838 | ||
| 2839 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2840 | ROM_LOAD( "mro-cg0960.u72", 0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) ) | |
| 2841 | ROM_LOAD( "mgo-cg0960.u73", 0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) ) | |
| 2842 | ROM_LOAD( "mbo-cg0960.u74", 0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) ) | |
| 2843 | ROM_LOAD( "mxo-cg0960.u75", 0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) ) | |
| 2844 | ||
| 2845 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2846 | ROM_LOAD( "cap0960.u50", 0x0000, 0x0200, CRC(83d67070) SHA1(4c50abbe750dbd4a461084b0bfc51e38df97e421) ) | |
| 2847 | ROM_END | |
| 2848 | ||
| 1660 | 2849 | ROM_START( peps0308 ) /* Normal board : Double Jackpot Slots (PS0308) */ |
| 1661 | 2850 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1662 | 2851 | ROM_LOAD( "ps0308.u68", 0x00000, 0x10000, CRC(fe30e081) SHA1(d216cbc6336727caf359e6b178c856ab2659cabd) ) |
| r25453 | r25454 | |
| 1699 | 2888 | ROM_LOAD( "cap2266.u50", 0x0000, 0x0200, CRC(ae8b52ac) SHA1(f58d40ee77d7f432dfe5f37954e43cab654c9a4c) ) |
| 1700 | 2889 | ROM_END |
| 1701 | 2890 | |
| 1702 | ROM_START( pex2069p ) /* Superboard : Double Double Bonus Poker (X002069P) */ | |
| 2891 | ROM_START( pex0055p ) /* Superboard : Deuces Wild Poker (X000055P+XP000019) */ | |
| 2892 | /* | |
| 2893 | w/D w/oD | |
| 2894 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 2895 | ---------------------------------------------------------- | |
| 2896 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 2897 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 2898 | Programs Available: PP0055, X000055P, PP0723 | |
| 2899 | */ | |
| 1703 | 2900 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 2901 | ROM_LOAD( "xp000019.u67", 0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) ) | |
| 2902 | ||
| 2903 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 2904 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 2905 | ||
| 2906 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2907 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 2908 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 2909 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 2910 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 2911 | ||
| 2912 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2913 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 2914 | ROM_END | |
| 2915 | ||
| 2916 | ROM_START( pex0055pa ) /* Superboard : Deuces Wild Poker (X000055P+XP000022) */ | |
| 2917 | /* | |
| 2918 | w/D w/oD | |
| 2919 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 2920 | ---------------------------------------------------------- | |
| 2921 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 2922 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 2923 | Programs Available: PP0055, X000055P, PP0723 | |
| 2924 | */ | |
| 2925 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2926 | ROM_LOAD( "xp000022.u67", 0x00000, 0x10000, CRC(7930741b) SHA1(d3b83fd08a458cc794301ef612f8c7b13d4b2050) ) | |
| 2927 | ||
| 2928 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 2929 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 2930 | ||
| 2931 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2932 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 2933 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 2934 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 2935 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 2936 | ||
| 2937 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2938 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 2939 | ROM_END | |
| 2940 | ||
| 2941 | ROM_START( pex0055pb ) /* Superboard : Deuces Wild Poker (X000055P+XP000023) */ | |
| 2942 | /* | |
| 2943 | w/D w/oD | |
| 2944 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 2945 | ---------------------------------------------------------- | |
| 2946 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 2947 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 2948 | Programs Available: PP0055, X000055P, PP0723 | |
| 2949 | */ | |
| 2950 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2951 | ROM_LOAD( "xp000023.u67", 0x00000, 0x10000, CRC(d2ad7dd3) SHA1(9c5fe5ca5a5a682566e96c6802b7164730cda919) ) /* No Double-up */ | |
| 2952 | ||
| 2953 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 2954 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 2955 | ||
| 2956 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2957 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 2958 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 2959 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 2960 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 2961 | ||
| 2962 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2963 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 2964 | ROM_END | |
| 2965 | ||
| 2966 | ROM_START( pex0055pc ) /* Superboard : Deuces Wild Poker (X000055P+XP000028) */ | |
| 2967 | /* | |
| 2968 | w/D w/oD | |
| 2969 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 2970 | ---------------------------------------------------------- | |
| 2971 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 2972 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 2973 | Programs Available: PP0055, X000055P, PP0723 | |
| 2974 | */ | |
| 2975 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 2976 | ROM_LOAD( "xp000028.u67", 0x00000, 0x10000, CRC(1407fe54) SHA1(4615efbba9a58698e2cfd53c93fa133678101441) ) /* Works */ | |
| 2977 | ||
| 2978 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 2979 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 2980 | ||
| 2981 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 2982 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 2983 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 2984 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 2985 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 2986 | ||
| 2987 | ROM_REGION( 0x200, "proms", 0 ) | |
| 2988 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 2989 | ROM_END | |
| 2990 | ||
| 2991 | ROM_START( pex0055pd ) /* Superboard : Deuces Wild Poker (X000055P+XP000035) */ | |
| 2992 | /* | |
| 2993 | w/D w/oD | |
| 2994 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 2995 | ---------------------------------------------------------- | |
| 2996 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 2997 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 2998 | Programs Available: PP0055, X000055P, PP0723 | |
| 2999 | */ | |
| 3000 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3001 | ROM_LOAD( "xp000035.u67", 0x00000, 0x10000, CRC(aa16e53b) SHA1(5a37c7af2c09be26e8734b36da765fd408754771) ) | |
| 3002 | ||
| 3003 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3004 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3005 | ||
| 3006 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3007 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3008 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3009 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3010 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3011 | ||
| 3012 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3013 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3014 | ROM_END | |
| 3015 | ||
| 3016 | ROM_START( pex0055pe ) /* Superboard : Deuces Wild Poker (X000055P+XP000038) */ | |
| 3017 | /* | |
| 3018 | w/D w/oD | |
| 3019 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3020 | ---------------------------------------------------------- | |
| 3021 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3022 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3023 | Programs Available: PP0055, X000055P, PP0723 | |
| 3024 | */ | |
| 3025 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1704 | 3026 | ROM_LOAD( "xp000038.u67", 0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) |
| 1705 | 3027 | |
| 1706 | 3028 | ROM_REGION( 0x10000, "user1", 0 ) |
| 1707 | ROM_LOAD( "x00 | |
| 3029 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 1708 | 3030 | |
| 1709 | 3031 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1710 | 3032 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) |
| r25453 | r25454 | |
| 1716 | 3038 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) |
| 1717 | 3039 | ROM_END |
| 1718 | 3040 | |
| 1719 | ROM_START( pexp0019 ) /* Superboard : Deuces Wild Poker (XP000019) */ | |
| 3041 | ROM_START( pex0055pf ) /* Superboard : Deuces Wild Poker (X000055P+XP000040) */ | |
| 3042 | /* | |
| 3043 | w/D w/oD | |
| 3044 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3045 | ---------------------------------------------------------- | |
| 3046 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3047 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3048 | Programs Available: PP0055, X000055P, PP0723 | |
| 3049 | */ | |
| 1720 | 3050 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 3051 | ROM_LOAD( "xp000040.u67", 0x00000, 0x10000, CRC(7b30b1d5) SHA1(394c964cf6269a4cd9b9debe8f4a5a0c96db06a7) ) | |
| 3052 | ||
| 3053 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3054 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3055 | ||
| 3056 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3057 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3058 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3059 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3060 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3061 | ||
| 3062 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3063 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3064 | ROM_END | |
| 3065 | ||
| 3066 | ROM_START( pex0055pg ) /* Superboard : Deuces Wild Poker (X000055P+XP000053) */ | |
| 3067 | /* | |
| 3068 | w/D w/oD | |
| 3069 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3070 | ---------------------------------------------------------- | |
| 3071 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3072 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3073 | Programs Available: PP0055, X000055P, PP0723 | |
| 3074 | */ | |
| 3075 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3076 | ROM_LOAD( "xp000053.u67", 0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) ) | |
| 3077 | ||
| 3078 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3079 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3080 | ||
| 3081 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3082 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3083 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3084 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3085 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3086 | ||
| 3087 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3088 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3089 | ROM_END | |
| 3090 | ||
| 3091 | ROM_START( pex0055ph ) /* Superboard : Deuces Wild Poker (X000055P+XP000055) */ | |
| 3092 | /* | |
| 3093 | w/D w/oD | |
| 3094 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3095 | ---------------------------------------------------------- | |
| 3096 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3097 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3098 | Programs Available: PP0055, X000055P, PP0723 | |
| 3099 | */ | |
| 3100 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3101 | ROM_LOAD( "xp000055.u67", 0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) ) | |
| 3102 | ||
| 3103 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3104 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3105 | ||
| 3106 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3107 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3108 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3109 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3110 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3111 | ||
| 3112 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3113 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3114 | ROM_END | |
| 3115 | ||
| 3116 | ROM_START( pex0055pi ) /* Superboard : Deuces Wild Poker (X000055P+XP000063) */ | |
| 3117 | /* | |
| 3118 | w/D w/oD | |
| 3119 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3120 | ---------------------------------------------------------- | |
| 3121 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3122 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3123 | Programs Available: PP0055, X000055P, PP0723 | |
| 3124 | */ | |
| 3125 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3126 | ROM_LOAD( "xp000063.u67", 0x00000, 0x10000, CRC(008dcaf9) SHA1(34203f602a531c1a58febdf31fe7a94c2c09fcb4) ) | |
| 3127 | ||
| 3128 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3129 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3130 | ||
| 3131 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3132 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3133 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3134 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3135 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3136 | ||
| 3137 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3138 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3139 | ROM_END | |
| 3140 | ||
| 3141 | ROM_START( pex0055pj ) /* Superboard : Deuces Wild Poker (X000055P+XP000075) */ | |
| 3142 | /* | |
| 3143 | w/D w/oD | |
| 3144 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3145 | ---------------------------------------------------------- | |
| 3146 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3147 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3148 | Programs Available: PP0055, X000055P, PP0723 | |
| 3149 | */ | |
| 3150 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3151 | ROM_LOAD( "xp000075.u67", 0x00000, 0x10000, CRC(79b3013f) SHA1(98e6f2c7756643bc9c2371c015cba7ed2c314a60) ) /* English / Spanish */ | |
| 3152 | ||
| 3153 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3154 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3155 | ||
| 3156 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3157 | ROM_LOAD( "mro-cg2324.u77", 0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) /* Contains needed English / Spanish graphics */ | |
| 3158 | ROM_LOAD( "mgo-cg2324.u78", 0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) ) | |
| 3159 | ROM_LOAD( "mbo-cg2324.u79", 0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) ) | |
| 3160 | ROM_LOAD( "mxo-cg2324.u80", 0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) ) | |
| 3161 | ||
| 3162 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3163 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3164 | ROM_END | |
| 3165 | ||
| 3166 | ROM_START( pex0055pk ) /* Superboard : Deuces Wild Poker (X000055P+XP000079) */ | |
| 3167 | /* | |
| 3168 | w/D w/oD | |
| 3169 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3170 | ---------------------------------------------------------- | |
| 3171 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3172 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3173 | Programs Available: PP0055, X000055P, PP0723 | |
| 3174 | */ | |
| 3175 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3176 | ROM_LOAD( "xp000079.u67", 0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) ) | |
| 3177 | ||
| 3178 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3179 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3180 | ||
| 3181 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3182 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3183 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3184 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3185 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3186 | ||
| 3187 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3188 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3189 | ROM_END | |
| 3190 | ||
| 3191 | ROM_START( pex0055pl ) /* Superboard : Deuces Wild Poker (X000055P+XP000094) */ | |
| 3192 | /* | |
| 3193 | w/D w/oD | |
| 3194 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3195 | ---------------------------------------------------------- | |
| 3196 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3197 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3198 | Programs Available: PP0055, X000055P, PP0723 | |
| 3199 | */ | |
| 3200 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3201 | ROM_LOAD( "xp000094.u67", 0x00000, 0x10000, CRC(97ff8171) SHA1(ca714f201a7425df81b830698f65640570ac5935) ) /* Coupon Compatible */ | |
| 3202 | ||
| 3203 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3204 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3205 | ||
| 3206 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3207 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3208 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3209 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3210 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3211 | ||
| 3212 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3213 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3214 | ROM_END | |
| 3215 | ||
| 3216 | ROM_START( pex0055pm ) /* Superboard : Deuces Wild Poker (X000055P+XP000095) */ | |
| 3217 | /* | |
| 3218 | w/D w/oD | |
| 3219 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3220 | ---------------------------------------------------------- | |
| 3221 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3222 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3223 | Programs Available: PP0055, X000055P, PP0723 | |
| 3224 | */ | |
| 3225 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3226 | ROM_LOAD( "xp000095.u67", 0x00000, 0x10000, CRC(6a1679ea) SHA1(421e8c9eacc8e397267a48cad7ae96f541b1c19a) ) | |
| 3227 | ||
| 3228 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3229 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3230 | ||
| 3231 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3232 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3233 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3234 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3235 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3236 | ||
| 3237 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3238 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3239 | ROM_END | |
| 3240 | ||
| 3241 | ROM_START( pex0055pn ) /* Superboard : Deuces Wild Poker (X000055P+XP000098) */ | |
| 3242 | /* | |
| 3243 | w/D w/oD | |
| 3244 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3245 | ---------------------------------------------------------- | |
| 3246 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3247 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3248 | Programs Available: PP0055, X000055P, PP0723 | |
| 3249 | */ | |
| 3250 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3251 | ROM_LOAD( "xp000098.u67", 0x00000, 0x10000, CRC(12257ad8) SHA1(8f613377519850f8f711ccb827685dece018c735) ) | |
| 3252 | ||
| 3253 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3254 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3255 | ||
| 3256 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3257 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3258 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3259 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3260 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3261 | ||
| 3262 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3263 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3264 | ROM_END | |
| 3265 | ||
| 3266 | ROM_START( pex0055po ) /* Superboard : Deuces Wild Poker (X000055P+XP000102) */ | |
| 3267 | /* | |
| 3268 | w/D w/oD | |
| 3269 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3270 | ---------------------------------------------------------- | |
| 3271 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3272 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3273 | Programs Available: PP0055, X000055P, PP0723 | |
| 3274 | */ | |
| 3275 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3276 | ROM_LOAD( "xp000102.u67", 0x00000, 0x10000, CRC(76d37639) SHA1(c7190ee3bff135b39ce42428eadef3ca067508b4) ) /* English / Spanish */ | |
| 3277 | ||
| 3278 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3279 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3280 | ||
| 3281 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3282 | ROM_LOAD( "mro-cg2324.u77", 0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) /* Contains needed English / Spanish graphics */ | |
| 3283 | ROM_LOAD( "mgo-cg2324.u78", 0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) ) | |
| 3284 | ROM_LOAD( "mbo-cg2324.u79", 0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) ) | |
| 3285 | ROM_LOAD( "mxo-cg2324.u80", 0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) ) | |
| 3286 | ||
| 3287 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3288 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3289 | ROM_END | |
| 3290 | ||
| 3291 | ROM_START( pex0055pp ) /* Superboard : Deuces Wild Poker (X000055P+XP000104) */ | |
| 3292 | /* | |
| 3293 | w/D w/oD | |
| 3294 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3295 | ---------------------------------------------------------- | |
| 3296 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3297 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3298 | Programs Available: PP0055, X000055P, PP0723 | |
| 3299 | */ | |
| 3300 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3301 | ROM_LOAD( "xp000104.u67", 0x00000, 0x10000, CRC(53dbef8a) SHA1(0be0d0f0ac33ae86e79ba7a1151a281774f80af9) ) /* Works */ | |
| 3302 | ||
| 3303 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3304 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3305 | ||
| 3306 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3307 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3308 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3309 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3310 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3311 | ||
| 3312 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3313 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3314 | ROM_END | |
| 3315 | ||
| 3316 | ROM_START( pex0055pq ) /* Superboard : Deuces Wild Poker (X000055P+XP000112) */ | |
| 3317 | /* | |
| 3318 | w/D w/oD | |
| 3319 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3320 | ---------------------------------------------------------- | |
| 3321 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3322 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3323 | Programs Available: PP0055, X000055P, PP0723 | |
| 3324 | */ | |
| 3325 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3326 | ROM_LOAD( "xp000112.u67", 0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) /* No Double-up */ | |
| 3327 | ||
| 3328 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3329 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3330 | ||
| 3331 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3332 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3333 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3334 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3335 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3336 | ||
| 3337 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3338 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3339 | ROM_END | |
| 3340 | ||
| 3341 | ROM_START( pex0055pr ) /* Superboard : Deuces Wild Poker (X000055P+XP000126) */ | |
| 3342 | /* | |
| 3343 | w/D w/oD | |
| 3344 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF (Bonus) | |
| 3345 | ---------------------------------------------------------- | |
| 3346 | P32A 1 2 2 3 4 10 15 25 200 250 800 | |
| 3347 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 45.1% | |
| 3348 | Programs Available: PP0055, X000055P, PP0723 | |
| 3349 | */ | |
| 3350 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3351 | ROM_LOAD( "xp000126.u67", 0x00000, 0x10000, CRC(e41685ac) SHA1(a81ad3f352eebcc0684fc20c73a6935288207215) ) /* English / Spanish */ | |
| 3352 | ||
| 3353 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3354 | ROM_LOAD( "x000055p.u66", 0x00000, 0x010000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */ | |
| 3355 | ||
| 3356 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3357 | ROM_LOAD( "mro-cg2324.u77", 0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) /* Contains needed English / Spanish graphics */ | |
| 3358 | ROM_LOAD( "mgo-cg2324.u78", 0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) ) | |
| 3359 | ROM_LOAD( "mbo-cg2324.u79", 0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) ) | |
| 3360 | ROM_LOAD( "mxo-cg2324.u80", 0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) ) | |
| 3361 | ||
| 3362 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3363 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3364 | ROM_END | |
| 3365 | ||
| 3366 | ROM_START( pex0225p ) /* Superboard : Dueces & Joker Wild Poker 1-100 Coins (X000225P+XP000079) */ | |
| 3367 | /* | |
| 3368 | With w/o w/o With | |
| 3369 | Wild JKR Wild JKR | |
| 3370 | PayTable 3K STR FL FH 4K SF 5K RF 4D RF 4D (Bonus) | |
| 3371 | -------------------------------------------------------------------- | |
| 3372 | P76N 1 1 3 3 3 6 9 12 25 800 1000 2000 | |
| 3373 | % Range: 95.1-97.1% Optimum: 99.1% Hit Frequency: 50.4% | |
| 3374 | Programs Available: PP0431, PP0812, PP0813, X000225P & PP0225 - Non Double-up Only | |
| 3375 | */ | |
| 3376 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3377 | ROM_LOAD( "xp000079.u67", 0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) ) | |
| 3378 | ||
| 3379 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3380 | ROM_LOAD( "x000225p.u66", 0x00000, 0x010000, CRC(d965dd5e) SHA1(1f3e3acb9319e26fa8563f57d1c75940a4445959) ) /* Dueces & Joker Wild Poker */ | |
| 3381 | ||
| 3382 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3383 | ROM_LOAD( "mro-cg2242.u77", 0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) ) | |
| 3384 | ROM_LOAD( "mgo-cg2242.u78", 0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) ) | |
| 3385 | ROM_LOAD( "mbo-cg2242.u79", 0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) ) | |
| 3386 | ROM_LOAD( "mxo-cg2242.u80", 0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) ) | |
| 3387 | ||
| 3388 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3389 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3390 | ROM_END | |
| 3391 | ||
| 3392 | ROM_START( pex2025p ) /* Superboard : Deuces Wild Poker (X002025P+XP000019) */ | |
| 3393 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1721 | 3394 | ROM_LOAD( "xp000019.u67", 0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) ) |
| 1722 | 3395 | |
| 1723 | 3396 | ROM_REGION( 0x10000, "user1", 0 ) |
| 1724 | ROM_LOAD( "x002025p.u66", 0x00000, 0x10000, CRC(f3dac423) SHA1(e9394d330deb3b8a1001e57e72a506cd9098f161) ) | |
| 3397 | ROM_LOAD( "x002025p.u66", 0x00000, 0x10000, CRC(f3dac423) SHA1(e9394d330deb3b8a1001e57e72a506cd9098f161) ) /* Deuces Wild Bonus Poker */ | |
| 1725 | 3398 | |
| 1726 | 3399 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1727 | 3400 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) |
| r25453 | r25454 | |
| 1733 | 3406 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) |
| 1734 | 3407 | ROM_END |
| 1735 | 3408 | |
| 1736 | ROM_START( pex | |
| 3409 | ROM_START( pex2026p ) /* Superboard : Deuces Wild Poker (X002026P+XP000019) */ | |
| 1737 | 3410 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 3411 | ROM_LOAD( "xp000019.u67", 0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) ) | |
| 3412 | ||
| 3413 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3414 | ROM_LOAD( "x002026p.u66", 0x00000, 0x10000, CRC(7fcbc10a) SHA1(5d50b356ae1a3461a5916b469f85b690b086e675) ) /* Deuces Wild Bonus Poker */ | |
| 3415 | ||
| 3416 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3417 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3418 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3419 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3420 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3421 | ||
| 3422 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3423 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3424 | ROM_END | |
| 3425 | ||
| 3426 | ROM_START( pex2027p ) /* Superboard : Deuces Wild Poker (X002027P+XP000019) */ | |
| 3427 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3428 | ROM_LOAD( "xp000019.u67", 0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) ) | |
| 3429 | ||
| 3430 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3431 | ROM_LOAD( "x002027p.u66", 0x00000, 0x10000, CRC(40dbc35a) SHA1(56bf79738e35a22d1f23d76cd6197c8949eba3fb) ) /* Deuces Wild Bonus Poker */ | |
| 3432 | ||
| 3433 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3434 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3435 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3436 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3437 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3438 | ||
| 3439 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3440 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3441 | ROM_END | |
| 3442 | ||
| 3443 | ROM_START( pex2029p ) /* Superboard : Deuces Wild Poker (X002029P+XP000019) */ | |
| 3444 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3445 | ROM_LOAD( "xp000019.u67", 0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) ) | |
| 3446 | ||
| 3447 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3448 | ROM_LOAD( "x002029p.u66", 0x00000, 0x10000, CRC(e2f6fb89) SHA1(4b60b580b00b4268d1cb9065ffe0d21f8fa6a931) ) /* Deuces Wild Bonus Poker */ | |
| 3449 | ||
| 3450 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3451 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3452 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3453 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3454 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3455 | ||
| 3456 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3457 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3458 | ROM_END | |
| 3459 | ||
| 3460 | ROM_START( pex2031p ) /* Superboard : Lucky Deal Poker (X002031P+XP000112) */ | |
| 3461 | /* | |
| 3462 | 5-K 2-4 | |
| 3463 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 3464 | ----------------------------------------------------------------- | |
| 3465 | P567AL 1 1 3 4 6 10 25 40 80 50 250 800 | |
| 3466 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 44.9% | |
| 3467 | Programs Available: X002031P | |
| 3468 | */ | |
| 3469 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 1738 | 3470 | ROM_LOAD( "xp000112.u67", 0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) |
| 1739 | 3471 | |
| 1740 | 3472 | ROM_REGION( 0x10000, "user1", 0 ) |
| 1741 | ROM_LOAD( "x00203 | |
| 3473 | ROM_LOAD( "x002031p.u66", 0x00000, 0x010000, CRC(c883fbdd) SHA1(c0444ffdac1ffe542d0d6a65f3c810346e2b2e05) ) /* Lucky Deal Poker */ | |
| 1742 | 3474 | |
| 1743 | 3475 | ROM_REGION( 0x020000, "gfx1", 0 ) |
| 1744 | 3476 | ROM_LOAD( "mro-cg2324.u77", 0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) |
| r25453 | r25454 | |
| 1750 | 3482 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) |
| 1751 | 3483 | ROM_END |
| 1752 | 3484 | |
| 3485 | ROM_START( pex2035p ) /* Superboard : White Hot Aces Poker (X002035P+XP000112) */ | |
| 3486 | /* | |
| 3487 | 5-K 2-4 | |
| 3488 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 3489 | ----------------------------------------------------------------- | |
| 3490 | P581A 1 1 3 4 5 7 50 120 240 80 250 800 | |
| 3491 | % Range: 93.4-95.4% Optimum: 97.4% Hit Frequency: 44.7% | |
| 3492 | Programs Available: X002035P | |
| 3493 | */ | |
| 3494 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3495 | ROM_LOAD( "xp000112.u67", 0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) | |
| 3496 | ||
| 3497 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3498 | ROM_LOAD( "x002035p.u66", 0x00000, 0x10000, CRC(dc3f0742) SHA1(d57cf3353b81f41895458019e47203f98645f17a) ) /* White Hot Aces Poker */ | |
| 3499 | ||
| 3500 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3501 | ROM_LOAD( "mro-cg2324.u77", 0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) | |
| 3502 | ROM_LOAD( "mgo-cg2324.u78", 0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) ) | |
| 3503 | ROM_LOAD( "mbo-cg2324.u79", 0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) ) | |
| 3504 | ROM_LOAD( "mxo-cg2324.u80", 0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) ) | |
| 3505 | ||
| 3506 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3507 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 3508 | ROM_END | |
| 3509 | ||
| 3510 | ROM_START( pex2036p ) /* Superboard : White Hot Aces Poker (X002036P+XP000112) */ | |
| 3511 | /* | |
| 3512 | 5-K 2-4 | |
| 3513 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 3514 | ----------------------------------------------------------------- | |
| 3515 | P582A 1 1 3 4 5 6 50 120 240 80 250 800 | |
| 3516 | % Range: 92.4-94.4% Optimum: 96.4% Hit Frequency: 44.7% | |
| 3517 | Programs Available: X002036P | |
| 3518 | */ | |
| 3519 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3520 | ROM_LOAD( "xp000112.u67", 0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) | |
| 3521 | ||
| 3522 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3523 | ROM_LOAD( "x002036p.u66", 0x00000, 0x10000, CRC(69207baf) SHA1(fe038b969106ae5cdc8dde1c06497be9c7b5b8bf) ) /* White Hot Aces Poker */ | |
| 3524 | ||
| 3525 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3526 | ROM_LOAD( "mro-cg2324.u77", 0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) | |
| 3527 | ROM_LOAD( "mgo-cg2324.u78", 0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) ) | |
| 3528 | ROM_LOAD( "mbo-cg2324.u79", 0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) ) | |
| 3529 | ROM_LOAD( "mxo-cg2324.u80", 0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) ) | |
| 3530 | ||
| 3531 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3532 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 3533 | ROM_END | |
| 3534 | ||
| 3535 | ROM_START( pex2040p ) /* Superboard : Nevada Bonus Poker (X002040P+XP000038) */ | |
| 3536 | /* | |
| 3537 | 2-K | |
| 3538 | PayTable Js+ 2PR 3K 3A STR FL FH 4K 4A SF RF (Bonus) | |
| 3539 | ----------------------------------------------------------------- | |
| 3540 | P578A 1 1 3 6 5 6 9 25 200 100 250 800 | |
| 3541 | % Range: 90.8-92.8% Optimum: 94.8% Hit Frequency: 44.2% | |
| 3542 | Programs Available: X002040P | |
| 3543 | */ | |
| 3544 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3545 | ROM_LOAD( "xp000038.u67", 0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) | |
| 3546 | ||
| 3547 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3548 | ROM_LOAD( "x002040p.u66", 0x00000, 0x010000, CRC(38acb477) SHA1(894f5861ac84323e50e8972602251f2873988e6c) ) /* Nevada Bonus Poker */ | |
| 3549 | ||
| 3550 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3551 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3552 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3553 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3554 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3555 | ||
| 3556 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3557 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3558 | ROM_END | |
| 3559 | ||
| 3560 | ROM_START( pex2042p ) /* Superboard : Triple Bonus Poker (X002042P+XP000038) */ | |
| 3561 | /* | |
| 3562 | 5-K 2-4 | |
| 3563 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 3564 | ----------------------------------------------------------------- | |
| 3565 | P604A 1 1 3 4 7 11 75 120 240 50 250 800 | |
| 3566 | % Range: 95.6-97.6% Optimum: 99.6% Hit Frequency: 34.7% | |
| 3567 | Programs Available: X002042P | |
| 3568 | */ | |
| 3569 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3570 | ROM_LOAD( "xp000038.u67", 0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) | |
| 3571 | ||
| 3572 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3573 | ROM_LOAD( "x002042p.u66", 0x00000, 0x010000, CRC(12787a36) SHA1(4ef478cc5c23694ffa6733e2fc47c2b6f545c30a) ) /* Triple Bonus Poker */ | |
| 3574 | ||
| 3575 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3576 | ROM_LOAD( "mro-cg2275.u77", 0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) ) | |
| 3577 | ROM_LOAD( "mgo-cg2275.u78", 0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) ) | |
| 3578 | ROM_LOAD( "mbo-cg2275.u79", 0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) ) | |
| 3579 | ROM_LOAD( "mxo-cg2275.u80", 0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) ) | |
| 3580 | ||
| 3581 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3582 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3583 | ROM_END | |
| 3584 | ||
| 3585 | ROM_START( pex2045p ) /* Superboard : Triple Bonus Poker (X002045P+XP000038) */ | |
| 3586 | /* | |
| 3587 | 5-K 2-4 | |
| 3588 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 3589 | ----------------------------------------------------------------- | |
| 3590 | P607A 1 1 3 4 6 9 75 120 240 50 250 800 | |
| 3591 | % Range: 91.9-93.9% Optimum: 95.9% Hit Frequency: 32.5% | |
| 3592 | Programs Available: X002045P | |
| 3593 | */ | |
| 3594 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3595 | ROM_LOAD( "xp000038.u67", 0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) | |
| 3596 | ||
| 3597 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3598 | ROM_LOAD( "x002045p.u66", 0x00000, 0x010000, CRC(75fe81db) SHA1(980bcc06b54a1ef78e3beac1db83b73e17a04818) ) /* Triple Bonus Poker */ | |
| 3599 | ||
| 3600 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3601 | ROM_LOAD( "mro-cg2275.u77", 0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) ) | |
| 3602 | ROM_LOAD( "mgo-cg2275.u78", 0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) ) | |
| 3603 | ROM_LOAD( "mbo-cg2275.u79", 0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) ) | |
| 3604 | ROM_LOAD( "mxo-cg2275.u80", 0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) ) | |
| 3605 | ||
| 3606 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3607 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3608 | ROM_END | |
| 3609 | ||
| 3610 | ROM_START( pex2067p ) /* Superboard : Double Double Bonus Poker (X002067P+XP000038) */ | |
| 3611 | /* | |
| 3612 | 2-4 | |
| 3613 | 4K 4A | |
| 3614 | 5-K 2-4 with with | |
| 3615 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A A,2-4 2-4 SF RF (Bonus) | |
| 3616 | ----------------------------------------------------------------------------- | |
| 3617 | P505A 1 1 3 4 5 9 50 80 160 160 400 50 250 800 | |
| 3618 | % Range: 93.9-95.9% Optimum: 97.9% Hit Frequency: 44.8% | |
| 3619 | Programs Available: X002067P | |
| 3620 | */ | |
| 3621 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3622 | ROM_LOAD( "xp000038.u67", 0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) | |
| 3623 | ||
| 3624 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3625 | ROM_LOAD( "x002067p.u66", 0x00000, 0x010000, CRC(c62adf21) SHA1(25e037f91ef1860d1d45cae12f21bdd1c39ba264) ) /* Double Double Bonus Poker */ | |
| 3626 | ||
| 3627 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3628 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3629 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3630 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3631 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3632 | ||
| 3633 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3634 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3635 | ROM_END | |
| 3636 | ||
| 3637 | ROM_START( pex2068p ) /* Superboard : Double Double Bonus Poker (X002068P+XP000038) */ | |
| 3638 | /* | |
| 3639 | 2-4 4A | |
| 3640 | 5-K 2-4 4K with | |
| 3641 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A with A 2-4 SF RF (Bonus) | |
| 3642 | ----------------------------------------------------------------------------- | |
| 3643 | P506A 1 1 3 4 5 8 50 80 160 160 400 50 250 800 | |
| 3644 | % Range: 92.8-94.8% Optimum: 96.8% Hit Frequency: 44.8% | |
| 3645 | Programs Available: X002068P | |
| 3646 | */ | |
| 3647 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3648 | ROM_LOAD( "xp000038.u67", 0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) | |
| 3649 | ||
| 3650 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3651 | ROM_LOAD( "x002068p.u66", 0x00000, 0x010000, CRC(a5e4279d) SHA1(c4dfd1e77a03a94d9911d1754b5874200bfe6c71) ) /* Double Double Bonus Poker */ | |
| 3652 | ||
| 3653 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3654 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3655 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3656 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3657 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3658 | ||
| 3659 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3660 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3661 | ROM_END | |
| 3662 | ||
| 3663 | ROM_START( pex2069p ) /* Superboard : Double Double Bonus Poker (X002069P+XP000038) */ | |
| 3664 | /* | |
| 3665 | 2-4 | |
| 3666 | 4K 4A | |
| 3667 | 5-K 2-4 with with | |
| 3668 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A A,2-4 2-4 SF RF (Bonus) | |
| 3669 | ----------------------------------------------------------------------------- | |
| 3670 | P507A 1 1 3 4 5 7 50 80 160 160 400 50 250 800 | |
| 3671 | % Range: 91.6-93.6% Optimum: 95.6% Hit Frequency: 45.0% | |
| 3672 | Programs Available: X002069P | |
| 3673 | */ | |
| 3674 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3675 | ROM_LOAD( "xp000038.u67", 0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) | |
| 3676 | ||
| 3677 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3678 | ROM_LOAD( "x002069p.u66", 0x00000, 0x10000, CRC(875ecfcf) SHA1(80472cb43b36e518216e60a9b4883a81163718a2) ) /* Double Double Bonus Poker */ | |
| 3679 | ||
| 3680 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3681 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3682 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3683 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3684 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3685 | ||
| 3686 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3687 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3688 | ROM_END | |
| 3689 | ||
| 3690 | ROM_START( pex2070p ) /* Superboard : Double Double Bonus Poker (X002070P+XP000038) */ | |
| 3691 | /* | |
| 3692 | 2-4 | |
| 3693 | 4K 4A | |
| 3694 | 5-K 2-4 with with | |
| 3695 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A A,2-4 2-4 SF RF (Bonus) | |
| 3696 | ----------------------------------------------------------------------------- | |
| 3697 | P508A 1 1 3 4 5 6 50 80 160 160 400 50 250 800 | |
| 3698 | % Range: 90.5-92.5% Optimum: 94.5% Hit Frequency: 45.0% | |
| 3699 | Programs Available: X002070P | |
| 3700 | */ | |
| 3701 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3702 | ROM_LOAD( "xp000038.u67", 0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) | |
| 3703 | ||
| 3704 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3705 | ROM_LOAD( "x002070p.u66", 0x00000, 0x010000, CRC(e7732ff9) SHA1(de1a68040d46e78831a6c806f26f253b4ab014b5) ) /* Double Double Bonus Poker */ | |
| 3706 | ||
| 3707 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3708 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3709 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3710 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3711 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3712 | ||
| 3713 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3714 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3715 | ROM_END | |
| 3716 | ||
| 3717 | ROM_START( pex2172p ) /* Superboard : Double Ace$ Bonus Poker (X002172P+XP000112) */ | |
| 3718 | /* | |
| 3719 | 5-K 2-4 | |
| 3720 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 3721 | ----------------------------------------------------------------- | |
| 3722 | P903A 1 2 3 4 5 7 25 40 80 50 250 800 | |
| 3723 | % Range: 94.3-96.3% Optimum: 98.3% Hit Frequency: 45.7% | |
| 3724 | Programs Available: X002172P | |
| 3725 | */ | |
| 3726 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3727 | ROM_LOAD( "xp000112.u67", 0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) | |
| 3728 | ||
| 3729 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3730 | ROM_LOAD( "x002172p.u66", 0x00000, 0x010000, CRC(d4c44409) SHA1(8082b76a51fa131751b8c2c446cb29fb04f531dc) ) /* Double Ace$ Bonus Poker */ | |
| 3731 | ||
| 3732 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3733 | ROM_LOAD( "mro-cg2172.u77", 0x00000, 0x8000, NO_DUMP ) /* Original version came with CG2172 + CAPX2172 */ | |
| 3734 | ROM_LOAD( "mgo-cg2172.u78", 0x08000, 0x8000, NO_DUMP ) | |
| 3735 | ROM_LOAD( "mbo-cg2172.u79", 0x10000, 0x8000, NO_DUMP ) | |
| 3736 | ROM_LOAD( "mxo-cg2172.u80", 0x18000, 0x8000, NO_DUMP ) | |
| 3737 | ROM_LOAD( "mro-cg2324.u77", 0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) /* WRONG!! */ | |
| 3738 | ROM_LOAD( "mgo-cg2324.u78", 0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) ) | |
| 3739 | ROM_LOAD( "mbo-cg2324.u79", 0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) ) | |
| 3740 | ROM_LOAD( "mxo-cg2324.u80", 0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) ) | |
| 3741 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3742 | ROM_LOAD( "capx2172.u43", 0x0000, 0x0200, NO_DUMP ) /* Original version came with CG2271 + CAPX2271 */ | |
| 3743 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) /* WRONG!! */ | |
| 3744 | ROM_END | |
| 3745 | ||
| 3746 | ROM_START( pex2241p ) /* Superboard : 4 of a Kind Bonus Poker 1-100 Coins (X002241P+XP000079) */ | |
| 3747 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3748 | ROM_LOAD( "xp000079.u67", 0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) ) | |
| 3749 | ||
| 3750 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3751 | ROM_LOAD( "x002241p.u66", 0x00000, 0x10000, CRC(c6b45cf4) SHA1(3d47e8ff5c915c4b35e4a2ffe20fcc950e838454) ) /* 4 of a Kind Bonus Poker */ | |
| 3752 | ||
| 3753 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3754 | ROM_LOAD( "mro-cg2242.u77", 0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) ) | |
| 3755 | ROM_LOAD( "mgo-cg2242.u78", 0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) ) | |
| 3756 | ROM_LOAD( "mbo-cg2242.u79", 0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) ) | |
| 3757 | ROM_LOAD( "mxo-cg2242.u80", 0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) ) | |
| 3758 | ||
| 3759 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3760 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3761 | ROM_END | |
| 3762 | ||
| 3763 | ROM_START( pex2244p ) /* Superboard : 4 of a Kind Bonus Poker (X002244P+XP000079) */ | |
| 3764 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3765 | ROM_LOAD( "xp000079.u67", 0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) ) | |
| 3766 | ||
| 3767 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3768 | ROM_LOAD( "x002244p.u66", 0x00000, 0x010000, CRC(06a3e60d) SHA1(8abeafab589406ff68898e8f90431c1a5f8d2de5) ) /* 4 of a Kind Bonus Poker */ | |
| 3769 | ||
| 3770 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3771 | ROM_LOAD( "mro-cg2242.u77", 0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) ) | |
| 3772 | ROM_LOAD( "mgo-cg2242.u78", 0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) ) | |
| 3773 | ROM_LOAD( "mbo-cg2242.u79", 0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) ) | |
| 3774 | ROM_LOAD( "mxo-cg2242.u80", 0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) ) | |
| 3775 | ||
| 3776 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3777 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3778 | ROM_END | |
| 3779 | ||
| 3780 | ROM_START( pex2245p ) /* Superboard : Standard Draw Poker (X002245P+XP000055) */ | |
| 3781 | /* | |
| 3782 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 3783 | ---------------------------------------------------------- | |
| 3784 | ?? 1 2 3 4 5 6 25 50 250 800 | |
| 3785 | % Range: 91.0-93.0% Optimum: 95.0% Hit Frequency: ??.?% | |
| 3786 | Programs Available: X002245P | |
| 3787 | */ | |
| 3788 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3789 | ROM_LOAD( "xp000055.u67", 0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) ) | |
| 3790 | ||
| 3791 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3792 | ROM_LOAD( "x002245p.u66", 0x00000, 0x10000, CRC(df49a54c) SHA1(1c89d0a114e27e27117120c9e2fc36b124fe7761) ) /* Standard Draw Poker */ | |
| 3793 | ||
| 3794 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3795 | ROM_LOAD( "mro-cg2275.u77", 0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) ) | |
| 3796 | ROM_LOAD( "mgo-cg2275.u78", 0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) ) | |
| 3797 | ROM_LOAD( "mbo-cg2275.u79", 0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) ) | |
| 3798 | ROM_LOAD( "mxo-cg2275.u80", 0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) ) | |
| 3799 | ||
| 3800 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3801 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3802 | ROM_END | |
| 3803 | ||
| 3804 | ROM_START( pex2245pa ) /* Superboard : Standard Draw Poker (X002245P+XP000079) */ | |
| 3805 | /* | |
| 3806 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 3807 | ---------------------------------------------------------- | |
| 3808 | ?? 1 2 3 4 5 6 25 50 250 800 | |
| 3809 | % Range: 91.0-93.0% Optimum: 95.0% Hit Frequency: ??.?% | |
| 3810 | Programs Available: X002245P | |
| 3811 | */ | |
| 3812 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3813 | ROM_LOAD( "xp000079.u67", 0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) ) | |
| 3814 | ||
| 3815 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3816 | ROM_LOAD( "x002245p.u66", 0x00000, 0x10000, CRC(df49a54c) SHA1(1c89d0a114e27e27117120c9e2fc36b124fe7761) ) /* Standard Draw Poker */ | |
| 3817 | ||
| 3818 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3819 | ROM_LOAD( "mro-cg2275.u77", 0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) ) | |
| 3820 | ROM_LOAD( "mgo-cg2275.u78", 0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) ) | |
| 3821 | ROM_LOAD( "mbo-cg2275.u79", 0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) ) | |
| 3822 | ROM_LOAD( "mxo-cg2275.u80", 0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) ) | |
| 3823 | ||
| 3824 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3825 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3826 | ROM_END | |
| 3827 | ||
| 3828 | ROM_START( pex2250p ) /* Superboard : Shockwave (X002250P+XP000050) */ | |
| 3829 | /* | |
| 3830 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 3831 | ----------------------------------------------------------------- | |
| 3832 | P598BA 1 1 3 5 8 11 25 100 250 800 | |
| 3833 | % Range: 94.5-96.5% Optimum: 98.5% Hit Frequency: 42.6% | |
| 3834 | Programs Available: X002250P | |
| 3835 | */ | |
| 3836 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3837 | ROM_LOAD( "xp000050.u67", 0x00000, 0x10000, CRC(cf9e72d6) SHA1(fc5c679aae43df0bd563fbcc3e00a3274af1ed11) ) | |
| 3838 | ||
| 3839 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3840 | ROM_LOAD( "x002250p.u66", 0x00000, 0x10000, CRC(8d8810f9) SHA1(14262d83cf5f2511c3de7777336ac9df7270dab2) ) /* Shockwave Poker */ | |
| 3841 | ||
| 3842 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3843 | ROM_LOAD( "mro-cg2309.u77", 0x00000, 0x8000, CRC(fdef322c) SHA1(8024cb6fcba18b56168e853173b9856c4d011831) ) | |
| 3844 | ROM_LOAD( "mgo-cg2309.u78", 0x08000, 0x8000, CRC(f70b30c0) SHA1(e4acd0060b3d68b9f385cb60ed43a0988fca66a8) ) | |
| 3845 | ROM_LOAD( "mbo-cg2309.u79", 0x10000, 0x8000, CRC(1843eec7) SHA1(0d0b80cd4d458081394c2943023b2440c2c2e42c) ) | |
| 3846 | ROM_LOAD( "mxo-cg2309.u80", 0x18000, 0x8000, CRC(5c73d095) SHA1(078c6c815e8c48988f631d9d37018ea0b4bbfa19) ) | |
| 3847 | ||
| 3848 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3849 | ROM_LOAD( "capx2309.u43", 0x0000, 0x0200, CRC(5da912cc) SHA1(6294f8be682e70e9052c9ae5f6865467e9dba2e3) ) | |
| 3850 | ROM_END | |
| 3851 | ||
| 3852 | ROM_START( pex2251p ) /* Superboard : Shockwave (X002251P+XP000050) */ | |
| 3853 | /* | |
| 3854 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 3855 | ----------------------------------------------------------------- | |
| 3856 | P719A 1 1 3 5 8 12 25 100 250 800 | |
| 3857 | % Range: 95.6-97.6% Optimum: 99.6% Hit Frequency: 42.6% | |
| 3858 | Programs Available: X002251P | |
| 3859 | */ | |
| 3860 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3861 | ROM_LOAD( "xp000050.u67", 0x00000, 0x10000, CRC(cf9e72d6) SHA1(fc5c679aae43df0bd563fbcc3e00a3274af1ed11) ) | |
| 3862 | ||
| 3863 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3864 | ROM_LOAD( "x002251p.u66", 0x00000, 0x10000, CRC(9069aa23) SHA1(299d5befce817e8334d4ac53470ff678775546ff) ) /* Shockwave Poker */ | |
| 3865 | ||
| 3866 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3867 | ROM_LOAD( "mro-cg2309.u77", 0x00000, 0x8000, CRC(fdef322c) SHA1(8024cb6fcba18b56168e853173b9856c4d011831) ) | |
| 3868 | ROM_LOAD( "mgo-cg2309.u78", 0x08000, 0x8000, CRC(f70b30c0) SHA1(e4acd0060b3d68b9f385cb60ed43a0988fca66a8) ) | |
| 3869 | ROM_LOAD( "mbo-cg2309.u79", 0x10000, 0x8000, CRC(1843eec7) SHA1(0d0b80cd4d458081394c2943023b2440c2c2e42c) ) | |
| 3870 | ROM_LOAD( "mxo-cg2309.u80", 0x18000, 0x8000, CRC(5c73d095) SHA1(078c6c815e8c48988f631d9d37018ea0b4bbfa19) ) | |
| 3871 | ||
| 3872 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3873 | ROM_LOAD( "capx2309.u43", 0x0000, 0x0200, CRC(5da912cc) SHA1(6294f8be682e70e9052c9ae5f6865467e9dba2e3) ) | |
| 3874 | ROM_END | |
| 3875 | ||
| 3876 | ROM_START( pex2302p ) /* Superboard : Bonus Poker Deluxe (X002302P+XP000038) */ | |
| 3877 | /* | |
| 3878 | PayTable Js+ 2PR 3K STR FL FH 4K SF RF (Bonus) | |
| 3879 | ----------------------------------------------------------------- | |
| 3880 | P902A 1 1 3 4 5 6 80 50 250 800 | |
| 3881 | % Range: 91.4-93.4% Optimum: 95.4% Hit Frequency: 45.2% | |
| 3882 | Programs Available: X002302P | |
| 3883 | */ | |
| 3884 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3885 | ROM_LOAD( "xp000038.u67", 0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) | |
| 3886 | ||
| 3887 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3888 | ROM_LOAD( "x002302p.u66", 0x00000, 0x010000, CRC(8e52646e) SHA1(f6722778eb7e2981a00f8e4e5ea32f71a35e20e5) ) /* Bonus Poker Deluxe */ | |
| 3889 | ||
| 3890 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3891 | ROM_LOAD( "mro-cg2185.u77", 0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) | |
| 3892 | ROM_LOAD( "mgo-cg2185.u78", 0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) ) | |
| 3893 | ROM_LOAD( "mbo-cg2185.u79", 0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) ) | |
| 3894 | ROM_LOAD( "mxo-cg2185.u80", 0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) ) | |
| 3895 | ||
| 3896 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3897 | ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) ) | |
| 3898 | ROM_END | |
| 3899 | ||
| 3900 | ROM_START( pex2303p ) /* Superboard : White Hot Aces Poker (X002303P+XP000112) */ | |
| 3901 | /* | |
| 3902 | 5-K 2-4 | |
| 3903 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 3904 | ----------------------------------------------------------------- | |
| 3905 | P903A 1 1 3 4 5 5 50 120 240 80 250 800 | |
| 3906 | % Range: 91.5-93.5% Optimum: 95.5% Hit Frequency: 44.7% | |
| 3907 | Programs Available: X002303P | |
| 3908 | */ | |
| 3909 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3910 | ROM_LOAD( "xp000112.u67", 0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) | |
| 3911 | ||
| 3912 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3913 | ROM_LOAD( "x002303p.u66", 0x00000, 0x010000, CRC(81cfd71b) SHA1(485a45412cad705d050b369c4cd1472a438374e8) ) /* White Hot Aces Poker */ | |
| 3914 | ||
| 3915 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3916 | ROM_LOAD( "mro-cg2324.u77", 0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) | |
| 3917 | ROM_LOAD( "mgo-cg2324.u78", 0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) ) | |
| 3918 | ROM_LOAD( "mbo-cg2324.u79", 0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) ) | |
| 3919 | ROM_LOAD( "mxo-cg2324.u80", 0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) ) | |
| 3920 | ||
| 3921 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3922 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 3923 | ROM_END | |
| 3924 | ||
| 3925 | ROM_START( pex2307p ) /* Superboard : Triple Double Bonus Poker (X002307P+XP000112) */ | |
| 3926 | /* | |
| 3927 | 2-4 | |
| 3928 | 4K 4A | |
| 3929 | 5-K 2-4 with with | |
| 3930 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A A,2-4 2-4 SF RF (Bonus) | |
| 3931 | ----------------------------------------------------------------------------- | |
| 3932 | P908BM 1 1 3 4 6 9 50 80 160 400 400 50 400 800 | |
| 3933 | % Range: 94.2-96.2% Optimum: 98.2% Hit Frequency: 44.1% | |
| 3934 | Programs Available: X002307P | |
| 3935 | */ | |
| 3936 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3937 | ROM_LOAD( "xp000112.u67", 0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) | |
| 3938 | ||
| 3939 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3940 | ROM_LOAD( "x002307p.u66", 0x00000, 0x010000, CRC(c6d5db70) SHA1(017e1e382fb789e4cd8b410362ad5e82b61f61db) ) /* Triple Double Bonus Poker */ | |
| 3941 | ||
| 3942 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3943 | ROM_LOAD( "mro-cg2324.u77", 0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) | |
| 3944 | ROM_LOAD( "mgo-cg2324.u78", 0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) ) | |
| 3945 | ROM_LOAD( "mbo-cg2324.u79", 0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) ) | |
| 3946 | ROM_LOAD( "mxo-cg2324.u80", 0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) ) | |
| 3947 | ||
| 3948 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3949 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 3950 | ROM_END | |
| 3951 | ||
| 3952 | ROM_START( pex2314p ) /* Superboard : Triple Bonus Poker Plus (X002314P+XP000112) */ | |
| 3953 | /* | |
| 3954 | 5-K 2-4 | |
| 3955 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 3956 | ----------------------------------------------------------------- | |
| 3957 | P903A 1 1 3 4 5 6 50 120 240 100 250 800 | |
| 3958 | % Range: 92.6-94.6% Optimum: 96.6% Hit Frequency: 44.7% | |
| 3959 | Programs Available: X002314P | |
| 3960 | */ | |
| 3961 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3962 | ROM_LOAD( "xp000112.u67", 0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) | |
| 3963 | ||
| 3964 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3965 | ROM_LOAD( "x002314p.u66", 0x00000, 0x010000, CRC(bfc0acf0) SHA1(a6b7c228a84d0ea224ad945964c53de2d44e4a8d) ) /* Triple Bonus Poker Plus */ | |
| 3966 | ||
| 3967 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3968 | ROM_LOAD( "mro-cg2324.u77", 0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) | |
| 3969 | ROM_LOAD( "mgo-cg2324.u78", 0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) ) | |
| 3970 | ROM_LOAD( "mbo-cg2324.u79", 0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) ) | |
| 3971 | ROM_LOAD( "mxo-cg2324.u80", 0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) ) | |
| 3972 | ||
| 3973 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3974 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 3975 | ROM_END | |
| 3976 | ||
| 3977 | ROM_START( pex2374p ) /* Superboard : Super Aces Poker (X002374P+XP000112) */ | |
| 3978 | /* | |
| 3979 | 5-K 2-4 | |
| 3980 | PayTable Js+ 2PR 3K STR FL FH 4K 4K 4A SF RF (Bonus) | |
| 3981 | ----------------------------------------------------------------- | |
| 3982 | ??? 1 1 3 4 5 6 50 80 400 60 250 800 | |
| 3983 | % Range: 93.7-95.7% Optimum: 97.8% Hit Frequency: ??.?% | |
| 3984 | Programs Available: X002374P | |
| 3985 | */ | |
| 3986 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 3987 | ROM_LOAD( "xp000112.u67", 0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) | |
| 3988 | ||
| 3989 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 3990 | ROM_LOAD( "x002374p.u66", 0x00000, 0x010000, CRC(fc4b6c8d) SHA1(b101f9042bd54dbfdeed4c7a3acf3798096f6857) ) /* Super Aces Poker */ | |
| 3991 | ||
| 3992 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 3993 | ROM_LOAD( "mro-cg2374.u72", 0x00000, 0x8000, CRC(ceeb714d) SHA1(6de908d04bcaa243195943affa9ad0d725de5c81) ) /* Custom Horseshoe Casino card backs */ | |
| 3994 | ROM_LOAD( "mgo-cg2374.u73", 0x08000, 0x8000, CRC(d0fabad5) SHA1(438ebe074fa3eaa3073ef042f481449f416d0665) ) | |
| 3995 | ROM_LOAD( "mbo-cg2374.u74", 0x10000, 0x8000, CRC(9a0fbc8d) SHA1(aa39f47cbeaf8218fd2d753c9a350e9eab5df5d3) ) | |
| 3996 | ROM_LOAD( "mxo-cg2374.u75", 0x18000, 0x8000, CRC(99814562) SHA1(2d8e132f4cc4edd06332c0327927219513b22832) ) | |
| 3997 | ||
| 3998 | ROM_REGION( 0x200, "proms", 0 ) | |
| 3999 | ROM_LOAD( "cap2374.u50", 0x0000, 0x0200, CRC(f922e1b8) SHA1(4aa5291c59431c022dc0561a6e3b38209f60286a) ) | |
| 4000 | ROM_END | |
| 4001 | ||
| 4002 | ||
| 1753 | 4003 | ROM_START( pexs0006 ) /* Superboard : Triple Triple Diamond Slots (XS000006) */ |
| 1754 | 4004 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1755 | 4005 | ROM_LOAD( "xs000006.u67", 0x00000, 0x10000, CRC(4b11ca18) SHA1(f64a1fbd089c01bc35a5484e60b8834a2db4a79f) ) |
| r25453 | r25454 | |
| 1767 | 4017 | ROM_LOAD( "capx2361.u43", 0x0000, 0x0200, CRC(93057296) SHA1(534bbf8ee80a22822d577f6685501f4c929987ef) ) |
| 1768 | 4018 | ROM_END |
| 1769 | 4019 | |
| 4020 | ROM_START( pexmp002 ) /* Superboard : Multi-Poker (XMP00002) - Dbl Dbl Bonus Poker, Nevada Bonus Poker, Joker Poker, Dble Bonus Poker & Dbl Deuces Poker */ | |
| 4021 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 4022 | ROM_LOAD( "xmp00002.u67", 0x00000, 0x10000, CRC(d5624ac8) SHA1(6b778b0e7ddb81123c6038920b3447e05a0556b2) ) /* Linkable Progressive */ | |
| 4023 | ||
| 4024 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 4025 | ROM_LOAD( "xm00004p.u66", 0x00000, 0x10000, CRC(bafd160f) SHA1(7454fbf992d4d0668ef375b76ce2cae3324a5f75) ) | |
| 4026 | /* Can be found with either of the following Payout Table roms: XM00004P or XM00008P */ | |
| 4027 | ||
| 4028 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 4029 | ROM_LOAD( "mro-cg2196.u77", 0x00000, 0x8000, CRC(f2f95ad9) SHA1(92c105147d4cdcebb4c784d771b9cebc982a742f) ) | |
| 4030 | ROM_LOAD( "mgo-cg2196.u78", 0x08000, 0x8000, CRC(95980a94) SHA1(40b84b2f3b77584739f2eb8df49b64533c60e1e7) ) | |
| 4031 | ROM_LOAD( "mbo-cg2196.u79", 0x10000, 0x8000, CRC(38151131) SHA1(7730a342bcfab2c2acd84f93ce280eb5dc9666f3) ) | |
| 4032 | ROM_LOAD( "mxo-cg2196.u80", 0x18000, 0x8000, CRC(60f748b8) SHA1(61af0bac1d6c23f8e1aa3f0094fd56185aa6ae86) ) | |
| 4033 | ||
| 4034 | ROM_REGION( 0x200, "proms", 0 ) | |
| 4035 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 4036 | ROM_END | |
| 4037 | ||
| 4038 | ROM_START( pexmp003 ) /* Superboard : Multi-Poker (XMP00003) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */ | |
| 4039 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 4040 | ROM_LOAD( "xmp00003.u67", 0x00000, 0x10000, CRC(41e33b3e) SHA1(cd5debfb59c4f0cc5d700a1c592a0dc203abcb66) ) /* Linkable Progressive, No Double Up */ | |
| 4041 | ||
| 4042 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 4043 | ROM_LOAD( "xm00001p.u66", 0x00000, 0x10000, CRC(b1569f05) SHA1(c94409ad74c4585288780cc2f96957592554a250) ) | |
| 4044 | /* Can be found with any of the following Payout Table roms: XM00001P, XM00002P, XM00003P or XM00006P */ | |
| 4045 | ||
| 4046 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 4047 | ROM_LOAD( "mro-cg2174.u77", 0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) | |
| 4048 | ROM_LOAD( "mgo-cg2174.u78", 0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) ) | |
| 4049 | ROM_LOAD( "mbo-cg2174.u79", 0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) ) | |
| 4050 | ROM_LOAD( "mxo-cg2174.u80", 0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) ) | |
| 4051 | ||
| 4052 | ROM_REGION( 0x200, "proms", 0 ) | |
| 4053 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 4054 | ROM_END | |
| 4055 | ||
| 4056 | ROM_START( pexmp003a ) /* Superboard : Multi-Poker (XMP00003) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */ | |
| 4057 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 4058 | ROM_LOAD( "xmp00003.u67", 0x00000, 0x10000, CRC(41e33b3e) SHA1(cd5debfb59c4f0cc5d700a1c592a0dc203abcb66) ) /* Linkable Progressive, No Double Up */ | |
| 4059 | ||
| 4060 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 4061 | ROM_LOAD( "xm00002p.u66", 0x00000, 0x10000, CRC(96cf471c) SHA1(9597bf6a80c392ee22dc4606db610fdaf032377f) ) | |
| 4062 | /* Can be found with any of the following Payout Table roms: XM00001P, XM00002P, XM00003P or XM00006P */ | |
| 4063 | ||
| 4064 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 4065 | ROM_LOAD( "mro-cg2174.u77", 0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) | |
| 4066 | ROM_LOAD( "mgo-cg2174.u78", 0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) ) | |
| 4067 | ROM_LOAD( "mbo-cg2174.u79", 0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) ) | |
| 4068 | ROM_LOAD( "mxo-cg2174.u80", 0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) ) | |
| 4069 | ||
| 4070 | ROM_REGION( 0x200, "proms", 0 ) | |
| 4071 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 4072 | ROM_END | |
| 4073 | ||
| 4074 | ROM_START( pexmp003b ) /* Superboard : Multi-Poker (XMP00003) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */ | |
| 4075 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 4076 | ROM_LOAD( "xmp00003.u67", 0x00000, 0x10000, CRC(41e33b3e) SHA1(cd5debfb59c4f0cc5d700a1c592a0dc203abcb66) ) /* Linkable Progressive, No Double Up */ | |
| 4077 | ||
| 4078 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 4079 | ROM_LOAD( "xm00003p.u66", 0x00000, 0x10000, CRC(55b44732) SHA1(8e0bbad3aaa7deca85ae641c444be3a513bdce50) ) | |
| 4080 | /* Can be found with any of the following Payout Table roms: XM00001P, XM00002P, XM00003P or XM00006P */ | |
| 4081 | ||
| 4082 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 4083 | ROM_LOAD( "mro-cg2174.u77", 0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) | |
| 4084 | ROM_LOAD( "mgo-cg2174.u78", 0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) ) | |
| 4085 | ROM_LOAD( "mbo-cg2174.u79", 0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) ) | |
| 4086 | ROM_LOAD( "mxo-cg2174.u80", 0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) ) | |
| 4087 | ||
| 4088 | ROM_REGION( 0x200, "proms", 0 ) | |
| 4089 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 4090 | ROM_END | |
| 4091 | ||
| 4092 | ROM_START( pexmp004 ) /* Superboard : Multi-Poker (XMP00004) - Bonus Poker, Dbl Dbl Bonus Poker, Joker Poker, Dbl Joker Poker & Dbl Bonus Poker */ | |
| 4093 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 4094 | ROM_LOAD( "xmp00004.u67", 0x00000, 0x10000, CRC(83184999) SHA1(b8483917b338be4fd3641b3990eea37072d36885) ) /* Linkable Progressive */ | |
| 4095 | ||
| 4096 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 4097 | ROM_LOAD( "xm00005p.u66", 0x00000, 0x10000, CRC(c832eac7) SHA1(747d57de602b44ae1276fe1009db1b6de0d2c64c) ) | |
| 4098 | ||
| 4099 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 4100 | ROM_LOAD( "mro-cg2240.u77", 0x00000, 0x8000, CRC(eedef2d4) SHA1(419a90e1f4a840625e6ac7afc2c24d13c908156d) ) | |
| 4101 | ROM_LOAD( "mgo-cg2240.u78", 0x08000, 0x8000, CRC(c596b058) SHA1(d53824f869bceeda482e434cba9a77ba8ce2015f) ) | |
| 4102 | ROM_LOAD( "mbo-cg2240.u79", 0x10000, 0x8000, CRC(ab1a58ee) SHA1(44963f27d5f5d8f9415d88c12b2d40f0ef55c559) ) | |
| 4103 | ROM_LOAD( "mxo-cg2240.u80", 0x18000, 0x8000, CRC(75488ff7) SHA1(a34ae53847b5643b8c4dc182dc59b1fccf22d557) ) | |
| 4104 | ||
| 4105 | ROM_REGION( 0x200, "proms", 0 ) | |
| 4106 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 4107 | ROM_END | |
| 4108 | ||
| 1770 | 4109 | ROM_START( pexmp006 ) /* Superboard : Multi-Poker (XMP00006) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */ |
| 1771 | 4110 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1772 | ROM_LOAD( "xmp00006.u67", 0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) | |
| 4111 | ROM_LOAD( "xmp00006.u67", 0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /* Linkable Progressive */ | |
| 1773 | 4112 | |
| 1774 | 4113 | ROM_REGION( 0x10000, "user1", 0 ) |
| 4114 | ROM_LOAD( "xm00001p.u66", 0x00000, 0x10000, CRC(b1569f05) SHA1(c94409ad74c4585288780cc2f96957592554a250) ) | |
| 4115 | /* Can be found with any of the following Payout Table roms: XM00001P, XM00002P, XM00003P or XM00006P */ | |
| 4116 | ||
| 4117 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 4118 | ROM_LOAD( "mro-cg2174.u77", 0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) | |
| 4119 | ROM_LOAD( "mgo-cg2174.u78", 0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) ) | |
| 4120 | ROM_LOAD( "mbo-cg2174.u79", 0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) ) | |
| 4121 | ROM_LOAD( "mxo-cg2174.u80", 0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) ) | |
| 4122 | ||
| 4123 | ROM_REGION( 0x200, "proms", 0 ) | |
| 4124 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 4125 | ROM_END | |
| 4126 | ||
| 4127 | ROM_START( pexmp006a ) /* Superboard : Multi-Poker (XMP00006) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */ | |
| 4128 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 4129 | ROM_LOAD( "xmp00006.u67", 0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /* Linkable Progressive */ | |
| 4130 | ||
| 4131 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 1775 | 4132 | ROM_LOAD( "xm00002p.u66", 0x00000, 0x10000, CRC(96cf471c) SHA1(9597bf6a80c392ee22dc4606db610fdaf032377f) ) |
| 1776 | 4133 | /* Can be found with any of the following Payout Table roms: XM00001P, XM00002P, XM00003P or XM00006P */ |
| 1777 | 4134 | |
| r25453 | r25454 | |
| 1785 | 4142 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) |
| 1786 | 4143 | ROM_END |
| 1787 | 4144 | |
| 4145 | ROM_START( pexmp006b ) /* Superboard : Multi-Poker (XMP00006) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */ | |
| 4146 | ROM_REGION( 0x10000, "maincpu", 0 ) | |
| 4147 | ROM_LOAD( "xmp00006.u67", 0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /* Linkable Progressive */ | |
| 4148 | ||
| 4149 | ROM_REGION( 0x10000, "user1", 0 ) | |
| 4150 | ROM_LOAD( "xm00003p.u66", 0x00000, 0x10000, CRC(55b44732) SHA1(8e0bbad3aaa7deca85ae641c444be3a513bdce50) ) | |
| 4151 | /* Can be found with any of the following Payout Table roms: XM00001P, XM00002P, XM00003P or XM00006P */ | |
| 4152 | ||
| 4153 | ROM_REGION( 0x020000, "gfx1", 0 ) | |
| 4154 | ROM_LOAD( "mro-cg2174.u77", 0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) | |
| 4155 | ROM_LOAD( "mgo-cg2174.u78", 0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) ) | |
| 4156 | ROM_LOAD( "mbo-cg2174.u79", 0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) ) | |
| 4157 | ROM_LOAD( "mxo-cg2174.u80", 0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) ) | |
| 4158 | ||
| 4159 | ROM_REGION( 0x200, "proms", 0 ) | |
| 4160 | ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) ) | |
| 4161 | ROM_END | |
| 4162 | ||
| 1788 | 4163 | ROM_START( pexmp024 ) /* Superboard : Multi-Poker (XMP00024) - Bonus Poker, Dbl Dbl Bonus Poker, Joker Poker, Dbl Joker Poker & Dbl Bonus Poker */ |
| 1789 | 4164 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1790 | ROM_LOAD( "xmp00024.u67", 0x00000, 0x10000, CRC(f2df8870) SHA1(bc7fa1d79da07093cf3d3508e226a9c490990e04) ) | |
| 4165 | ROM_LOAD( "xmp00024.u67", 0x00000, 0x10000, CRC(f2df8870) SHA1(bc7fa1d79da07093cf3d3508e226a9c490990e04) ) /* Standalone Progressive */ | |
| 1791 | 4166 | |
| 1792 | 4167 | ROM_REGION( 0x10000, "user1", 0 ) |
| 1793 | 4168 | ROM_LOAD( "xm00005p.u66", 0x00000, 0x10000, CRC(c832eac7) SHA1(747d57de602b44ae1276fe1009db1b6de0d2c64c) ) |
| r25453 | r25454 | |
| 1839 | 4214 | /* YEAR NAME PARENT MACHINE INPUT INIT ROT COMPANY FULLNAME FLAGS LAYOUT */ |
| 1840 | 4215 | |
| 1841 | 4216 | /* Set chips */ |
| 4217 | GAMEL(1987, peset001, 0, peplus, peplus_schip, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (Set001) Set Chip", 0, layout_pe_schip ) | |
| 1842 | 4218 | GAMEL(1987, peset038, 0, peplus, peplus_schip, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (Set038) Set Chip", 0, layout_pe_schip ) |
| 1843 | 4219 | |
| 1844 | 4220 | /* Normal board : poker */ |
| 1845 | GAMEL(1987, pepp0043, 0, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0043) 10's or Better", 0, layout_pe_poker ) | |
| 1846 | GAMEL(1987, pepp0065, 0, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0065) Jokers Wild Poker", 0, layout_pe_poker ) | |
| 1847 | GAMEL(1987, pepp0158, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0158) 4 of a Kind Bonus Poker", 0, layout_pe_poker ) | |
| 1848 | GAMEL(1987, pepp0188, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0188) Standard Draw Poker", 0, layout_pe_poker ) | |
| 1849 | GAMEL(1987, pepp0250, 0, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0250) Double Down Stud Poker", 0, layout_pe_poker ) | |
| 1850 | GAMEL(1987, pepp0447, 0, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0447) Standard Draw Poker", 0, layout_pe_poker ) | |
| 1851 | GAMEL(1987, pepp0516, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0516) Double Bonus Poker", 0, layout_pe_poker ) | |
| 4221 | GAMEL(1987, pepp0043, 0, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0043) 10's or Better", 0, layout_pe_poker ) | |
| 4222 | GAMEL(1987, pepp0055, 0, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0055) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4223 | GAMEL(1987, pepp0065, 0, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0065) Joker Poker", 0, layout_pe_poker ) | |
| 4224 | GAMEL(1987, pepp0103, pepp0055, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0103) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4225 | GAMEL(1987, pepp0126, pepp0055, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0126) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4226 | GAMEL(1987, pepp0127, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0127) Deuces Joker Wild Poker", 0, layout_pe_poker ) | |
| 4227 | GAMEL(1987, pepp0158, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0158) 4 of a Kind Bonus Poker", 0, layout_pe_poker ) | |
| 4228 | GAMEL(1987, pepp0178, pepp0065, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0178) Joker Poker", 0, layout_pe_poker ) | |
| 4229 | GAMEL(1987, pepp0188, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0188) Standard Draw Poker (set 1)", 0, layout_pe_poker ) | |
| 4230 | GAMEL(1987, pepp0188a, pepp0188, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0188) Standard Draw Poker (set 2)", 0, layout_pe_poker ) | |
| 4231 | GAMEL(1987, pepp0190, pepp0055, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0190) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4232 | GAMEL(1987, pepp0197, pepp0188, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0197) Standard Draw Poker", 0, layout_pe_poker ) | |
| 4233 | GAMEL(1987, pepp0203, pepp0158, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0203) 4 of a Kind Bonus Poker (set 1)", 0, layout_pe_poker ) | |
| 4234 | GAMEL(1987, pepp0203a, pepp0158, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0203) 4 of a Kind Bonus Poker (set 2)", 0, layout_pe_poker ) | |
| 4235 | GAMEL(1987, pepp0221, pepp0188, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0221) Standard Draw Poker", 0, layout_pe_poker ) | |
| 4236 | GAMEL(1987, pepp0224, pepp0055, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0224) Deuces Wild Poker (set 1)", 0, layout_pe_poker ) | |
| 4237 | GAMEL(1987, pepp0224a, pepp0055, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0224) Deuces Wild Poker (set 2)", 0, layout_pe_poker ) | |
| 4238 | GAMEL(1987, pepp0230, pepp0188, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0230) Standard Draw Poker", 0, layout_pe_poker ) | |
| 4239 | GAMEL(1987, pepp0235, pepp0158, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0235) 4 of a Kind Bonus Poker", 0, layout_pe_poker ) | |
| 4240 | GAMEL(1987, pepp0250, 0, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0250) Double Down Stud Poker", 0, layout_pe_poker ) | |
| 4241 | GAMEL(1987, pepp0265, pepp0158, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0265) 4 of a Kind Bonus Poker", 0, layout_pe_poker ) | |
| 4242 | GAMEL(1987, pepp0274, pepp0065, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0274) Standard Draw Poker", 0, layout_pe_poker ) | |
| 4243 | GAMEL(1987, pepp0290, pepp0055, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0290) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4244 | GAMEL(1987, pepp0291, pepp0055, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0291) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4245 | GAMEL(1987, pepp0409, pepp0158, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0409) 4 of a Kind Bonus Poker", 0, layout_pe_poker ) | |
| 4246 | GAMEL(1987, pepp0410, pepp0158, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0410) 4 of a Kind Bonus Poker", 0, layout_pe_poker ) | |
| 4247 | GAMEL(1987, pepp0417, pepp0055, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0417) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4248 | GAMEL(1987, pepp0419, pepp0188, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0419) Standard Draw Poker", 0, layout_pe_poker ) | |
| 4249 | GAMEL(1987, pepp0420, pepp0188, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0420) Standard Draw Poker", 0, layout_pe_poker ) | |
| 4250 | GAMEL(1987, pepp0423, pepp0188, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0423) Standard Draw Poker", 0, layout_pe_poker ) | |
| 4251 | GAMEL(1987, pepp0426, pepp0065, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0426) Joker Poker", 0, layout_pe_poker ) | |
| 4252 | GAMEL(1987, pepp0428, pepp0065, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0428) Joker Poker", 0, layout_pe_poker ) | |
| 4253 | GAMEL(1987, pepp0429, pepp0065, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0429) Joker Poker", 0, layout_pe_poker ) | |
| 4254 | GAMEL(1987, pepp0434, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0434) Bonus Poker Deluxe", 0, layout_pe_poker ) | |
| 4255 | GAMEL(1987, pepp0447, pepp0188, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0447) Standard Draw Poker (set 1)", 0, layout_pe_poker ) | |
| 4256 | GAMEL(1987, pepp0447a, pepp0188, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0447) Standard Draw Poker (set 2)", 0, layout_pe_poker ) | |
| 4257 | GAMEL(1987, pepp0449, pepp0188, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0449) Standard Draw Poker", 0, layout_pe_poker ) | |
| 4258 | GAMEL(1987, pepp0452, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0452) Double Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4259 | GAMEL(1987, pepp0454, pepp0434, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0454) Bonus Poker Deluxe", 0, layout_pe_poker ) | |
| 4260 | GAMEL(1985, pepp0488, pepp0188, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0488) Standard Draw Poker (Arizona Charlie's)", 0, layout_pe_poker ) | |
| 4261 | GAMEL(1987, pepp0508, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0508) Loose Deuce Deuces Wild! Poker", 0, layout_pe_poker ) | |
| 4262 | GAMEL(1987, pepp0509, pepp0188, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0509) Standard Draw Poker", 0, layout_pe_poker ) | |
| 4263 | GAMEL(1987, pepp0514, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0514) Double Bonus Poker (set 1)", 0, layout_pe_poker ) | |
| 4264 | GAMEL(1987, pepp0514a, pepp0514, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0514) Double Bonus Poker (set 2)", 0, layout_pe_poker ) | |
| 4265 | GAMEL(1987, pepp0515, pepp0514, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0515) Double Bonus Poker (set 1)", 0, layout_pe_poker ) | |
| 4266 | GAMEL(1987, pepp0515a, pepp0514, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0515) Double Bonus Poker (set 2)", 0, layout_pe_poker ) | |
| 4267 | GAMEL(1987, pepp0516, pepp0514, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0516) Double Bonus Poker (set 1)", 0, layout_pe_poker ) | |
| 4268 | GAMEL(1987, pepp0516a, pepp0514, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0516) Double Bonus Poker (set 2)", 0, layout_pe_poker ) | |
| 4269 | GAMEL(1987, pepp0538, pepp0514, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0538) Double Bonus Poker", 0, layout_pe_poker ) | |
| 4270 | GAMEL(1987, pepp0540, pepp0514, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0540) Double Bonus Poker", 0, layout_pe_poker ) | |
| 4271 | GAMEL(1987, pepp0542, 0, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0542) One Eyed Jacks Wild Poker", 0, layout_pe_poker ) | |
| 4272 | GAMEL(1987, pepp0568, pepp0065, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0568) Joker Poker", 0, layout_pe_poker ) | |
| 4273 | GAMEL(1987, pepp0585, pepp0188, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0585) Standard Draw Poker", 0, layout_pe_poker ) | |
| 4274 | GAMEL(1987, pepp0725, pepp0514, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0725) Double Bonus Poker", 0, layout_pe_poker ) | |
| 4275 | GAMEL(1987, pepp0760, pepp0250, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0760) Double Down Stud Poker", 0, layout_pe_poker ) | |
| 4276 | GAMEL(1987, pepp0763, pepp0158, peplus, peplus_pokah, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0763) 4 of a Kind Bonus Poker", 0, layout_pe_poker ) | |
| 4277 | GAMEL(1987, pepp0775, 0, peplus, peplus_poker, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PP0775) Standard Draw Poker", GAME_IMPERFECT_GRAPHICS, layout_pe_poker ) /* Wrong CG graphics & CAP */ | |
| 1852 | 4278 | |
| 1853 | 4279 | /* Normal board : blackjack */ |
| 1854 | 4280 | GAMEL(1994, pebe0014, 0, peplus, peplus_bjack, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (BE0014) Blackjack", 0, layout_pe_bjack ) |
| 1855 | 4281 | |
| 1856 | 4282 | /* Normal board : keno */ |
| 1857 | GAMEL(1994, peke1012, 0, peplus, peplus_keno, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (KE1012) Keno", 0, layout_pe_keno ) | |
| 4283 | GAMEL(1994, peke1012, 0, peplus, peplus_keno, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (KE1012) Keno", 0, layout_pe_keno ) | |
| 4284 | GAMEL(1994, peke1013, peke1012, peplus, peplus_keno, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (KE1013) Keno", 0, layout_pe_keno ) | |
| 1858 | 4285 | |
| 1859 | 4286 | /* Normal board : slots machine */ |
| 1860 | GAMEL(1996, peps0014, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0014) Super Joker Slots", 0, layout_pe_slots ) | |
| 1861 | GAMEL(1996, peps0022, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0022) Red White & Blue Slots", 0, layout_pe_slots ) | |
| 1862 | GAMEL(1996, peps0043, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0043) Double Diamond Slots", 0, layout_pe_slots ) | |
| 1863 | GAMEL(1996, peps0045, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0045) Red White & Blue Slots", 0, layout_pe_slots ) | |
| 1864 | GAMEL(1996, peps0308, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0308) Double Jackpot Slots", 0, layout_pe_slots ) | |
| 1865 | GAMEL(1996, peps0615, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0615) Chaos Slots", 0, layout_pe_slots ) | |
| 1866 | GAMEL(1996, peps0716, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0716) River Gambler Slots", 0, layout_pe_slots ) | |
| 4287 | GAMEL(1996, peps0014, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0014) Super Joker Slots", 0, layout_pe_slots ) | |
| 4288 | GAMEL(1996, peps0021, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0021) Red White & Blue Slots", 0, layout_pe_slots ) | |
| 4289 | GAMEL(1996, peps0022, peps0021, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0022) Red White & Blue Slots", 0, layout_pe_slots ) | |
| 4290 | GAMEL(1996, peps0042, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0042) Double Diamond Slots", 0, layout_pe_slots ) | |
| 4291 | GAMEL(1996, peps0043, peps0042, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0043) Double Diamond Slots", 0, layout_pe_slots ) | |
| 4292 | GAMEL(1996, peps0045, peps0021, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0045) Red White & Blue Slots", 0, layout_pe_slots ) | |
| 4293 | GAMEL(1996, peps0047, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0047) Wild Cherry Slots", GAME_NOT_WORKING, layout_pe_slots ) /* Needs MxO-CG1004.Uxx graphics roms redumped */ | |
| 4294 | GAMEL(1996, peps0092, peps0047, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0092) Wild Cherry Slots", GAME_NOT_WORKING, layout_pe_slots ) /* Needs MxO-CG1004.Uxx graphics roms redumped */ | |
| 4295 | GAMEL(1996, peps0206, peps0021, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0206) Red White & Blue Slots", 0, layout_pe_slots ) | |
| 4296 | GAMEL(1996, peps0308, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0308) Double Jackpot Slots", 0, layout_pe_slots ) | |
| 4297 | GAMEL(1996, peps0615, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0615) Chaos Slots", 0, layout_pe_slots ) | |
| 4298 | GAMEL(1996, peps0716, 0, peplus, peplus_slots, peplus_state, peplus, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (PS0716) River Gambler Slots", 0, layout_pe_slots ) | |
| 1867 | 4299 | |
| 1868 | 4300 | /* Superboard : poker */ |
| 1869 | GAMEL(1995, pex2069p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002069P) Double Double Bonus Poker", 0, layout_pe_poker ) | |
| 1870 | GAMEL(1995, pexp0019, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XP000019) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 1871 | GAMEL(1995, pexp0112, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XP000112) White Hot Aces Poker", 0, layout_pe_poker ) | |
| 4301 | GAMEL(1995, pex0055p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000019) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4302 | GAMEL(1995, pex0055pa, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000022) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4303 | GAMEL(1995, pex0055pb, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000023) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4304 | GAMEL(1995, pex0055pc, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000028) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4305 | GAMEL(1995, pex0055pd, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000035) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4306 | GAMEL(1995, pex0055pe, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000038) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4307 | GAMEL(1995, pex0055pf, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000040) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4308 | GAMEL(1995, pex0055pg, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000053) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4309 | GAMEL(1995, pex0055ph, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000055) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4310 | GAMEL(1995, pex0055pi, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000063) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4311 | GAMEL(1995, pex0055pj, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000075) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4312 | GAMEL(1995, pex0055pk, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000079) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4313 | GAMEL(1995, pex0055pl, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000094) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4314 | GAMEL(1995, pex0055pm, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000095) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4315 | GAMEL(1995, pex0055pn, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000098) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4316 | GAMEL(1995, pex0055po, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000102) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4317 | GAMEL(1995, pex0055pp, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000104) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4318 | GAMEL(1995, pex0055pq, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000112) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4319 | GAMEL(1995, pex0055pr, pex0055p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000055P+XP000126) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4320 | GAMEL(1995, pex0225p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X000225P+XP000079) Dueces & Joker Wild Poker", 0,layout_pe_poker ) | |
| 4321 | GAMEL(1995, pex2025p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002025P+XP000019) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4322 | GAMEL(1995, pex2026p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002026P+XP000019) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4323 | GAMEL(1995, pex2027p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002027P+XP000019) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4324 | GAMEL(1995, pex2029p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002029P+XP000019) Deuces Wild Poker", 0, layout_pe_poker ) | |
| 4325 | GAMEL(1995, pex2031p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002031P+XP000112) Lucky Deal Poker", 0, layout_pe_poker ) | |
| 4326 | GAMEL(1995, pex2035p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002035P+XP000112) White Hot Aces Poker", 0, layout_pe_poker ) | |
| 4327 | GAMEL(1995, pex2036p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002036P+XP000112) White Hot Aces Poker", 0, layout_pe_poker ) | |
| 4328 | GAMEL(1995, pex2040p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002040P+XP000038) Nevada Bonus Poker", 0, layout_pe_poker ) | |
| 4329 | GAMEL(1995, pex2042p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002042P+XP000038) Triple Bonus Poker", 0, layout_pe_poker ) | |
| 4330 | GAMEL(1995, pex2045p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002045P+XP000038) Triple Bonus Poker", 0, layout_pe_poker ) | |
| 4331 | GAMEL(1995, pex2067p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002067P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker ) | |
| 4332 | GAMEL(1995, pex2068p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002068P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker ) | |
| 4333 | GAMEL(1995, pex2069p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002069P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker ) | |
| 4334 | GAMEL(1995, pex2070p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002070P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker ) | |
| 4335 | GAMEL(1995, pex2172p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002172P+XP000112) Double Ace$ Bonus Poker", GAME_IMPERFECT_GRAPHICS, layout_pe_poker ) /* Wrong CG graphics & CAP */ | |
| 4336 | GAMEL(1995, pex2241p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002241P+XP000079) 4 of a Kind Bonus Poker", 0,layout_pe_poker ) | |
| 4337 | GAMEL(1995, pex2244p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002244P+XP000079) 4 of a Kind Bonus Poker", 0,layout_pe_poker ) | |
| 4338 | GAMEL(1995, pex2245p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002245P+XP000055) Standard Draw Poker", 0,layout_pe_poker ) | |
| 4339 | GAMEL(1995, pex2245pa, pex2245p, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002245P+XP000079) Standard Draw Poker", 0,layout_pe_poker ) | |
| 4340 | GAMEL(1995, pex2250p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002250P+XP000050) Shockwave", 0,layout_pe_poker ) | |
| 4341 | GAMEL(1995, pex2251p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002251P+XP000050) Shockwave", 0,layout_pe_poker ) | |
| 4342 | GAMEL(1995, pex2302p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002302P+XP000038) Bonus Poker Deluxe", 0, layout_pe_poker ) | |
| 4343 | GAMEL(1995, pex2303p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002303P+XP000112) White Hot Aces Poker", 0, layout_pe_poker ) | |
| 4344 | GAMEL(1995, pex2307p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002307P+XP000112) Triple Double Bonus Poker", 0, layout_pe_poker ) | |
| 4345 | GAMEL(1995, pex2314p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002314P+XP000112) Triple Bonus Poker Plus", 0, layout_pe_poker ) | |
| 4346 | GAMEL(1995, pex2374p, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (X002374P+XP000112) Super Aces Poker (Horseshoe)", 0, layout_pe_poker ) | |
| 1872 | 4347 | |
| 1873 | 4348 | /* Superboard : multi-poker */ |
| 1874 | GAMEL(1995, pexmp006, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00006) Multi-Poker", 0, layout_pe_poker ) | |
| 1875 | GAMEL(1995, pexmp024, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00024) Multi-Poker", 0, layout_pe_poker ) | |
| 4349 | GAMEL(1995, pexmp002, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00002+XM00004P) Multi-Poker", 0, layout_pe_poker ) | |
| 4350 | GAMEL(1995, pexmp003, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00003+XM00001P) Multi-Poker", 0, layout_pe_poker ) | |
| 4351 | GAMEL(1995, pexmp003a, pexmp003, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00003+XM00002P) Multi-Poker", 0, layout_pe_poker ) | |
| 4352 | GAMEL(1995, pexmp003b, pexmp003, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00003+XM00003P) Multi-Poker", 0, layout_pe_poker ) | |
| 4353 | GAMEL(1995, pexmp004, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00004+XM00005P) Multi-Poker", 0, layout_pe_poker ) | |
| 4354 | GAMEL(1995, pexmp006, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00006+XM00001P) Multi-Poker", 0, layout_pe_poker ) | |
| 4355 | GAMEL(1995, pexmp006a, pexmp006, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00006+XM00002P) Multi-Poker", 0, layout_pe_poker ) | |
| 4356 | GAMEL(1995, pexmp006b, pexmp006, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00006+XM00003P) Multi-Poker", 0, layout_pe_poker ) | |
| 4357 | GAMEL(1995, pexmp024, 0, peplus, peplus_poker, peplus_state, peplussb, ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00024+XM00005P) Multi-Poker", 0, layout_pe_poker ) | |
| 1876 | 4358 | |
| 1877 | 4359 | /* Superboard : multi-poker (wingboard) */ |
| 1878 | 4360 | GAMEL(1995, pexmp017, 0, peplus, peplus_poker, peplus_state, peplussbw,ROT0, "IGT - International Gaming Technology", "Player's Edge Plus (XMP00017) 5-in-1 Wingboard", 0, layout_pe_poker ) |
| r25453 | r25454 | |
|---|---|---|
| 10594 | 10594 | comg903d // (c) 198? Cal Omega Inc. |
| 10595 | 10595 | comg905d // (c) 198? Cal Omega Inc. |
| 10596 | 10596 | |
| 10597 | // IGT Player's Edge Plus | |
| 10598 | peset001 // (c) 1987 IGT - International Gaming Technology | |
| 10599 | peset038 // (c) 1987 IGT - International Gaming Technology | |
| 10600 | pepp0043 // (c) 1987 IGT - International Gaming Technology | |
| 10601 | pepp0055 // (c) 1987 IGT - International Gaming Technology | |
| 10602 | pepp0065 // (c) 1987 IGT - International Gaming Technology | |
| 10603 | pepp0103 // (c) 1987 IGT - International Gaming Technology | |
| 10604 | pepp0126 // (c) 1987 IGT - International Gaming Technology | |
| 10605 | pepp0127 // (c) 1987 IGT - International Gaming Technology | |
| 10606 | pepp0158 // (c) 1987 IGT - International Gaming Technology | |
| 10607 | pepp0178 // (c) 1987 IGT - International Gaming Technology | |
| 10608 | pepp0188 // (c) 1987 IGT - International Gaming Technology | |
| 10609 | pepp0188a // (c) 1987 IGT - International Gaming Technology | |
| 10610 | pepp0190 // (c) 1987 IGT - International Gaming Technology | |
| 10611 | pepp0197 // (c) 1987 IGT - International Gaming Technology | |
| 10612 | pepp0203 // (c) 1987 IGT - International Gaming Technology | |
| 10613 | pepp0203a // (c) 1987 IGT - International Gaming Technology | |
| 10614 | pepp0221 // (c) 1987 IGT - International Gaming Technology | |
| 10615 | pepp0224 // (c) 1987 IGT - International Gaming Technology | |
| 10616 | pepp0224a // (c) 1987 IGT - International Gaming Technology | |
| 10617 | pepp0230 // (c) 1987 IGT - International Gaming Technology | |
| 10618 | pepp0235 // (c) 1987 IGT - International Gaming Technology | |
| 10619 | pepp0250 // (c) 1987 IGT - International Gaming Technology | |
| 10620 | pepp0265 // (c) 1987 IGT - International Gaming Technology | |
| 10621 | pepp0274 // (c) 1987 IGT - International Gaming Technology | |
| 10622 | pepp0290 // (c) 1987 IGT - International Gaming Technology | |
| 10623 | pepp0291 // (c) 1987 IGT - International Gaming Technology | |
| 10624 | pepp0409 // (c) 1987 IGT - International Gaming Technology | |
| 10625 | pepp0410 // (c) 1987 IGT - International Gaming Technology | |
| 10626 | pepp0417 // (c) 1987 IGT - International Gaming Technology | |
| 10627 | pepp0419 // (c) 1987 IGT - International Gaming Technology | |
| 10628 | pepp0420 // (c) 1987 IGT - International Gaming Technology | |
| 10629 | pepp0423 // (c) 1987 IGT - International Gaming Technology | |
| 10630 | pepp0426 // (c) 1987 IGT - International Gaming Technology | |
| 10631 | pepp0428 // (c) 1987 IGT - International Gaming Technology | |
| 10632 | pepp0429 // (c) 1987 IGT - International Gaming Technology | |
| 10633 | pepp0434 // (c) 1987 IGT - International Gaming Technology | |
| 10634 | pepp0447 // (c) 1987 IGT - International Gaming Technology | |
| 10635 | pepp0447a // (c) 1987 IGT - International Gaming Technology | |
| 10636 | pepp0449 // (c) 1987 IGT - International Gaming Technology | |
| 10637 | pepp0452 // (c) 1987 IGT - International Gaming Technology | |
| 10638 | pepp0454 // (c) 1987 IGT - International Gaming Technology | |
| 10639 | pepp0488 // (c) 1987 IGT - International Gaming Technology | |
| 10640 | pepp0508 // (c) 1987 IGT - International Gaming Technology | |
| 10641 | pepp0509 // (c) 1987 IGT - International Gaming Technology | |
| 10642 | pepp0514 // (c) 1987 IGT - International Gaming Technology | |
| 10643 | pepp0514a // (c) 1987 IGT - International Gaming Technology | |
| 10644 | pepp0515 // (c) 1987 IGT - International Gaming Technology | |
| 10645 | pepp0515a // (c) 1987 IGT - International Gaming Technology | |
| 10646 | pepp0516 // (c) 1987 IGT - International Gaming Technology | |
| 10647 | pepp0516a // (c) 1987 IGT - International Gaming Technology | |
| 10648 | pepp0538 // (c) 1987 IGT - International Gaming Technology | |
| 10649 | pepp0540 // (c) 1987 IGT - International Gaming Technology | |
| 10650 | pepp0542 // (c) 1987 IGT - International Gaming Technology | |
| 10651 | pepp0568 // (c) 1987 IGT - International Gaming Technology | |
| 10652 | pepp0585 // (c) 1987 IGT - International Gaming Technology | |
| 10653 | pepp0725 // (c) 1987 IGT - International Gaming Technology | |
| 10654 | pepp0760 // (c) 1987 IGT - International Gaming Technology | |
| 10655 | pepp0763 // (c) 1987 IGT - International Gaming Technology | |
| 10656 | pepp0775 // (c) 1987 IGT - International Gaming Technology | |
| 10657 | pebe0014 // (c) 1994 IGT - International Gaming Technology | |
| 10658 | peke1012 // (c) 1994 IGT - International Gaming Technology | |
| 10659 | peke1013 // (c) 1994 IGT - International Gaming Technology | |
| 10660 | peps0014 // (c) 1996 IGT - International Gaming Technology | |
| 10661 | peps0021 // (c) 1996 IGT - International Gaming Technology | |
| 10662 | peps0022 // (c) 1996 IGT - International Gaming Technology | |
| 10663 | peps0042 // (c) 1996 IGT - International Gaming Technology | |
| 10664 | peps0043 // (c) 1996 IGT - International Gaming Technology | |
| 10665 | peps0045 // (c) 1996 IGT - International Gaming Technology | |
| 10666 | peps0047 // (c) 1996 IGT - International Gaming Technology | |
| 10667 | peps0092 // (c) 1996 IGT - International Gaming Technology | |
| 10668 | peps0206 // (c) 1996 IGT - International Gaming Technology | |
| 10669 | peps0308 // (c) 1996 IGT - International Gaming Technology | |
| 10670 | peps0615 // (c) 1996 IGT - International Gaming Technology | |
| 10671 | peps0716 // (c) 1996 IGT - International Gaming Technology | |
| 10672 | pex0055p // (c) 1995 IGT - International Gaming Technology | |
| 10673 | pex0055pa // (c) 1995 IGT - International Gaming Technology | |
| 10674 | pex0055pb // (c) 1995 IGT - International Gaming Technology | |
| 10675 | pex0055pc // (c) 1995 IGT - International Gaming Technology | |
| 10676 | pex0055pd // (c) 1995 IGT - International Gaming Technology | |
| 10677 | pex0055pe // (c) 1995 IGT - International Gaming Technology | |
| 10678 | pex0055pf // (c) 1995 IGT - International Gaming Technology | |
| 10679 | pex0055pg // (c) 1995 IGT - International Gaming Technology | |
| 10680 | pex0055ph // (c) 1995 IGT - International Gaming Technology | |
| 10681 | pex0055pi // (c) 1995 IGT - International Gaming Technology | |
| 10682 | pex0055pj // (c) 1995 IGT - International Gaming Technology | |
| 10683 | pex0055pk // (c) 1995 IGT - International Gaming Technology | |
| 10684 | pex0055pl // (c) 1995 IGT - International Gaming Technology | |
| 10685 | pex0055pm // (c) 1995 IGT - International Gaming Technology | |
| 10686 | pex0055pn // (c) 1995 IGT - International Gaming Technology | |
| 10687 | pex0055po // (c) 1995 IGT - International Gaming Technology | |
| 10688 | pex0055pp // (c) 1995 IGT - International Gaming Technology | |
| 10689 | pex0055pq // (c) 1995 IGT - International Gaming Technology | |
| 10690 | pex0055pr // (c) 1995 IGT - International Gaming Technology | |
| 10691 | pex0225p // (c) 1995 IGT - International Gaming Technology | |
| 10692 | pex2025p // (c) 1995 IGT - International Gaming Technology | |
| 10693 | pex2026p // (c) 1995 IGT - International Gaming Technology | |
| 10694 | pex2027p // (c) 1995 IGT - International Gaming Technology | |
| 10695 | pex2031p // (c) 1995 IGT - International Gaming Technology | |
| 10696 | pex2035p // (c) 1995 IGT - International Gaming Technology | |
| 10697 | pex2036p // (c) 1995 IGT - International Gaming Technology | |
| 10698 | pex2040p // (c) 1995 IGT - International Gaming Technology | |
| 10699 | pex2042p // (c) 1995 IGT - International Gaming Technology | |
| 10700 | pex2045p // (c) 1995 IGT - International Gaming Technology | |
| 10701 | pex2067p // (c) 1995 IGT - International Gaming Technology | |
| 10702 | pex2068p // (c) 1995 IGT - International Gaming Technology | |
| 10703 | pex2069p // (c) 1995 IGT - International Gaming Technology | |
| 10704 | pex2070p // (c) 1995 IGT - International Gaming Technology | |
| 10705 | pex2172p // (c) 1995 IGT - International Gaming Technology | |
| 10706 | pex2241p // (c) 1995 IGT - International Gaming Technology | |
| 10707 | pex2244p // (c) 1995 IGT - International Gaming Technology | |
| 10708 | pex2245p // (c) 1995 IGT - International Gaming Technology | |
| 10709 | pex2245pa // (c) 1995 IGT - International Gaming Technology | |
| 10710 | pex2250p // (c) 1995 IGT - International Gaming Technology | |
| 10711 | pex2251p // (c) 1995 IGT - International Gaming Technology | |
| 10712 | pex2302p // (c) 1995 IGT - International Gaming Technology | |
| 10713 | pex2303p // (c) 1995 IGT - International Gaming Technology | |
| 10714 | pex2307p // (c) 1995 IGT - International Gaming Technology | |
| 10715 | pex2314p // (c) 1995 IGT - International Gaming Technology | |
| 10716 | pex2374p // (c) 1995 IGT - International Gaming Technology | |
| 10717 | pexs0006 // (c) 1997 IGT - International Gaming Technology | |
| 10718 | pexmp002 // (c) 1997 IGT - International Gaming Technology | |
| 10719 | pexmp003 // (c) 1997 IGT - International Gaming Technology | |
| 10720 | pexmp003a // (c) 1997 IGT - International Gaming Technology | |
| 10721 | pexmp003b // (c) 1997 IGT - International Gaming Technology | |
| 10722 | pexmp004 // (c) 1997 IGT - International Gaming Technology | |
| 10723 | pexmp006 // (c) 1997 IGT - International Gaming Technology | |
| 10724 | pexmp006a // (c) 1997 IGT - International Gaming Technology | |
| 10725 | pexmp006b // (c) 1997 IGT - International Gaming Technology | |
| 10726 | pexmp017 // (c) 1997 IGT - International Gaming Technology | |
| 10727 | pexmp024 // (c) 1997 IGT - International Gaming Technology | |
| 10728 | ||
| 10597 | 10729 | elgrande // (c) 1982 Tuni Electro Service / E.T. Marketing |
| 10598 | 10730 | jjpoker // (c) 1983 Enter-Tech |
| 10599 | 10731 | jjpokerb // (c) 1983 Enter-Tech |
| r25453 | r25454 | |
| 10644 | 10776 | eshb // (c) 1984 Funai / Gakken |
| 10645 | 10777 | comebaby // (c) 2000 ExPotato |
| 10646 | 10778 | bntyhunt // (c) 200? GCTech Co., LTD |
| 10647 | peset038 // (c) 1987 IGT - International Gaming Technology | |
| 10648 | pepp0043 // (c) 1987 IGT - International Gaming Technology | |
| 10649 | pepp0065 // (c) 1987 IGT - International Gaming Technology | |
| 10650 | pepp0158 // (c) 1987 IGT - International Gaming Technology | |
| 10651 | pepp0188 // (c) 1987 IGT - International Gaming Technology | |
| 10652 | pepp0250 // (c) 1987 IGT - International Gaming Technology | |
| 10653 | pepp0447 // (c) 1987 IGT - International Gaming Technology | |
| 10654 | pepp0516 // (c) 1987 IGT - International Gaming Technology | |
| 10655 | pebe0014 // (c) 1994 IGT - International Gaming Technology | |
| 10656 | peke1012 // (c) 1994 IGT - International Gaming Technology | |
| 10657 | peps0014 // (c) 1996 IGT - International Gaming Technology | |
| 10658 | peps0022 // (c) 1996 IGT - International Gaming Technology | |
| 10659 | peps0043 // (c) 1996 IGT - International Gaming Technology | |
| 10660 | peps0045 // (c) 1996 IGT - International Gaming Technology | |
| 10661 | peps0308 // (c) 1996 IGT - International Gaming Technology | |
| 10662 | peps0615 // (c) 1996 IGT - International Gaming Technology | |
| 10663 | peps0716 // (c) 1996 IGT - International Gaming Technology | |
| 10664 | pex2069p // (c) 1995 IGT - International Gaming Technology | |
| 10665 | pexp0019 // (c) 1995 IGT - International Gaming Technology | |
| 10666 | pexp0112 // (c) 1995 IGT - International Gaming Technology | |
| 10667 | pexs0006 // (c) 1997 IGT - International Gaming Technology | |
| 10668 | pexmp006 // (c) 1997 IGT - International Gaming Technology | |
| 10669 | pexmp017 // (c) 1997 IGT - International Gaming Technology | |
| 10670 | pexmp024 // (c) 1997 IGT - International Gaming Technology | |
| 10671 | 10779 | mirage // (c) 1994 Mitchell |
| 10672 | 10780 | dominob // (c) 1996 Wonwoo Systems |
| 10673 | 10781 | dominobv2 // (c) 1996 Wonwoo Systems |
| Previous | 199869 Revisions | Next |