Previous 199869 Revisions Next

r32292 Monday 22nd September, 2014 at 18:18:17 UTC by Brian Troha
peplus.c: minor updates - NW

Makes allowances for the Non Plus versions and prevents the Door Open bit from cycling for the earlier 32K versions.  This allows several games to properly work such as PP0120 - Wild Sevens Poker ;-)
[src/mame/drivers]peplus.c

trunk/src/mame/drivers/peplus.c
r32291r32292
164164NOTE:  Some CG graphics sets work with several "standard" game types, but will be included in a single set for
165165       illustration purposes and to archive the sets.
166166
167NOTE:  Currently some of the 32K sets read the "OPEN DOOR" and cycle too quickly to be played. Some can be played
168       if the door status is closed when you start the game, like PP0120 Wild Sevens Poker.
167NOTE:  The Door Open cycling is currently not fully understood. Non Plus programs and the earlier 32K versions don't
168       expect the Door Open bit to cycle. Later versions, Superboard & Wingboards require the Door Open cycling but
169       at different rates. It's currently not know what if any universal value will work for all sets.
169170
171NOTE:  Some of the earlier 32K versions currently error out with a Coin-In Timeout error. These sets include:
172       PP0008, PP0014, PP0023, PP0057, PP0059, PP0063 & PP0064
173
170174***********************************************************************************/
171175
172176#include "emu.h"
r32291r32292
223227   required_shared_ptr<UINT8> m_io_port;
224228   tilemap_t *m_bg_tilemap;
225229   UINT8 m_wingboard;
230   UINT8 m_doorcycle;
231   UINT16 door_wait;
226232   UINT8 m_jumper_e16_e17;
227233   UINT16 m_vid_address;
228234   UINT8 *m_palette_ram;
r32291r32292
278284   DECLARE_WRITE8_MEMBER(i2c_nvram_w);
279285   DECLARE_READ8_MEMBER(peplus_input_bank_a_r);
280286   DECLARE_READ8_MEMBER(peplus_input0_r);
287   DECLARE_DRIVER_INIT(nonplus);
281288   DECLARE_DRIVER_INIT(peplus);
282289   DECLARE_DRIVER_INIT(peplussb);
283290   DECLARE_DRIVER_INIT(peplussbw);
r32291r32292
856863   UINT8 coin_optics = 0x00;
857864   UINT8 coin_out = 0x00;
858865   UINT64 curr_cycles = m_maincpu->total_cycles();
859   UINT16 door_wait = 500;
860866
861867   UINT8 sda = 0;
862868   if(!m_sda_dir)
r32291r32292
899905         break;
900906   }
901907
902   if (m_wingboard)
903      door_wait = 12345;
904
905908   if (curr_cycles - m_last_door > door_wait) {
906909      if ((ioport("DOOR")->read_safe(0xff) & 0x01) == 0x01) {
907         m_door_open = (m_door_open ^ 0x01) & 0x01;
910         if (m_doorcycle) {
911            m_door_open = (m_door_open ^ 0x01) & 0x01;
912         } else {
913            m_door_open = 0;
914         }
908915      } else {
909916         m_door_open = 1;
910917      }
r32291r32292
11451152   PORT_CONFSETTING( 0x01, "ID-023" )
11461153
11471154   PORT_START("SW1")
1148   PORT_DIPNAME( 0x01, 0x01, "Line Frequency" )
1155   PORT_DIPNAME( 0x01, 0x01, "Line Frequency" ) PORT_DIPLOCATION("SW1:1")
11491156   PORT_DIPSETTING(    0x01, "60Hz" )
11501157   PORT_DIPSETTING(    0x00, "50Hz" )
1151   PORT_DIPUNUSED( 0x02, IP_ACTIVE_LOW )
1152   PORT_DIPUNUSED( 0x04, IP_ACTIVE_LOW )
1153   PORT_DIPUNUSED( 0x08, IP_ACTIVE_LOW )
1154   PORT_DIPUNUSED( 0x10, IP_ACTIVE_LOW )
1155   PORT_DIPUNUSED( 0x20, IP_ACTIVE_LOW )
1156   PORT_DIPUNUSED( 0x40, IP_ACTIVE_LOW )
1157   PORT_DIPUNUSED( 0x80, IP_ACTIVE_LOW )
1158   PORT_DIPUNUSED_DIPLOC( 0x02, IP_ACTIVE_LOW, "SW1:2" )
1159   PORT_DIPUNUSED_DIPLOC( 0x04, IP_ACTIVE_LOW, "SW1:3" )
1160   PORT_DIPUNUSED_DIPLOC( 0x08, IP_ACTIVE_LOW, "SW1:4" )
1161   PORT_DIPUNUSED_DIPLOC( 0x10, IP_ACTIVE_LOW, "SW1:5" )
1162   PORT_DIPUNUSED_DIPLOC( 0x20, IP_ACTIVE_LOW, "SW1:6" )
1163   PORT_DIPUNUSED_DIPLOC( 0x40, IP_ACTIVE_LOW, "SW1:7" )
1164   PORT_DIPUNUSED_DIPLOC( 0x80, IP_ACTIVE_LOW, "SW1:8" )
11581165INPUT_PORTS_END
11591166
11601167static INPUT_PORTS_START( peplus_schip )
r32291r32292
11841191   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
11851192INPUT_PORTS_END
11861193
1194static INPUT_PORTS_START( nonplus_poker )
1195   PORT_INCLUDE(peplus)
1196
1197   PORT_START("IN_BANK1")
1198   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1199   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1200   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_POKER_HOLD1 )
1201   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_POKER_HOLD2 )
1202   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_POKER_HOLD3 )
1203   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_POKER_HOLD4 )
1204   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_POKER_HOLD5 )
1205
1206   PORT_START("IN_BANK2")
1207   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1208   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1209   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1210   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1211   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1212   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1213   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_OTHER ) // Bill Acceptor
1214
1215   PORT_START("IN0")
1216   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1217   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1218   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1219   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1220
1221   PORT_MODIFY("SW1")
1222   PORT_DIPNAME( 0x02, 0x02, "Credit" )      PORT_DIPLOCATION("SW1:2")
1223   PORT_DIPSETTING(    0x02, "Coin Play" )
1224   PORT_DIPSETTING(    0x00, "Credit Play" )
1225   PORT_DIPNAME( 0x04, 0x00, "Coin Acceptor" )   PORT_DIPLOCATION("SW1:3")
1226   PORT_DIPSETTING(    0x04, "Mechanical" )
1227   PORT_DIPSETTING(    0x00, "Optical" )
1228   PORT_DIPNAME( 0x08, 0x08, "Double Up" )      PORT_DIPLOCATION("SW1:4")
1229   PORT_DIPSETTING(    0x08, DEF_STR( Off ) )
1230   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1231   PORT_DIPNAME( 0x10, 0x10, "Progressive" )   PORT_DIPLOCATION("SW1:5")
1232   PORT_DIPSETTING(    0x10, DEF_STR( Off ) )
1233   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1234   PORT_DIPNAME( 0x60, 0x40, "Max Hopper Pay" )   PORT_DIPLOCATION("SW1:6,7")
1235   PORT_DIPSETTING(    0x60, "300 Coins" )
1236   PORT_DIPSETTING(    0x40, "400 Coins" )
1237   PORT_DIPSETTING(    0x20, "600 Coins" )
1238   PORT_DIPSETTING(    0x00, "1000 Coins" )
1239   PORT_DIPNAME( 0x80, 0x00, "Show Pay Table" )   PORT_DIPLOCATION("SW1:8")
1240   PORT_DIPSETTING(    0x80, DEF_STR( Off ) )
1241   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1242INPUT_PORTS_END
1243
11871244static INPUT_PORTS_START( peplus_poker )
11881245   PORT_INCLUDE(peplus)
11891246
r32291r32292
13551412*      Driver Init       *
13561413*************************/
13571414
1415/* Non Plus board */
1416DRIVER_INIT_MEMBER(peplus_state,nonplus)
1417{
1418   door_wait = 500;
1419   m_doorcycle = FALSE;
1420   m_wingboard = FALSE;
1421   m_jumper_e16_e17 = FALSE;
1422}
1423
13581424/* Normal board */
13591425DRIVER_INIT_MEMBER(peplus_state,peplus)
13601426{
1427   door_wait = 500;
1428   m_doorcycle = TRUE;
13611429   m_wingboard = FALSE;
13621430   m_jumper_e16_e17 = FALSE;
13631431}
r32291r32292
13651433/* Superboard */
13661434DRIVER_INIT_MEMBER(peplus_state,peplussb)
13671435{
1436   door_wait = 500;
1437   m_doorcycle = TRUE;
13681438   m_wingboard = FALSE;
13691439   m_jumper_e16_e17 = FALSE;
13701440   peplus_load_superdata("user1");
r32291r32292
13731443/* Superboard with Attached Wingboard */
13741444DRIVER_INIT_MEMBER(peplus_state,peplussbw)
13751445{
1446   door_wait = 12345;
1447   m_doorcycle = TRUE;
13761448   m_wingboard = TRUE;
13771449   m_jumper_e16_e17 = TRUE;
13781450   peplus_load_superdata("user1");
r32291r32292
86758747GAMEL(1987, peset038, 0,      peplus,  peplus_schip, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (Set038) Set Chip",                      0,   layout_pe_schip )
86768748
86778749/* Normal (non-plus) board : Poker */
8678GAMEL(1987, pepk1024,  0,        peplus, peplus_poker, peplus_state, peplus,  ROT0,  "IGT - International Game Technology", "Player's Edge (PK1024) Aces and Faces Poker",              0, layout_pe_poker )
8750GAMEL(1987, pepk1024,  0,        peplus, nonplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge (PK1024) Aces and Faces Poker",               0, layout_pe_poker )
86798751
86808752/* Normal board : Poker */
86818753GAMEL(1987, pepp0002,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0002) Standard Draw Poker",           0, layout_pe_poker )
86828754GAMEL(1987, pepp0002a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0002) Standard Draw Poker (International)", 0, layout_pe_poker )
8683GAMEL(1987, pepp0008,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0008) Standard Draw Poker",           0, layout_pe_poker )
8684GAMEL(1987, pepp0009,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0009) Standard Draw Poker",           0, layout_pe_poker )
8755GAMEL(1987, pepp0008,  pepp0002, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0008) Standard Draw Poker",           0, layout_pe_poker )
8756GAMEL(1987, pepp0009,  pepp0002, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0009) Standard Draw Poker",           0, layout_pe_poker )
86858757GAMEL(1987, pepp0010,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0010) Standard Draw Poker",           0, layout_pe_poker )
86868758GAMEL(1987, pepp0014,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0014) Standard Draw Poker (International)", 0, layout_pe_poker )
8687GAMEL(1987, pepp0014a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0014) Standard Draw Poker",           0, layout_pe_poker )
8688GAMEL(1987, pepp0023,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0023) 10's or Better",                0, layout_pe_poker )
8759GAMEL(1987, pepp0014a, pepp0002, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0014) Standard Draw Poker",           0, layout_pe_poker )
8760GAMEL(1987, pepp0023,  pepp0002, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0023) 10's or Better",                0, layout_pe_poker )
86898761GAMEL(1987, pepp0040,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0040) Standard Draw Poker",           0, layout_pe_poker )
86908762GAMEL(1987, pepp0041,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0041) Standard Draw Poker",           0, layout_pe_poker )
86918763GAMEL(1987, pepp0043,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0043) 10's or Better",                0, layout_pe_poker )
r32291r32292
86938765GAMEL(1987, pepp0045,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0045) 10's or Better",                0, layout_pe_poker )
86948766GAMEL(1987, pepp0046,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0046) 10's or Better (set 1)",        0, layout_pe_poker )
86958767GAMEL(1987, pepp0046a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0046) 10's or Better (International)",   0, layout_pe_poker )
8696GAMEL(1987, pepp0046b, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0046) 10's or Better (set 2)",        0, layout_pe_poker )
8697GAMEL(1987, pepp0051,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0051) Joker Poker",                   0, layout_pe_poker )
8768GAMEL(1987, pepp0046b, pepp0002, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0046) 10's or Better (set 2)",        0, layout_pe_poker )
8769GAMEL(1987, pepp0051,  pepp0053, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0051) Joker Poker",                   0, layout_pe_poker )
86988770GAMEL(1987, pepp0053,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0053) Joker Poker (Aces or Better)",  0, layout_pe_poker )
86998771GAMEL(1987, pepp0055,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0055) Deuces Wild Poker (set 1)",     0, layout_pe_poker )
87008772GAMEL(1987, pepp0055a, pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0055) Deuces Wild Poker (set 2)",     0, layout_pe_poker )
8701GAMEL(1987, pepp0055b, pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0055) Deuces Wild Poker (set 3)",     0, layout_pe_poker )
8773GAMEL(1987, pepp0055b, pepp0055, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0055) Deuces Wild Poker (set 3)",     0, layout_pe_poker )
87028774GAMEL(1987, pepp0057,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0057) Deuces Wild Poker (set 1)",     0, layout_pe_poker )
8703GAMEL(1987, pepp0057a, pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0057) Deuces Wild Poker (set 2)",     0, layout_pe_poker )
8775GAMEL(1987, pepp0057a, pepp0055, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0057) Deuces Wild Poker (set 2)",     0, layout_pe_poker )
87048776GAMEL(1987, pepp0059,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0059) Two Pair or Better (set 1)",    0, layout_pe_poker )
8705GAMEL(1987, pepp0059a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0059) Two Pair or Better (set 2)",    0, layout_pe_poker )
8777GAMEL(1987, pepp0059a, pepp0002, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0059) Two Pair or Better (set 2)",    0, layout_pe_poker )
87068778GAMEL(1987, pepp0060,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0060) Standard Draw Poker (set 1)",   0, layout_pe_poker )
87078779GAMEL(1987, pepp0060a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0060) Standard Draw Poker (set 2)",   0, layout_pe_poker )
8708GAMEL(1987, pepp0063,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0063) 10's or Better",                0, layout_pe_poker )
8709GAMEL(1987, pepp0064,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0064) Joker Poker",                   0, layout_pe_poker )
8780GAMEL(1987, pepp0063,  pepp0002, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0063) 10's or Better",                0, layout_pe_poker )
8781GAMEL(1987, pepp0064,  pepp0053, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0064) Joker Poker",                   0, layout_pe_poker )
87108782GAMEL(1987, pepp0065,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0065) Joker Poker (Aces or Better)",  0, layout_pe_poker )
8711GAMEL(1987, pepp0083,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0083) 10's or Better",                0, layout_pe_poker )
8712GAMEL(1987, pepp0103,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0103) Deuces Wild Poker",             0, layout_pe_poker )
8713GAMEL(1987, pepp0116,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0116) Standard Draw Poker",           0, layout_pe_poker )
8714GAMEL(1987, pepp0118,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0118) Standard Draw Poker",           0, layout_pe_poker )
8715GAMEL(1987, pepp0120,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0120) Wild Sevens Poker",             0, layout_pe_poker )
8716GAMEL(1987, pepp0125,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0125) Deuces Wild Poker",             0, layout_pe_poker )
8783GAMEL(1987, pepp0083,  pepp0002, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0083) 10's or Better",                0, layout_pe_poker )
8784GAMEL(1987, pepp0103,  pepp0055, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0103) Deuces Wild Poker",             0, layout_pe_poker )
8785GAMEL(1987, pepp0116,  pepp0002, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0116) Standard Draw Poker",           0, layout_pe_poker )
8786GAMEL(1987, pepp0118,  pepp0002, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0118) Standard Draw Poker",           0, layout_pe_poker )
8787GAMEL(1987, pepp0120,  0,        peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0120) Wild Sevens Poker",             0, layout_pe_poker )
8788GAMEL(1987, pepp0125,  pepp0055, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0125) Deuces Wild Poker",             0, layout_pe_poker )
87178789GAMEL(1987, pepp0126,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0126) Deuces Wild Poker",             0, layout_pe_poker )
87188790GAMEL(1987, pepp0127,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0127) Deuces Joker Wild Poker",       0, layout_pe_poker )
87198791GAMEL(1987, pepp0127a, pepp0127, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0127) Deuces Joker Wild Poker (International)", 0, layout_pe_poker )
87208792GAMEL(1987, pepp0158,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0158) 4 of a Kind Bonus Poker (set 1)",  0, layout_pe_poker )
87218793GAMEL(1987, pepp0158a, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0158) 4 of a Kind Bonus Poker (set 2)",  0, layout_pe_poker )
8722GAMEL(1987, pepp0158b, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0158) 4 of a Kind Bonus Poker (set 3)",  0, layout_pe_poker )
8794GAMEL(1987, pepp0158b, pepp0158, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0158) 4 of a Kind Bonus Poker (set 3)",  0, layout_pe_poker )
87238795GAMEL(1987, pepp0159,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0159) Standard Draw Poker (International)", 0, layout_pe_poker )
87248796GAMEL(1987, pepp0171,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0171) Joker Poker",                   0, layout_pe_poker )
87258797GAMEL(1987, pepp0171a, pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0171) Joker Poker (International)",   0, layout_pe_poker )
r32291r32292
87428814GAMEL(1987, pepp0224a, pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0224) Deuces Wild Poker (set 2)",     0, layout_pe_poker )
87438815GAMEL(1987, pepp0230,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0230) Standard Draw Poker",           0, layout_pe_poker )
87448816GAMEL(1987, pepp0242,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0242) Deuces Wild Poker (International English/Spanish)", 0, layout_pe_poker )
8745GAMEL(1987, pepp0249,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0249) Deuces Wild Poker",             0, layout_pe_poker )
8817GAMEL(1987, pepp0249,  pepp0055, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0249) Deuces Wild Poker",             0, layout_pe_poker )
87468818GAMEL(1987, pepp0250,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0250) Double Down Stud Poker",        0, layout_pe_poker )
87478819GAMEL(1987, pepp0265,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0265) 4 of a Kind Bonus Poker (set 1)",  0, layout_pe_poker )
87488820GAMEL(1987, pepp0265a, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0265) 4 of a Kind Bonus Poker (set 2)",  0, layout_pe_poker )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team