Previous 199869 Revisions Next

r32921 Friday 24th October, 2014 at 06:23:55 UTC by Miodrag Milanović
fix eol for brian (nw)
[src/mame/drivers]peplus.c

trunk/src/mame/drivers/peplus.c
r241432r241433
1/**********************************************************************************
2 
3 
4    PLAYER'S EDGE PLUS (PE+)
5 
6    Driver by Jim Stolis.
7    Layouts by Stephh.
8 
9    Special thanks to smf for I2C EEPROM support.
10 
11    --- Technical Notes ---
12 
13    Name:    Player's Edge Plus (PP0516) Double Bonus Draw Poker.
14    Company: IGT - International Game Technology
15    Year:    1987
16 
17    Hardware:
18 
19    CPU =  INTEL 80C32       ; I8052 compatible
20    VIDEO = ROCKWELL 6545    ; CRTC6845 compatible
21    SND =  AY-3-8912         ; AY8910 compatible
22 
23    History:
24 
25    This form of video poker machine has the ability to use different game roms.  The operator
26    changes the game by placing the rom at U68 on the motherboard.  This driver currently supports
27    several PE+ game roms, but should work with all other compatible game roms as far as cpu, video,
28    sound, and inputs are concerned.  Some games can share the same color prom and graphic roms,
29    but this is not always the case.  It is best to confirm the game, color and graphic combinations.
30 
31    The game code runs in two different modes, game mode and operator mode.  Game mode is what a
32    normal player would see when playing.  Operator mode is for the machine operator to adjust
33    machine settings and view coin counts.  The upper door must be open in order to enter operator
34    mode and so it should be mapped to an input bank if you wish to support it.  The operator
35    has two additional inputs (jackpot reset and self-test) to navigate with, along with the
36    normal buttons available to the player.
37 
38    A normal machine keeps all coin counts and settings in a battery-backed ram, and will
39    periodically update an external eeprom for an even more secure backup.  This eeprom
40    also holds the current game state in order to recover the player from a full power failure.
41 
42 
43Additional notes
44================
45 
461) What are "set chips" ?
47 
48    They are meant to be used after you have already sucessfully put a new game in your machine.
49    Lets say you have 'pepp0516' installed and you go through the setup. In a real machine,
50    you may want to add a bill validator. The only way to do that is to un-socket the 'pepp0516'
51    chip and put in the 'peset038' chip and then reboot the machine. Then this chip's program
52    runs and you set the options and put the 'pepp0516' chip back in.
53 
54    The only way to simulate this is to fire up the 'pepp0516' game and set it up. Then exit the
55    game and copy the cmos & i2cmem files from your 'pepp0516' directory (in NVRAM) to the peset038
56    directory in NVRAM, and then run the 'peset038' program. This is because they have to have the
57    same eeprom and cmos data in memory to work. When you are done with the 'peset038' program,
58    you copy the cmos & i2cmem files back into the pepp0516 directory and restart the pepp0516 game.
59    'peset038' is just a utility program with one screen and 3 tested inputs.
60 
61 
622) Initialization
63 
64  - Method 1 :
65      * be sure the door is opened (if not, press 'O' by default)
66      * "CMOS DATA" will be displayed
67      * press the self-test button (default is 'K')
68      * be sure the door is opened (if not, press 'O' by default)
69      * "EEPROM DATA" will be displayed
70      * press the self-test button (default is 'K')
71      * be sure the door is closed (if not, press 'O' by default)
72 
73  - Method 2 :
74      * be sure the door is opened (if not, press 'O' by default)
75      * "CMOS DATA" will be displayed
76      * press the self-test button (default is 'K') until a "beep" is heard
77      * be sure the door is closed (if not, press 'O' by default)
78      * press the jackpot reset button (default is 'L')
79      * be sure the door is opened (if not, press 'O' by default)
80      * "EEPROM DATA" will be displayed
81      * press the self-test button (default is 'K')
82      * be sure the door is closed (if not, press 'O' by default)
83 
84  - Method 3 (earlier 32K French programs ONLY):
85      * be sure the door is opened (if not, press 'O' by default)
86      * "CODE ERREUR DE VALIDITE CMOS" will be displayed
87      * press the self-test button (default is 'K')
88      * be sure the door is closed (if not, press 'O' by default)
89      * if you see "PORTE OUVERTE" on the bottom of the screen,  the secondary
90      *    door is open, you'll need to close it (press 'M' by default)
91      * when both doors are closed you should see "PORTE FERMEE" on the
92      *    bottom of the screen. Begin normal play
93 
94 
953) Configuration
96 
97  - To configure a game :
98      * be sure the door is opened (if not, press 'O' by default)
99      * press the self-test button (default is 'K')
100      * cycle through the screens with the self-test button (default is 'K')
101      * close the door (default is 'O') to go back to the game and save the settings
102 
1033a) About the "autohold" feature
104 
105    Depending on laws which vary from cities/country, this feature can available or not in the
106    "operator mode". By default, it isn't available. To have this feature available in the
107    "operator mode", a new chip has to be burnt with a bit set and a new checksum (game ID
108    doesn't change though). Each program rom requires a specific address to be set to 0x01
109    to enable this option. It is beyond the scope of this driver to provide that information
110    for each set that is supported. Only PP0197 & PP0419 have support for Autohold enabled.
111 
112 
113Stephh's log (2007.11.28) :
114  - Renamed sets :
115      * 'peplus'   -> 'pepp0516' (so we get the game ID as for the other games)
116  - added generic/default layout, inputs and outputs
117  - for each kind of game (poker, bjack, keno, slots) :
118      * added two layouts (default is the "Bezel Lamps" for players, the other is "Debug Lamps")
119      * added one INPUT_PORT definition
120  - for "set chips" :
121      * added one fake layout
122      * added one fake INPUT_PORT definition
123 
124******************************************************************************************************************
125 
126Generally speaking for standard PE+ boards:
127 
128    Program roms are 64K and read as 27C512  (Jumper E15 is for 64K, E14 is for 32K)
129CG Graphics roms are 32K and read as 27C256
130      Color CAP PROM are 256 bytes and read as N82S135N (or compatible, IE: DM74LS471)
131      Color CAPX PROM are 512 bytes and read as N82S147N (or compatible)
132       Where CAPX & CAP share the same number, the CAPX has the same DATA as the CAP chip in
133       the first 256 bytes, then just padded with 256 bytes of 0x00 at the end of the file.
134 
135Board type with program type
136 
137Standard PE+
138 Program Types:
139  BEnnnn Blackjack / 21 games
140  KEnnnn Keno
141  PPnnnn Poker games. Several different types of poker require specific CG graphics + CAP color prom
142  IPnnnn International Poker games. Several different types of poker require specific CG graphics + CAP color prom
143  PSnnnn Slot games. Each slot game requires specific CG graphics + CAP color prom
144 
145Super PE+
146 Program Types
147  XPnnnnnn  Poker Programs. Different options for each set, but all use the same XnnnnnnP data roms
148   XnnnnnnP Poker Data. Contains poker game + paytable percentages
149             Data roms will not work with every Program rom. Incompatible combos report: Incompatible Data EPROM
150             X000055P is a good example, it works with 19 XP000xxx Program roms. Others may be as few as 2.
151  XMPnnnnn  Multi-Poker Programs. Different options for each set, but all use the same XMnnnnnP data roms
152             XMP00002 through XMP00006 & XMP00024 Use the XM000xxP Poker Data
153             XMP00014, XMP00017 & XMP00030 Use the WING Board add-on and use the XnnnnnnP Poker Data (Not all are compatible!)
154   XMnnnnnP Multi-Poker Data. Contains poker games + paytable percentages: Requires specific CG graphics + CAP color prom
155  XKnnnnnn  Spot Keno Programs. Different options for each set, but all use the same XnnnnnnK data roms
156   XnnnnnnK Spot Keno Data. Uses CG2120 with CAP1267
157  XSnnnnnn  Slot Programs. Different options for each set, but all use the same XnnnnnnS data roms
158  XnnnnnnT  Tournament Slot Programs? Different options for each set, but all use the same XnnnnnnS data roms
159   XnnnnnnS Slot Data. Each set requires specific CG graphics + CAP color prom
160 
161The CG graphics + CAP color proms along with which program sets they belong to is a closely guarded secret by IGT.
162 The only public information is from collectors who document and share such information.
163 
164NOTE:  Do NOT use the CG+CAP combos listed below as THE definitive absolute reference. There are other combos that
165       worked to produce correct card graphics plus paytable information for many sets. So the combos listed below
166       may not always be the "official" combo and a better or more correct combo may exist.
167 
168NOTE:  International PP0xxx sets support a Tournament mode.  You can toggle back and forth between standard and
169       Tournament mode by pressing and holding Jackpot Reset (L key) and pressing Change Request (Y key)
170 
171NOTE:  XP000035 supports a Tournament mode.  You can toggle back and forth between standard and Tournament mode by
172       pressing and holding Jackpot Reset (L key) and pressing Change Request (Y key)
173 
174NOTE:  Some CG graphics sets work with several "standard" game types, but will be included in a single set for
175       illustration purposes and to archive the sets.
176 
177NOTE:  The Door Open cycling is currently not fully understood. Non Plus programs and the earlier 32K versions don't
178       expect the Door Open bit to cycle. Later versions, Superboard & Wingboards require the Door Open cycling but
179       at different rates. It's currently not know what if any universal value will work for all sets.
180 
181***********************************************************************************/
182 
183#include "emu.h"
184#include "sound/ay8910.h"
185#include "machine/nvram.h"
186#include "cpu/mcs51/mcs51.h"
187#include "machine/i2cmem.h"
188#include "video/mc6845.h"
189 
190#include "peplus.lh"
191#include "pe_schip.lh"
192#include "pe_poker.lh"
193#include "pe_bjack.lh"
194#include "pe_keno.lh"
195#include "pe_slots.lh"
196 
197 
198class peplus_state : public driver_device
199{
200public:
201   enum
202   {
203      TIMER_ASSERT_LP
204   };
205 
206   peplus_state(const machine_config &mconfig, device_type type, const char *tag)
207      : driver_device(mconfig, type, tag),
208         m_cmos_ram(*this, "cmos") ,
209      m_program_ram(*this, "prograram"),
210      m_s3000_ram(*this, "s3000_ram"),
211      m_s5000_ram(*this, "s5000_ram"),
212      m_videoram(*this, "videoram"),
213      m_s7000_ram(*this, "s7000_ram"),
214      m_sb000_ram(*this, "sb000_ram"),
215      m_sd000_ram(*this, "sd000_ram"),
216      m_sf000_ram(*this, "sf000_ram"),
217      m_io_port(*this, "io_port"),
218      m_maincpu(*this, "maincpu"),
219      m_i2cmem(*this, "i2cmem"),
220      m_gfxdecode(*this, "gfxdecode"),
221      m_palette(*this, "palette")
222   {
223   }
224 
225   required_shared_ptr<UINT8> m_cmos_ram;
226   required_shared_ptr<UINT8> m_program_ram;
227   required_shared_ptr<UINT8> m_s3000_ram;
228   required_shared_ptr<UINT8> m_s5000_ram;
229   required_shared_ptr<UINT8> m_videoram;
230   required_shared_ptr<UINT8> m_s7000_ram;
231   required_shared_ptr<UINT8> m_sb000_ram;
232   required_shared_ptr<UINT8> m_sd000_ram;
233   required_shared_ptr<UINT8> m_sf000_ram;
234   required_shared_ptr<UINT8> m_io_port;
235   tilemap_t *m_bg_tilemap;
236   UINT8 m_wingboard;
237   UINT8 m_doorcycle;
238   UINT16 door_wait;
239   UINT8 m_jumper_e16_e17;
240   UINT16 m_vid_address;
241   UINT8 *m_palette_ram;
242   UINT8 *m_palette_ram2;
243   UINT64 m_last_cycles;
244   UINT8 m_coin_state;
245   UINT64 m_last_door;
246   UINT8 m_door_open;
247   UINT64 m_last_coin_out;
248   UINT8 m_coin_out_state;
249   int m_sda_dir;
250   UINT8 m_bv_state;
251   UINT8 m_bv_busy;
252   UINT8 m_bv_pulse;
253   UINT8 m_bv_denomination;
254   UINT8 m_bv_protocol;
255   UINT64 m_bv_cycles;
256   UINT8 m_bv_last_enable_state;
257   UINT8 m_bv_enable_state;
258   UINT8 m_bv_enable_count;
259   UINT8 m_bv_data_bit;
260   UINT8 m_bv_loop_count;
261   UINT16 id023_data;
262   DECLARE_WRITE8_MEMBER(peplus_bgcolor_w);
263   DECLARE_WRITE8_MEMBER(peplus_crtc_display_w);
264   DECLARE_WRITE8_MEMBER(peplus_io_w);
265   DECLARE_WRITE8_MEMBER(peplus_duart_w);
266   DECLARE_WRITE8_MEMBER(peplus_cmos_w);
267   DECLARE_WRITE8_MEMBER(peplus_s3000_w);
268   DECLARE_WRITE8_MEMBER(peplus_s5000_w);
269   DECLARE_WRITE8_MEMBER(peplus_s7000_w);
270   DECLARE_WRITE8_MEMBER(peplus_sb000_w);
271   DECLARE_WRITE8_MEMBER(peplus_sd000_w);
272   DECLARE_WRITE8_MEMBER(peplus_sf000_w);
273   DECLARE_WRITE8_MEMBER(peplus_output_bank_a_w);
274   DECLARE_WRITE8_MEMBER(peplus_output_bank_b_w);
275   DECLARE_WRITE8_MEMBER(peplus_output_bank_c_w);
276   DECLARE_READ8_MEMBER(peplus_io_r);
277   DECLARE_READ8_MEMBER(peplus_duart_r);
278   DECLARE_READ8_MEMBER(peplus_cmos_r);
279   DECLARE_READ8_MEMBER(peplus_s3000_r);
280   DECLARE_READ8_MEMBER(peplus_s5000_r);
281   DECLARE_READ8_MEMBER(peplus_s7000_r);
282   DECLARE_READ8_MEMBER(peplus_sb000_r);
283   DECLARE_READ8_MEMBER(peplus_sd000_r);
284   DECLARE_READ8_MEMBER(peplus_sf000_r);
285   DECLARE_READ8_MEMBER(peplus_bgcolor_r);
286   DECLARE_READ8_MEMBER(peplus_dropdoor_r);
287   DECLARE_READ8_MEMBER(peplus_watchdog_r);
288   DECLARE_CUSTOM_INPUT_MEMBER(peplus_input_r);
289   DECLARE_WRITE8_MEMBER(peplus_crtc_mode_w);
290   DECLARE_WRITE_LINE_MEMBER(crtc_vsync);
291   DECLARE_WRITE8_MEMBER(i2c_nvram_w);
292   DECLARE_READ8_MEMBER(peplus_input_bank_a_r);
293   DECLARE_READ8_MEMBER(peplus_input0_r);
294   DECLARE_DRIVER_INIT(nonplus);
295   DECLARE_DRIVER_INIT(peplus);
296   DECLARE_DRIVER_INIT(peplussb);
297   DECLARE_DRIVER_INIT(peplussbw);
298   TILE_GET_INFO_MEMBER(get_bg_tile_info);
299   MC6845_ON_UPDATE_ADDR_CHANGED(crtc_addr);
300   virtual void machine_reset();
301   virtual void video_start();
302   UINT32 screen_update_peplus(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
303   void peplus_load_superdata(const char *bank_name);
304   DECLARE_PALETTE_INIT(peplus);
305   required_device<cpu_device> m_maincpu;
306   required_device<i2cmem_device> m_i2cmem;
307   required_device<gfxdecode_device> m_gfxdecode;
308   required_device<palette_device> m_palette;
309 
310protected:
311   virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
312};
313 
314static const UINT8  id_022[8] = { 0x00, 0x01, 0x04, 0x09, 0x13, 0x16, 0x18, 0x00 };
315static const UINT16 id_023[8] = { 0x4a6c, 0x4a7b, 0x4a4b, 0x4a5a, 0x4a2b, 0x4a0a, 0x4a19, 0x4a3a };
316 
317#define MASTER_CLOCK        XTAL_20MHz
318#define CPU_CLOCK           ((MASTER_CLOCK)/2)      /* divided by 2 - 7474 */
319#define MC6845_CLOCK        ((MASTER_CLOCK)/8/3)
320#define SOUND_CLOCK         ((MASTER_CLOCK)/12)
321 
322 
323/**************
324* Memory Copy *
325***************/
326 
327void peplus_state::peplus_load_superdata(const char *bank_name)
328{
329   UINT8 *super_data = memregion(bank_name)->base();
330 
331   /* Distribute Superboard Data */
332   memcpy(m_s3000_ram, &super_data[0x3000], 0x1000);
333   memcpy(m_s5000_ram, &super_data[0x5000], 0x1000);
334   memcpy(m_s7000_ram, &super_data[0x7000], 0x1000);
335   memcpy(m_sb000_ram, &super_data[0xb000], 0x1000);
336   memcpy(m_sd000_ram, &super_data[0xd000], 0x1000);
337   memcpy(m_sf000_ram, &super_data[0xf000], 0x1000);
338}
339 
340 
341/*****************
342* Write Handlers *
343******************/
344 
345WRITE8_MEMBER(peplus_state::peplus_bgcolor_w)
346{
347   int i;
348 
349   for (i = 0; i < m_palette->entries(); i++)
350   {
351      int bit0, bit1, bit2, r, g, b;
352 
353      /* red component */
354      bit0 = (~data >> 0) & 0x01;
355      bit1 = (~data >> 1) & 0x01;
356      bit2 = (~data >> 2) & 0x01;
357      r = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
358 
359      /* green component */
360      bit0 = (~data >> 3) & 0x01;
361      bit1 = (~data >> 4) & 0x01;
362      bit2 = (~data >> 5) & 0x01;
363      g = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
364 
365      /* blue component */
366      bit0 = (~data >> 6) & 0x01;
367      bit1 = (~data >> 7) & 0x01;
368      bit2 = 0;
369      b = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
370 
371      m_palette->set_pen_color((15 + (i*16)), rgb_t(r, g, b));
372   }
373}
374 
375 
376/* ROCKWELL 6545 - Transparent Memory Addressing */
377 
378MC6845_ON_UPDATE_ADDR_CHANGED(peplus_state::crtc_addr)
379{
380   m_vid_address = address;
381}
382 
383 
384WRITE8_MEMBER(peplus_state::peplus_crtc_mode_w)
385{
386   /* Reset timing logic */
387}
388 
389void peplus_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
390{
391   switch (id)
392   {
393   case TIMER_ASSERT_LP:
394      downcast<mc6845_device *>((device_t*)ptr)->assert_light_pen_input();
395      break;
396   default:
397      assert_always(FALSE, "Unknown id in peplus_state::device_timer");
398   }
399}
400 
401 
402static void handle_lightpen( mc6845_device *device )
403{
404   peplus_state *state = device->machine().driver_data<peplus_state>();
405   int x_val = device->machine().root_device().ioport("TOUCH_X")->read_safe(0x00);
406   int y_val = device->machine().root_device().ioport("TOUCH_Y")->read_safe(0x00);
407   const rectangle &vis_area = device->screen().visible_area();
408   int xt, yt;
409 
410   xt = x_val * vis_area.width() / 1024 + vis_area.min_x;
411   yt = y_val * vis_area.height() / 1024 + vis_area.min_y;
412 
413   state->timer_set(device->screen().time_until_pos(yt, xt), peplus_state::TIMER_ASSERT_LP, 0, device);
414}
415 
416WRITE_LINE_MEMBER(peplus_state::crtc_vsync)
417{
418   mc6845_device *device = machine().device<mc6845_device>("crtc");
419   m_maincpu->set_input_line(0, state ? ASSERT_LINE : CLEAR_LINE);
420   handle_lightpen(device);
421}
422 
423WRITE8_MEMBER(peplus_state::peplus_crtc_display_w)
424{
425   UINT8 *videoram = m_videoram;
426   videoram[m_vid_address] = data;
427   m_palette_ram[m_vid_address] = m_io_port[1];
428   m_palette_ram2[m_vid_address] = m_io_port[3];
429 
430   m_bg_tilemap->mark_tile_dirty(m_vid_address);
431 
432   /* An access here triggers a device read !*/
433   machine().device<mc6845_device>("crtc")->register_r(space, 0);
434}
435 
436WRITE8_MEMBER(peplus_state::peplus_io_w)
437{
438   m_io_port[offset] = data;
439}
440 
441WRITE8_MEMBER(peplus_state::peplus_duart_w)
442{
443   // Used for Slot Accounting System Communication
444}
445 
446WRITE8_MEMBER(peplus_state::peplus_cmos_w)
447{
448   char bank_name[6];
449 
450   /* Test for Wingboard PAL Trigger Condition */
451   if (offset == 0x1fff && m_wingboard && data < 5)
452   {
453      sprintf(bank_name, "user%d", data + 1);
454      peplus_load_superdata(bank_name);
455   }
456 
457   m_cmos_ram[offset] = data;
458}
459 
460WRITE8_MEMBER(peplus_state::peplus_s3000_w)
461{
462   m_s3000_ram[offset] = data;
463}
464 
465WRITE8_MEMBER(peplus_state::peplus_s5000_w)
466{
467   m_s5000_ram[offset] = data;
468}
469 
470WRITE8_MEMBER(peplus_state::peplus_s7000_w)
471{
472   m_s7000_ram[offset] = data;
473}
474 
475WRITE8_MEMBER(peplus_state::peplus_sb000_w)
476{
477   m_sb000_ram[offset] = data;
478}
479 
480WRITE8_MEMBER(peplus_state::peplus_sd000_w)
481{
482   m_sd000_ram[offset] = data;
483}
484 
485WRITE8_MEMBER(peplus_state::peplus_sf000_w)
486{
487   m_sf000_ram[offset] = data;
488}
489 
490WRITE8_MEMBER(peplus_state::peplus_output_bank_a_w)
491{
492   output_set_value("pe_bnka0",(data >> 0) & 1); /* Coin Lockout */
493   output_set_value("pe_bnka1",(data >> 1) & 1); /* Diverter */
494   output_set_value("pe_bnka2",(data >> 2) & 1); /* Bell */
495   output_set_value("pe_bnka3",(data >> 3) & 1); /* N/A */
496   output_set_value("pe_bnka4",(data >> 4) & 1); /* Hopper 1 */
497   output_set_value("pe_bnka5",(data >> 5) & 1); /* Hopper 2 */
498   output_set_value("pe_bnka6",(data >> 6) & 1); /* specific to a kind of machine */
499   output_set_value("pe_bnka7",(data >> 7) & 1); /* specific to a kind of machine */
500 
501   m_coin_out_state = 0;
502   if(((data >> 4) & 1) || ((data >> 5) & 1))
503      m_coin_out_state = 3;
504}
505 
506WRITE8_MEMBER(peplus_state::peplus_output_bank_b_w)
507{
508   output_set_value("pe_bnkb0",(data >> 0) & 1); /* specific to a kind of machine */
509   output_set_value("pe_bnkb1",(data >> 1) & 1); /* Deal Spin Start */
510   output_set_value("pe_bnkb2",(data >> 2) & 1); /* Cash Out */
511   output_set_value("pe_bnkb3",(data >> 3) & 1); /* specific to a kind of machine */
512   output_set_value("pe_bnkb4",(data >> 4) & 1); /* Bet 1 / Bet Max */
513   output_set_value("pe_bnkb5",(data >> 5) & 1); /* Change Request */
514   output_set_value("pe_bnkb6",(data >> 6) & 1); /* Door Open */
515   output_set_value("pe_bnkb7",(data >> 7) & 1); /* specific to a kind of machine */
516}
517 
518WRITE8_MEMBER(peplus_state::peplus_output_bank_c_w)
519{
520   output_set_value("pe_bnkc0",(data >> 0) & 1); /* Coin In Meter */
521   output_set_value("pe_bnkc1",(data >> 1) & 1); /* Coin Out Meter */
522   output_set_value("pe_bnkc2",(data >> 2) & 1); /* Coin Drop Meter */
523   output_set_value("pe_bnkc3",(data >> 3) & 1); /* Jackpot Meter */
524   output_set_value("pe_bnkc4",(data >> 4) & 1); /* Bill Acceptor Enabled */
525   output_set_value("pe_bnkc5",(data >> 5) & 1); /* SDS Out */
526   output_set_value("pe_bnkc6",(data >> 6) & 1); /* N/A */
527   output_set_value("pe_bnkc7",(data >> 7) & 1); /* Game Meter */
528 
529   m_bv_enable_state = (data >> 4) & 1;
530}
531 
532WRITE8_MEMBER(peplus_state::i2c_nvram_w)
533{
534   m_i2cmem->write_scl(BIT(data, 2));
535   m_sda_dir = BIT(data, 1);
536   m_i2cmem->write_sda(BIT(data, 0));
537}
538 
539 
540/****************
541* Read Handlers *
542****************/
543 
544READ8_MEMBER(peplus_state::peplus_io_r)
545{
546   return m_io_port[offset];
547}
548 
549READ8_MEMBER(peplus_state::peplus_duart_r)
550{
551   // Used for Slot Accounting System Communication
552   return 0x00;
553}
554 
555READ8_MEMBER(peplus_state::peplus_cmos_r)
556{
557   return m_cmos_ram[offset];
558}
559 
560READ8_MEMBER(peplus_state::peplus_s3000_r)
561{
562   return m_s3000_ram[offset];
563}
564 
565READ8_MEMBER(peplus_state::peplus_s5000_r)
566{
567   return m_s5000_ram[offset];
568}
569 
570READ8_MEMBER(peplus_state::peplus_s7000_r)
571{
572   return m_s7000_ram[offset];
573}
574 
575READ8_MEMBER(peplus_state::peplus_sb000_r)
576{
577   return m_sb000_ram[offset];
578}
579 
580READ8_MEMBER(peplus_state::peplus_sd000_r)
581{
582   return m_sd000_ram[offset];
583}
584 
585READ8_MEMBER(peplus_state::peplus_sf000_r)
586{
587   return m_sf000_ram[offset];
588}
589 
590/* Last Color in Every Palette is bgcolor */
591READ8_MEMBER(peplus_state::peplus_bgcolor_r)
592{
593   return m_palette->pen_color(15); // Return bgcolor from First Palette
594}
595 
596READ8_MEMBER(peplus_state::peplus_dropdoor_r)
597{
598   return 0x00; // Drop Door 0x00=Closed 0x02=Open
599}
600 
601READ8_MEMBER(peplus_state::peplus_watchdog_r)
602{
603   return 0x00; // Watchdog
604}
605 
606READ8_MEMBER(peplus_state::peplus_input0_r)
607{
608/*
609        PE+ bill validators have a dip switch setting to switch between ID-022 and ID-023 protocols.
610 
611        Emulating IGT IDO22 Pulse Protocol (IGT Smoke 2.2)
612        ID022 protocol requires a 20ms on/off pulse x times for denomination followed by a 50ms stop pulse.
613        The DBV then waits for at least 3 toggling (ACK) pulses of alternating 20ms each from the game.
614        If no toggling received within 200ms, the bill was rejected by the game (e.g. Max Credits reached).
615        Once toggling received, the DBV stacks the bill and sends a 10ms stacked pulses.
616 
617        Emulating IGT IDO23 Pulse Protocol (IGT 2.5)
618        ID023 protocol requires a start pulse of 50ms ON followed by a 20ms pause.  Next a 15-bit data stream
619        is sent based on the country code and denomination (see table below).  And finally a 90ms stop pulse.
620        There is then a 200ms pause and the entire sequence is transmitted again two more times.
621        The DBV then waits for the toggling much like the ID-022 protocol above, however ends with two 10ms
622        stack pulses instead of one.
623 
624        Ticket handling has not been emulated.
625 
626        IDO23 Country Codes
627        -------------------
628        0x07 = Canada
629        0x25 = USA
630 
631        IDO23 USA 15-bit Data Samples:
632        ---------+--------------+--------------+-----------+
633        Bill Amt | Country Code |  Denom Code  |  Checksum |
634        ---------+--------------+--------------+-----------+
635        $1       | 1 0 0 1 0 1  |  0 0 1 1 0   |  1 1 0 0  |
636        $2       | 1 0 0 1 0 1  |  0 0 1 1 1   |  1 0 1 1  |
637        $5       | 1 0 0 1 0 1  |  0 0 1 0 0   |  1 0 1 1  |
638        $10      | 1 0 0 1 0 1  |  0 0 1 0 1   |  1 0 1 0  |
639        $20      | 1 0 0 1 0 1  |  0 0 0 1 0   |  1 0 1 1  |
640        $50      | 1 0 0 1 0 1  |  0 0 0 0 0   |  1 0 1 0  |
641        $100     | 1 0 0 1 0 1  |  0 0 0 0 1   |  1 0 0 1  |
642        Ticket   | 1 0 0 1 0 1  |  0 0 0 1 1   |  1 0 1 0  |
643        ---------+--------------+--------------+-----------+
644 
645        Direction Data
646        --------------
647        A (FA) <-- [FRONT OF BILL] --> (FB) B
648        D (BB) <-- [BACK OF BILL ] --> (BA) C
649 
650        Pulses are currently time via cpu cycles.
651        833.3 cycles per millisecond
652        10 ms = 8333 cycles
653*/
654   UINT64 curr_cycles = m_maincpu->total_cycles();
655 
656   // Allow Bill Insert if DBV Enabled
657   if (m_bv_enable_state == 0x01 && ((ioport("DBV")->read_safe(0xff) & 0x01) == 0x00)) {
658      // If not busy
659      if (m_bv_busy == 0) {
660         m_bv_busy = 1;
661 
662         // Fetch Current Denomination and Protocol
663         m_bv_denomination = ioport("BC")->read();
664         m_bv_protocol = ioport("BP")->read();
665 
666         if (m_bv_protocol == 0) {
667            // ID-022
668            m_bv_denomination = id_022[m_bv_denomination];
669 
670            if (m_bv_denomination == 0)
671               m_bv_state = 0x03; // $1 So Skip Credit Pulse
672            else
673               m_bv_state = 0x01; // Greater than $1 Needs Credit Pulse
674         } else {
675            // ID-023
676            id023_data = id_023[m_bv_denomination];
677 
678            m_bv_data_bit = 14;
679            m_bv_loop_count = 0;
680 
681            m_bv_state = 0x11;
682         }
683 
684         m_bv_cycles = curr_cycles;
685         m_bv_pulse = 1;
686         m_bv_enable_count = 0;
687      }
688   }
689 
690   switch (m_bv_state)
691   {
692      case 0x00: // Not Active
693         m_bv_busy = 0;
694         break;
695      case 0x01: // Credit Pulse 20ms ON
696         if (curr_cycles - m_bv_cycles >= 833.3 * 20) {
697            m_bv_cycles = curr_cycles;
698            m_bv_pulse = 0;
699            m_bv_state++;
700         }
701         break;
702      case 0x02: // Credit Pulse 20ms OFF
703         if (curr_cycles - m_bv_cycles >= 833.3 * 20) {
704            m_bv_cycles = curr_cycles;
705            m_bv_pulse = 1;
706 
707            m_bv_denomination--;
708 
709            if (m_bv_denomination == 0)
710               m_bv_state++; // Done with Credit Pulse
711            else
712               m_bv_state = 0x01; // Continue Pulsing Denomination
713         }
714         break;
715      case 0x03: // Stop Pulse 50ms ON
716         if (curr_cycles - m_bv_cycles >= 833.3 * 50) {
717            m_bv_cycles = curr_cycles;
718            m_bv_pulse = 0;
719 
720            // Reset Toggle Details
721            m_bv_last_enable_state = m_bv_enable_state;
722            m_bv_enable_count = 0;
723 
724            m_bv_state++;
725         }
726         break;
727      case 0x04: // Begin Toggle Polling
728         if (m_bv_enable_state != m_bv_last_enable_state) {
729            m_bv_enable_count++;
730            m_bv_last_enable_state = m_bv_enable_state;
731 
732            // Got Enough Toggles, Advance to Stacking
733            if (m_bv_enable_count == 0x03) {
734               m_bv_cycles = curr_cycles;
735               m_bv_pulse = 1;
736               m_bv_state++;
737            }
738         } else {
739            // No Toggling Found, Game Rejected Bill
740            if (curr_cycles - m_bv_cycles >= 833.3 * 200) {
741               m_bv_pulse = 0;
742               m_bv_state = 0x00;
743            }
744         }
745         break;
746      case 0x05: // Stacked Pulse 10ms ON
747         if (curr_cycles - m_bv_cycles >= 833.3 * 10) {
748            m_bv_cycles = curr_cycles;
749            m_bv_pulse = 0;
750            m_bv_state = 0x00;
751         }
752         break;
753      case 0x11: // Start Pulse 50ms ON
754         if (curr_cycles - m_bv_cycles >= 833.3 * 50) {
755            m_bv_cycles = curr_cycles;
756            m_bv_pulse = 0;
757            m_bv_state++;
758         }
759         break;
760      case 0x12: // Start Pulse 20ms OFF
761         if (curr_cycles - m_bv_cycles >= 833.3 * 20) {
762            m_bv_cycles = curr_cycles;
763            m_bv_pulse = 1;
764            m_bv_state++;
765         }
766         break;
767      case 0x13: // Data Sync Pulse 20ms ON
768         if (curr_cycles - m_bv_cycles >= 833.3 * 20) {
769            m_bv_cycles = curr_cycles;
770            m_bv_pulse = 1 - ((id023_data >> m_bv_data_bit) & 0x01);
771            m_bv_state++;
772         }
773         break;
774      case 0x14: // Data Value Pulse 20ms OFF
775         if (curr_cycles - m_bv_cycles >= 833.3 * 20) {
776            m_bv_cycles = curr_cycles;
777            m_bv_pulse = 1;
778 
779            if (m_bv_data_bit == 0) {
780               m_bv_data_bit = 14; // Done with Data Stream
781               m_bv_state++;
782            } else {
783               m_bv_data_bit--;
784               m_bv_state = 0x13; // More Data Yet
785            }
786         }
787         break;
788      case 0x15: // Stop Pulse 90ms ON
789         if (curr_cycles - m_bv_cycles >= 833.3 * 90) {
790            m_bv_cycles = curr_cycles;
791            m_bv_pulse = 0;
792 
793            if (m_bv_loop_count >= 2) {
794               m_bv_state = 0x17; // Done, Ready for Toggling
795            } else {
796               m_bv_loop_count++;
797               m_bv_state++;
798            }
799         }
800         break;
801      case 0x16: // Repeat Pulse 200ms OFF
802         if (curr_cycles - m_bv_cycles >= 833.3 * 200) {
803            m_bv_cycles = curr_cycles;
804            m_bv_pulse = 1;
805            m_bv_state = 0x11; // Repeat from Start
806         }
807         break;
808      case 0x17: // Begin Toggle Polling
809         if (m_bv_enable_state != m_bv_last_enable_state) {
810            m_bv_enable_count++;
811            m_bv_last_enable_state = m_bv_enable_state;
812 
813            // Got Enough Toggles, Advance to Stacking
814            if (m_bv_enable_count == 0x03) {
815               m_bv_cycles = curr_cycles;
816               m_bv_pulse = 1;
817               m_bv_state++;
818            }
819         } else {
820            // No Toggling Found, Game Rejected Bill
821            if (curr_cycles - m_bv_cycles >= 833.3 * 200) {
822               m_bv_pulse = 0;
823               m_bv_state = 0x00;
824            }
825         }
826         break;
827      case 0x18: // Stacked Pulse 10ms ON
828         if (curr_cycles - m_bv_cycles >= 833.3 * 10) {
829            m_bv_cycles = curr_cycles;
830            m_bv_pulse = 0;
831            m_bv_state++;
832         }
833         break;
834      case 0x19: // Stacked Pulse 10ms OFF
835         if (curr_cycles - m_bv_cycles >= 833.3 * 10) {
836            m_bv_cycles = curr_cycles;
837            m_bv_pulse = 1;
838            m_bv_state++;
839         }
840         break;
841      case 0x1a: // Stacked Pulse 10ms ON
842         if (curr_cycles - m_bv_cycles >= 833.3 * 10) {
843            m_bv_cycles = curr_cycles;
844            m_bv_pulse = 0;
845            m_bv_state = 0x00;
846         }
847         break;
848   }
849 
850   if (m_bv_pulse == 1) {
851      return (0x70 || ioport("IN0")->read()); // Add Bill Validator Credit Pulse
852   } else {
853      return ioport("IN0")->read();
854   }
855}
856 
857READ8_MEMBER(peplus_state::peplus_input_bank_a_r)
858{
859/*
860        Bit 0 = COIN DETECTOR A
861        Bit 1 = COIN DETECTOR B
862        Bit 2 = COIN DETECTOR C
863        Bit 3 = COIN OUT
864        Bit 4 = HOPPER FULL
865        Bit 5 = DOOR OPEN
866        Bit 6 = LOW BATTERY
867        Bit 7 = I2C EEPROM SDA
868*/
869   UINT8 bank_a = 0x50; // Turn Off Low Battery and Hopper Full Statuses
870   UINT8 coin_optics = 0x00;
871   UINT8 coin_out = 0x00;
872   UINT64 curr_cycles = m_maincpu->total_cycles();
873 
874   UINT8 sda = 0;
875   if(!m_sda_dir)
876   {
877      sda = m_i2cmem->read_sda();
878   }
879 
880   if ((ioport("SENSOR")->read_safe(0x00) & 0x01) == 0x01 && m_coin_state == 0) {
881      m_coin_state = 1; // Start Coin Cycle
882      m_last_cycles = m_maincpu->total_cycles();
883   } else {
884      /* Process Next Coin Optic State */
885      if (curr_cycles - m_last_cycles > 10000 && m_coin_state != 0) { // Must be below 100ms (833.3 x 100 cycles) or "Coin-in Timeout" error
886         m_coin_state++;
887         if (m_coin_state > 5)
888            m_coin_state = 0;
889         m_last_cycles = m_maincpu->total_cycles();
890      }
891   }
892 
893   switch (m_coin_state)
894   {
895      case 0x00: // No Coin
896         coin_optics = 0x00;
897         break;
898      case 0x01: // Optic A
899         coin_optics = 0x01;
900         break;
901      case 0x02: // Optic AB
902         coin_optics = 0x03;
903         break;
904      case 0x03: // Optic ABC
905         coin_optics = 0x07;
906         break;
907      case 0x04: // Optic BC
908         coin_optics = 0x06;
909         break;
910      case 0x05: // Optic C
911         coin_optics = 0x04;
912         break;
913   }
914 
915   if (curr_cycles - m_last_door > door_wait) {
916      if ((ioport("DOOR")->read_safe(0xff) & 0x01) == 0x01) {
917         if (m_doorcycle) {
918            m_door_open = (m_door_open ^ 0x01) & 0x01;
919         } else {
920            m_door_open = 0;
921         }
922      } else {
923         m_door_open = 1;
924      }
925      m_last_door = m_maincpu->total_cycles();
926   }
927 
928   if (curr_cycles - m_last_coin_out > 600000/12 && m_coin_out_state != 0) { // Must be below 700ms or it will time out
929      if (m_coin_out_state != 2) {
930         m_coin_out_state = 2; // Coin-Out Off
931      } else {
932         m_coin_out_state = 3; // Coin-Out On
933      }
934 
935      m_last_coin_out = m_maincpu->total_cycles();
936   }
937 
938   switch (m_coin_out_state)
939   {
940      case 0x00: // No Coin-Out
941         coin_out = 0x00;
942         break;
943      case 0x01: // First Coin-Out On
944         coin_out = 0x08;
945         break;
946      case 0x02: // Coin-Out Off
947         coin_out = 0x00;
948         break;
949      case 0x03: // Additional Coin-Out On
950         coin_out = 0x08;
951         break;
952   }
953 
954   bank_a = (sda<<7) | bank_a | (m_door_open<<5) | coin_optics | coin_out;
955 
956   return bank_a;
957}
958 
959 
960/****************************
961* Video/Character functions *
962****************************/
963 
964TILE_GET_INFO_MEMBER(peplus_state::get_bg_tile_info)
965{
966   UINT8 *videoram = m_videoram;
967   int pr = m_palette_ram[tile_index];
968   int pr2 = m_palette_ram2[tile_index];
969   int vr = videoram[tile_index];
970 
971   int code = ((pr & 0x0f)*256) | vr;
972   int color = (pr>>4) & 0x0f;
973 
974   // Access 2nd Half of CGs and CAP
975   if (m_jumper_e16_e17 && (pr2 & 0x10) == 0x10)
976   {
977      code += 0x1000;
978      color += 0x10;
979   }
980 
981   SET_TILE_INFO_MEMBER(0, code, color, 0);
982}
983 
984void peplus_state::video_start()
985{
986   m_bg_tilemap = &machine().tilemap().create(m_gfxdecode, tilemap_get_info_delegate(FUNC(peplus_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 40, 25);
987   m_palette_ram = auto_alloc_array(machine(), UINT8, 0x3000);
988   memset(m_palette_ram, 0, 0x3000);
989   m_palette_ram2 = auto_alloc_array(machine(), UINT8, 0x3000);
990   memset(m_palette_ram2, 0, 0x3000);
991}
992 
993UINT32 peplus_state::screen_update_peplus(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
994{
995   m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
996 
997   return 0;
998}
999 
1000PALETTE_INIT_MEMBER(peplus_state, peplus)
1001{
1002   const UINT8 *color_prom = memregion("proms")->base();
1003   UINT32 proms_size = memregion("proms")->bytes();
1004/*  prom bits
1005    7654 3210
1006    ---- -xxx   red component.
1007    --xx x---   green component.
1008    xx-- ----   blue component.
1009*/
1010   int i;
1011 
1012   for (i = 0;i < palette.entries();i++)
1013   {
1014      int bit0, bit1, bit2, r, g, b;
1015 
1016      /* red component */
1017      bit0 = (~color_prom[i % proms_size] >> 0) & 0x01;
1018      bit1 = (~color_prom[i % proms_size] >> 1) & 0x01;
1019      bit2 = (~color_prom[i % proms_size] >> 2) & 0x01;
1020      r = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
1021 
1022      /* green component */
1023      bit0 = (~color_prom[i % proms_size] >> 3) & 0x01;
1024      bit1 = (~color_prom[i % proms_size] >> 4) & 0x01;
1025      bit2 = (~color_prom[i % proms_size] >> 5) & 0x01;
1026      g = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
1027 
1028      /* blue component */
1029      bit0 = (~color_prom[i % proms_size] >> 6) & 0x01;
1030      bit1 = (~color_prom[i % proms_size] >> 7) & 0x01;
1031      bit2 = 0;
1032      b = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
1033 
1034      palette.set_pen_color(i, rgb_t(r, g, b));
1035   }
1036}
1037 
1038 
1039/******************************
1040* Graphics Decode Information *
1041******************************/
1042 
1043static GFXDECODE_START( peplus )
1044         GFXDECODE_ENTRY( "gfx1", 0x00000, gfx_8x8x4_planar, 0, 16 )
1045GFXDECODE_END
1046 
1047 
1048/*************************
1049* Memory map information *
1050*************************/
1051 
1052static ADDRESS_MAP_START( peplus_map, AS_PROGRAM, 8, peplus_state )
1053   AM_RANGE(0x0000, 0xffff) AM_ROM AM_SHARE("prograram")
1054ADDRESS_MAP_END
1055 
1056static ADDRESS_MAP_START( peplus_iomap, AS_IO, 8, peplus_state )
1057   // Battery-backed RAM (0x1000-0x01fff Extended RAM for Superboards Only)
1058   AM_RANGE(0x0000, 0x1fff) AM_READWRITE(peplus_cmos_r, peplus_cmos_w) AM_SHARE("cmos")
1059 
1060   // CRT Controller
1061   AM_RANGE(0x2008, 0x2008) AM_WRITE(peplus_crtc_mode_w)
1062   AM_RANGE(0x2080, 0x2080) AM_DEVREADWRITE("crtc", mc6845_device, status_r, address_w)
1063   AM_RANGE(0x2081, 0x2081) AM_DEVREADWRITE("crtc", mc6845_device, register_r, register_w)
1064   AM_RANGE(0x2083, 0x2083) AM_DEVREAD("crtc", mc6845_device, register_r) AM_WRITE(peplus_crtc_display_w)
1065 
1066   // Superboard Data
1067   AM_RANGE(0x3000, 0x3fff) AM_READWRITE(peplus_s3000_r, peplus_s3000_w) AM_SHARE("s3000_ram")
1068 
1069   // Sound and Dipswitches
1070   AM_RANGE(0x4000, 0x4000) AM_DEVWRITE("aysnd", ay8910_device, address_w)
1071   AM_RANGE(0x4004, 0x4004) AM_READ_PORT("SW1")/* likely ay8910 input port, not direct */ AM_DEVWRITE("aysnd", ay8910_device, data_w)
1072 
1073   // Superboard Data
1074   AM_RANGE(0x5000, 0x5fff) AM_READWRITE(peplus_s5000_r, peplus_s5000_w) AM_SHARE("s5000_ram")
1075 
1076   // Background Color Latch
1077   AM_RANGE(0x6000, 0x6000) AM_READ(peplus_bgcolor_r) AM_WRITE(peplus_bgcolor_w)
1078 
1079   // Bogus Location for Video RAM
1080   AM_RANGE(0x06001, 0x06400) AM_RAM AM_SHARE("videoram")
1081 
1082   // Superboard Data
1083   AM_RANGE(0x7000, 0x7fff) AM_READWRITE(peplus_s7000_r, peplus_s7000_w) AM_SHARE("s7000_ram")
1084 
1085   // Input Bank A, Output Bank C
1086   AM_RANGE(0x8000, 0x8000) AM_READ(peplus_input_bank_a_r) AM_WRITE(peplus_output_bank_c_w)
1087 
1088   // Drop Door, I2C EEPROM Writes
1089   AM_RANGE(0x9000, 0x9000) AM_READ(peplus_dropdoor_r) AM_WRITE(i2c_nvram_w)
1090 
1091   // Input Banks B & C, Output Bank B
1092   AM_RANGE(0xa000, 0xa000) AM_READ(peplus_input0_r) AM_WRITE(peplus_output_bank_b_w)
1093 
1094   // Superboard Data
1095   AM_RANGE(0xb000, 0xbfff) AM_READWRITE(peplus_sb000_r, peplus_sb000_w) AM_SHARE("sb000_ram")
1096 
1097   // Output Bank A
1098   AM_RANGE(0xc000, 0xc000) AM_READ(peplus_watchdog_r) AM_WRITE(peplus_output_bank_a_w)
1099 
1100   // Superboard Data
1101   AM_RANGE(0xd000, 0xdfff) AM_READWRITE(peplus_sd000_r, peplus_sd000_w) AM_SHARE("sd000_ram")
1102 
1103   // DUART
1104   AM_RANGE(0xe000, 0xe00f) AM_READWRITE(peplus_duart_r, peplus_duart_w)
1105 
1106   // Superboard Data
1107   AM_RANGE(0xf000, 0xffff) AM_READWRITE(peplus_sf000_r, peplus_sf000_w) AM_SHARE("sf000_ram")
1108 
1109   /* Ports start here */
1110   AM_RANGE(MCS51_PORT_P0, MCS51_PORT_P3) AM_READ(peplus_io_r) AM_WRITE(peplus_io_w) AM_SHARE("io_port")
1111ADDRESS_MAP_END
1112 
1113 
1114/*************************
1115*      Input ports       *
1116*************************/
1117 
1118CUSTOM_INPUT_MEMBER(peplus_state::peplus_input_r)
1119{
1120   UINT8 inp_ret = 0x00;
1121   UINT8 inp_read = ioport((const char *)param)->read();
1122 
1123   if (inp_read & 0x01) inp_ret = 0x01;
1124   if (inp_read & 0x02) inp_ret = 0x02;
1125   if (inp_read & 0x04) inp_ret = 0x03;
1126   if (inp_read & 0x08) inp_ret = 0x04;
1127   if (inp_read & 0x10) inp_ret = 0x05;
1128   if (inp_read & 0x20) inp_ret = 0x06;
1129   if (inp_read & 0x40) inp_ret = 0x07;
1130 
1131   return inp_ret;
1132}
1133 
1134static INPUT_PORTS_START( peplus )
1135   /* IN0 has to be defined for each kind of game */
1136   PORT_START("DOOR")
1137   PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("Upper Door") PORT_CODE(KEYCODE_O) PORT_TOGGLE
1138   PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("Lower Door") PORT_CODE(KEYCODE_I)
1139 
1140   PORT_START("SENSOR")
1141   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_COIN1 ) PORT_NAME("Coin In") PORT_IMPULSE(1)
1142 
1143   PORT_START("DBV")
1144   PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_NAME("Bill In") PORT_IMPULSE(1)
1145 
1146   PORT_START("BC")
1147   PORT_CONFNAME( 0x1f, 0x00, "Bill Choices" )
1148   PORT_CONFSETTING( 0x00, "$1" )
1149   PORT_CONFSETTING( 0x01, "$2" )
1150   PORT_CONFSETTING( 0x02, "$5" )
1151   PORT_CONFSETTING( 0x03, "$10" )
1152   PORT_CONFSETTING( 0x04, "$20" )
1153   PORT_CONFSETTING( 0x05, "$50" )
1154   PORT_CONFSETTING( 0x06, "$100" )
1155 
1156   PORT_START("BP")
1157   PORT_CONFNAME( 0x1f, 0x00, "Bill Protocol" )
1158   PORT_CONFSETTING( 0x00, "ID-022" )
1159   PORT_CONFSETTING( 0x01, "ID-023" )
1160 
1161   PORT_START("SW1")
1162   PORT_DIPNAME( 0x01, 0x01, "Line Frequency" ) PORT_DIPLOCATION("SW1:1")
1163   PORT_DIPSETTING(    0x01, "60Hz" )
1164   PORT_DIPSETTING(    0x00, "50Hz" )
1165   PORT_DIPUNUSED_DIPLOC( 0x02, IP_ACTIVE_LOW, "SW1:2" )
1166   PORT_DIPUNUSED_DIPLOC( 0x04, IP_ACTIVE_LOW, "SW1:3" )
1167   PORT_DIPUNUSED_DIPLOC( 0x08, IP_ACTIVE_LOW, "SW1:4" )
1168   PORT_DIPUNUSED_DIPLOC( 0x10, IP_ACTIVE_LOW, "SW1:5" )
1169   PORT_DIPUNUSED_DIPLOC( 0x20, IP_ACTIVE_LOW, "SW1:6" )
1170   PORT_DIPUNUSED_DIPLOC( 0x40, IP_ACTIVE_LOW, "SW1:7" )
1171   PORT_DIPUNUSED_DIPLOC( 0x80, IP_ACTIVE_LOW, "SW1:8" )
1172INPUT_PORTS_END
1173 
1174static INPUT_PORTS_START( peplus_schip )
1175   PORT_INCLUDE(peplus)
1176   PORT_START("IN_BANK1")
1177   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1178   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1179   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1180   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1181   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1182   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1183   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1184 
1185   PORT_START("IN_BANK2")
1186   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON9 ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1187   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1188   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1189   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1190   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1191   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1192   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1193 
1194   PORT_START("IN0")
1195   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1196   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1197   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1198   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1199INPUT_PORTS_END
1200 
1201static INPUT_PORTS_START( nonplus_poker )
1202   PORT_INCLUDE(peplus)
1203 
1204   PORT_START("IN_BANK1")
1205   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1206   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1207   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_POKER_HOLD1 )
1208   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_POKER_HOLD2 )
1209   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_POKER_HOLD3 )
1210   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_POKER_HOLD4 )
1211   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_POKER_HOLD5 )
1212 
1213   PORT_START("IN_BANK2")
1214   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1215   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1216   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1217   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1218   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1219   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1220   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_OTHER ) // Bill Acceptor
1221 
1222   PORT_START("IN0")
1223   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1224   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1225   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1226   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1227 
1228   PORT_MODIFY("SW1")
1229   PORT_DIPNAME( 0x02, 0x02, "Credit" )        PORT_DIPLOCATION("SW1:2")
1230   PORT_DIPSETTING(    0x02, "Coin Play" )
1231   PORT_DIPSETTING(    0x00, "Credit Play" )
1232   PORT_DIPNAME( 0x04, 0x00, "Coin Acceptor" ) PORT_DIPLOCATION("SW1:3")
1233   PORT_DIPSETTING(    0x04, "Mechanical" )
1234   PORT_DIPSETTING(    0x00, "Optical" )
1235   PORT_DIPNAME( 0x08, 0x08, "Double Up" )     PORT_DIPLOCATION("SW1:4")
1236   PORT_DIPSETTING(    0x08, DEF_STR( Off ) )
1237   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1238   PORT_DIPNAME( 0x10, 0x10, "Progressive" )   PORT_DIPLOCATION("SW1:5")
1239   PORT_DIPSETTING(    0x10, DEF_STR( Off ) )
1240   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1241   PORT_DIPNAME( 0x60, 0x40, "Max Hopper Pay" )    PORT_DIPLOCATION("SW1:6,7")
1242   PORT_DIPSETTING(    0x60, "300 Coins" )
1243   PORT_DIPSETTING(    0x40, "400 Coins" )
1244   PORT_DIPSETTING(    0x20, "600 Coins" )
1245   PORT_DIPSETTING(    0x00, "1000 Coins" )
1246   PORT_DIPNAME( 0x80, 0x00, "Show Pay Table" )    PORT_DIPLOCATION("SW1:8")
1247   PORT_DIPSETTING(    0x80, DEF_STR( Off ) )
1248   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1249INPUT_PORTS_END
1250 
1251static INPUT_PORTS_START( peplus_poker )
1252   PORT_INCLUDE(peplus)
1253 
1254   PORT_START("IN_BANK1")
1255   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1256   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1257   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_POKER_HOLD1 )
1258   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_POKER_HOLD2 )
1259   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_POKER_HOLD3 )
1260   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_POKER_HOLD4 )
1261   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_POKER_HOLD5 )
1262 
1263   PORT_START("IN_BANK2")
1264   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1265   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1266   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1267   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1268   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1269   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1270   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_OTHER ) // Bill Acceptor
1271 
1272   PORT_START("IN0")
1273   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1274   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1275   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1276   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1277INPUT_PORTS_END
1278 
1279static INPUT_PORTS_START( peplus_bjack )
1280   PORT_INCLUDE(peplus)
1281 
1282   PORT_START("IN_BANK1")
1283   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1284   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1285   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_BUTTON3 ) PORT_NAME("Surrender") PORT_CODE(KEYCODE_Z)
1286   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON4 ) PORT_NAME("Stand") PORT_CODE(KEYCODE_X)
1287   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON5 ) PORT_NAME("Insurance") PORT_CODE(KEYCODE_C)
1288   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON6 ) PORT_NAME("Double Down") PORT_CODE(KEYCODE_V)
1289   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON7 ) PORT_NAME("Split") PORT_CODE(KEYCODE_B)
1290 
1291   PORT_START("IN_BANK2")
1292   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON9 ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1293   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON10 ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1294   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1295   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON12 ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1296   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON13 ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1297   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON14 ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1298   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON15 ) // Bill Acceptor
1299 
1300   PORT_START("IN0")
1301   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1302   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1303   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1304   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1305INPUT_PORTS_END
1306 
1307static INPUT_PORTS_START( peplus_keno )
1308   PORT_INCLUDE(peplus)
1309 
1310   PORT_START("IN_BANK1")
1311   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1312   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1313   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1314   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1315   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1316   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1317   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON7 ) PORT_NAME("Erase") PORT_CODE(KEYCODE_B)
1318 
1319   PORT_START("IN_BANK2")
1320   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON9 ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1321   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON10 ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1322   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1323   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON12 ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1324   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON13 ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1325   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON14 ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1326   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON15 ) // Bill Acceptor
1327 
1328   PORT_START("TOUCH_X")
1329   PORT_BIT( 0xffff, 0x200, IPT_LIGHTGUN_X ) PORT_MINMAX(0x00, 1024) PORT_CROSSHAIR(X, 1.0, 0.0, 0) PORT_SENSITIVITY(25) PORT_KEYDELTA(13)
1330   PORT_START("TOUCH_Y")
1331   PORT_BIT( 0xffff, 0x200, IPT_LIGHTGUN_Y ) PORT_MINMAX(0x00, 1024) PORT_CROSSHAIR(Y, 1.0, 0.0, 0) PORT_SENSITIVITY(25) PORT_KEYDELTA(13)
1332 
1333   PORT_START("IN0")
1334   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1335   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON4 ) PORT_NAME("Light Pen") PORT_CODE(KEYCODE_A)
1336   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1337   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1338INPUT_PORTS_END
1339 
1340static INPUT_PORTS_START( peplus_slots )
1341   PORT_INCLUDE(peplus)
1342 
1343   PORT_START("IN_BANK1")
1344   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1345   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1346   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1347   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1348   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1349   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1350   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1351 
1352   PORT_START("IN_BANK2")
1353   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON9 ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1354   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON10 ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1355   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1356   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON12 ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1357   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON13 ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1358   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON14 ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1359   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON15 ) // Bill Acceptor
1360 
1361   PORT_START("IN0")
1362   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1363   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1364   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1365   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1366INPUT_PORTS_END
1367 
1368 
1369/*************************
1370*     Machine Reset      *
1371*************************/
1372 
1373void peplus_state::machine_reset()
1374{
1375}
1376 
1377/*************************
1378*     Machine Driver     *
1379*************************/
1380 
1381static MACHINE_CONFIG_START( peplus, peplus_state )
1382   // basic machine hardware
1383   MCFG_CPU_ADD("maincpu", I80C32, CPU_CLOCK)
1384   MCFG_CPU_PROGRAM_MAP(peplus_map)
1385   MCFG_CPU_IO_MAP(peplus_iomap)
1386 
1387   MCFG_NVRAM_ADD_0FILL("cmos")
1388 
1389   // video hardware
1390   MCFG_SCREEN_ADD("screen", RASTER)
1391   MCFG_SCREEN_REFRESH_RATE(60)
1392   MCFG_SCREEN_SIZE((52+1)*8, (31+1)*8)
1393   MCFG_SCREEN_VISIBLE_AREA(0*8, 40*8-1, 0*8, 25*8-1)
1394   MCFG_SCREEN_UPDATE_DRIVER(peplus_state, screen_update_peplus)
1395   MCFG_SCREEN_PALETTE("palette")
1396 
1397   MCFG_GFXDECODE_ADD("gfxdecode", "palette", peplus)
1398   MCFG_PALETTE_ADD("palette", 16*16*2)
1399   MCFG_PALETTE_INIT_OWNER(peplus_state, peplus)
1400 
1401   MCFG_MC6845_ADD("crtc", R6545_1, "screen", MC6845_CLOCK)
1402   MCFG_MC6845_SHOW_BORDER_AREA(false)
1403   MCFG_MC6845_CHAR_WIDTH(8)
1404   MCFG_MC6845_ADDR_CHANGED_CB(peplus_state, crtc_addr)
1405   MCFG_MC6845_OUT_VSYNC_CB(WRITELINE(peplus_state, crtc_vsync))
1406 
1407   MCFG_X2404P_ADD("i2cmem")
1408 
1409   // sound hardware
1410   MCFG_SPEAKER_STANDARD_MONO("mono")
1411 
1412   MCFG_SOUND_ADD("aysnd", AY8912, SOUND_CLOCK)
1413   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.75)
1414MACHINE_CONFIG_END
1415 
1416 
1417 
1418/*************************
1419*      Driver Init       *
1420*************************/
1421 
1422/* Non Plus board */
1423DRIVER_INIT_MEMBER(peplus_state,nonplus)
1424{
1425   door_wait = 500;
1426   m_doorcycle = FALSE;
1427   m_wingboard = FALSE;
1428   m_jumper_e16_e17 = FALSE;
1429}
1430 
1431/* Normal board */
1432DRIVER_INIT_MEMBER(peplus_state,peplus)
1433{
1434   door_wait = 500;
1435   m_doorcycle = TRUE;
1436   m_wingboard = FALSE;
1437   m_jumper_e16_e17 = FALSE;
1438}
1439 
1440/* Superboard */
1441DRIVER_INIT_MEMBER(peplus_state,peplussb)
1442{
1443   door_wait = 500;
1444   m_doorcycle = TRUE;
1445   m_wingboard = FALSE;
1446   m_jumper_e16_e17 = FALSE;
1447   peplus_load_superdata("user1");
1448}
1449 
1450/* Superboard with Attached Wingboard */
1451DRIVER_INIT_MEMBER(peplus_state,peplussbw)
1452{
1453   door_wait = 12345;
1454   m_doorcycle = TRUE;
1455   m_wingboard = TRUE;
1456   m_jumper_e16_e17 = TRUE;
1457   peplus_load_superdata("user1");
1458}
1459 
1460 
1461/*************************
1462*        Rom Load        *
1463*************************/
1464 
1465ROM_START( peset001 ) /* Normal board : Set Chip (Set001) - Use for PP0542 */
1466   ROM_REGION( 0x10000, "maincpu", 0 )
1467   ROM_LOAD( "set001.u68",   0x00000, 0x10000, CRC(03397ced) SHA1(89d8ba7e6706e6d34ae9aae09a8a631fff06a36f) )
1468 
1469   ROM_REGION( 0x020000, "gfx1", 0 )
1470   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1471   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1472   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1473   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1474 
1475   ROM_REGION( 0x100, "proms", 0 )
1476   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1477ROM_END
1478 
1479ROM_START( peset038 ) /* Normal board : Set Chip (Set038) */
1480   ROM_REGION( 0x10000, "maincpu", 0 )
1481   ROM_LOAD( "set038.u68",   0x00000, 0x10000, CRC(9c4b1d1a) SHA1(8a65cd1d8e2d74c7b66f4dfc73e7afca8458e979) )
1482 
1483   ROM_REGION( 0x020000, "gfx1", 0 )
1484   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1485   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1486   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1487   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1488 
1489   ROM_REGION( 0x100, "proms", 0 )
1490   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1491ROM_END
1492 
1493ROM_START( pepk1024 ) /* Normal (non-plus) board : Aces and Faces 4 of a Kind Bonus Poker (PK1024) */
1494/*
1495                                      2-10 J-A
1496PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  SF  RF  (Bonus)
1497--------------------------------------------------------------
1498  ????      1    2    3    4    5   8  25  50  50 250    800
1499     Programs Available: PK1024
1500*/
1501   ROM_REGION( 0x10000, "maincpu", 0 )
1502   ROM_LOAD( "pk1024-pc095.u58",   0x00000, 0x8000, CRC(c0b6d093) SHA1(80f7dbd9dff52cd4e31a5243026814aa9edb98df) ) /* Game Version: PC095 */
1503   ROM_RELOAD(                     0x08000, 0x8000) /* 32K version build for the original PE boards (non-plus) */
1504 
1505   ROM_REGION( 0x020000, "gfx1", 0 )
1506   ROM_LOAD( "mr0-cg745.u52",   0x00000, 0x4000, CRC(f8aee592) SHA1(fc5fb03698df24ebcf41ccfbce3a8fdd03ac9368) )
1507   ROM_LOAD( "mg0-cg745.u53",   0x08000, 0x4000, CRC(cdf88a59) SHA1(9ab32b7b8bbdf35ee5a45cd58d9a341555b03ee0) )
1508   ROM_LOAD( "mb0-cg745.u54",   0x10000, 0x4000, CRC(3fad0bc0) SHA1(3c8409c004bb40d7be6e5cbdd02b3fa3b5800342) )
1509   ROM_LOAD( "mx0-cg745.u55",   0x18000, 0x4000, CRC(a8cf2a59) SHA1(de623a95237f28827710a86ae86c52106b55b349) )
1510 
1511   ROM_REGION( 0x100, "proms", 0 )
1512   ROM_LOAD( "cap740.u37", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1513ROM_END
1514 
1515ROM_START( pepp0002 ) /* Normal board : Standard Draw Poker (PP0002) */
1516/*
1517PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1518----------------------------------------------------------
1519   BB       1    2    3    4    5   8  25  50 250   1000
1520  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
1521     Programs Available: PP0002, X000002P
1522*/
1523   ROM_REGION( 0x10000, "maincpu", 0 )
1524   ROM_LOAD( "pp0002_a45-a74.u68",   0x00000, 0x10000, CRC(921ce116) SHA1(a3b83b6fcfa27cca7e392efc62568eb6495c136a) ) /* Game Version: A45, Library Version: A74 */
1525 
1526   ROM_REGION( 0x020000, "gfx1", 0 )
1527   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1528   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1529   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1530   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1531 
1532   ROM_REGION( 0x100, "proms", 0 )
1533   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1534ROM_END
1535 
1536ROM_START( pepp0002a ) /* Normal board : Standard Draw Poker (PP0002) - Multi Regional / Multi Currency - Tournament Mode capable */
1537/*
1538PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1539----------------------------------------------------------
1540   BB       1    2    3    4    5   8  25  50 250   1000
1541  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
1542     Programs Available: PP0002, X000002P
1543*/
1544   ROM_REGION( 0x10000, "maincpu", 0 )
1545   ROM_LOAD( "pp0002_a58-a6y.u68",   0x00000, 0x10000, CRC(65ed2956) SHA1(5ee9be5daee80fe1aa716fdb488f154e875d394d) ) /* Game Version: A58, Library Version: A6Y */
1546 
1547   ROM_REGION( 0x020000, "gfx1", 0 )
1548   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
1549   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
1550   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
1551   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
1552 
1553   ROM_REGION( 0x100, "proms", 0 )
1554   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1555ROM_END
1556 
1557ROM_START( pepp0008 ) /* Normal board : Standard Draw Poker (PP0008) */
1558/*
1559PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1560----------------------------------------------------------
1561   CD       1    2    3    4    6   9  25  50 250    940
1562  % Range: 95.9-97.9%  Optimum: 99.9%  Hit Frequency: 45.3%
1563     Programs Available: PP0008, X002247P
1564*/
1565   ROM_REGION( 0x10000, "maincpu", 0 )
1566   ROM_LOAD( "pp0008_520-516.u68",   0x00000, 0x8000, CRC(7a02060f) SHA1(8672565bd62fa76aa738c1f8c6aeb0c0d22daf93) ) /* Game Version: 520, Library Version: 516 */
1567   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1568 
1569   ROM_REGION( 0x020000, "gfx1", 0 )
1570   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1571   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1572   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1573   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1574 
1575   ROM_REGION( 0x100, "proms", 0 )
1576   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1577ROM_END
1578 
1579ROM_START( pepp0009 ) /* Normal board : Standard Draw Poker (PP0009) */
1580/*
1581PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1582----------------------------------------------------------
1583   GA       1    2    3    4    5   6  25  50 250    800
1584  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
1585     Programs Available: PP0009
1586 
1587This program set is superseded by PP0060
1588*/
1589   ROM_REGION( 0x10000, "maincpu", 0 )
1590   ROM_LOAD( "pp0009_554-544.u68",   0x00000, 0x8000, CRC(2e3e45f7) SHA1(035994b20d3975bb2287f12b4a42d5fdae68b13b) ) /* Game Version: 554, Library Version: 544 */
1591   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1592 
1593   ROM_REGION( 0x020000, "gfx1", 0 )
1594   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1595   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1596   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1597   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1598 
1599   ROM_REGION( 0x100, "proms", 0 )
1600   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1601ROM_END
1602 
1603ROM_START( pepp0010 ) /* Normal board : Standard Draw Poker (PP0010) */
1604/*
1605PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1606----------------------------------------------------------
1607   GB       1    2    3    4    5   6  25  50 250   1000
1608  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 45.3%
1609     Programs Available: PP0010
1610*/
1611   ROM_REGION( 0x10000, "maincpu", 0 )
1612   ROM_LOAD( "pp0010_a45-a74.u68",   0x00000, 0x10000, CRC(39440afb) SHA1(b2ca246d6854008cf5b7081e9842be6f6f0666b0) ) /* Game Version: A45, Library Version: A74 */
1613 
1614   ROM_REGION( 0x020000, "gfx1", 0 )
1615   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1616   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1617   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1618   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1619 
1620   ROM_REGION( 0x100, "proms", 0 )
1621   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1622ROM_END
1623 
1624ROM_START( pepp0014 ) /* Normal board : Standard Draw Poker (PP0014) - Multi Regional / Multi Currency - Tournament Mode capable */
1625/*
1626PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1627----------------------------------------------------------
1628   QJ       1    2    3    4    5   8  25  50 300    400
1629  % Range: 92.3-94.3%  Optimum: 96.3%  Hit Frequency: 45.6%
1630     Programs Available: PP0014
1631*/
1632   ROM_REGION( 0x10000, "maincpu", 0 )
1633   ROM_LOAD( "pp0014_a2d-a48.u68",   0x00000, 0x10000, CRC(235ddd99) SHA1(c8623a6beeb31ce33a44e1cb6a235e6561f0b3de) ) /* Game Version: A2D, Library Version: A48 */
1634 
1635   ROM_REGION( 0x020000, "gfx1", 0 )
1636   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
1637   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
1638   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
1639   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
1640 
1641   ROM_REGION( 0x100, "proms", 0 )
1642   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1643ROM_END
1644 
1645ROM_START( pepp0014a ) /* Normal board : Standard Draw Poker (PP0014) - 100 Coins In */
1646/*
1647PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1648----------------------------------------------------------
1649   QJ       1    2    3    4    5   8  25  50 300    400
1650  % Range: 92.3-94.3%  Optimum: 96.3%  Hit Frequency: 45.6%
1651     Programs Available: PP0014
1652*/
1653   ROM_REGION( 0x10000, "maincpu", 0 )
1654   ROM_LOAD( "pp0014_654-523.u68",   0x00000, 0x8000, CRC(1cf42d0e) SHA1(a5564a6ff31a24e6052c95eaacce65c61dd1600d) ) /* Game Version: 665, Library Version: 523, Video Lib Ver: 523 */
1655   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1656 
1657   ROM_REGION( 0x020000, "gfx1", 0 )
1658   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) /* Not 100% correct?? */
1659   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1660   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1661   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1662 
1663   ROM_REGION( 0x100, "proms", 0 )
1664   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1665ROM_END
1666 
1667ROM_START( pepp0023 ) /* Normal board : Tens or Better (PP0023) */
1668/*
1669PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1670----------------------------------------------------------
1671  ????     1     2    3    4    5   6  25  50 250    800
1672  % Range: 93.3-95.3%  Optimum: 97.3%  Hit Frequency: 45.4%
1673     Programs Available: PP0023
1674*/
1675   ROM_REGION( 0x10000, "maincpu", 0 )
1676   ROM_LOAD( "pp0023_520-516.u68",   0x00000, 0x8000, CRC(883ff93e) SHA1(e355933ee6a316b5672e5a887e09c691ab242873) ) /* Game Version: 520, Library Version: 516, Video Lib Ver: 516 */
1677   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1678 
1679   ROM_REGION( 0x020000, "gfx1", 0 )
1680   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1681   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1682   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1683   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1684 
1685   ROM_REGION( 0x100, "proms", 0 )
1686   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1687ROM_END
1688 
1689ROM_START( pepp0040 ) /* Normal board : Standard Draw Poker (PP0040) */
1690/*
1691PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1692----------------------------------------------------------
1693   WA       1    2    3    4    5   7  20  50 300    800
1694  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
1695     Programs Available: PP0040, X000040P
1696*/
1697   ROM_REGION( 0x10000, "maincpu", 0 )
1698   ROM_LOAD( "pp0040_a45-a74.u68",   0x00000, 0x10000, CRC(df3675b3) SHA1(668f33c97fa1c0b69a8601da02bd07e3c5df81b4) ) /* Game Version: A45, Library Version: A74 */
1699 
1700   ROM_REGION( 0x020000, "gfx1", 0 )
1701   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1702   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1703   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1704   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1705 
1706   ROM_REGION( 0x100, "proms", 0 )
1707   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1708ROM_END
1709 
1710ROM_START( pepp0041 ) /* Normal board : Standard Draw Poker (PP0041) */
1711/*
1712PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1713----------------------------------------------------------
1714   WB       1    2    3    4    5   7  20  50 300   1000
1715  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 45.3%
1716     Programs Available: PP0041
1717*/
1718   ROM_REGION( 0x10000, "maincpu", 0 )
1719   ROM_LOAD( "pp0041_a45-a74.u68",   0x00000, 0x10000, CRC(406c8193) SHA1(006b9bf57263fb84ed752f0a44603837a68a2d71) ) /* Game Version: A45, Library Version: A74 */
1720 
1721   ROM_REGION( 0x020000, "gfx1", 0 )
1722   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1723   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1724   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1725   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1726 
1727   ROM_REGION( 0x100, "proms", 0 )
1728   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1729ROM_END
1730 
1731ROM_START( pepp0043 ) /* Normal board : 10's or Better (PP0043) */
1732/*
1733PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1734----------------------------------------------------------
1735  P7B      1     1    3    4    6   9  25  50 300    800
1736  % Range: 87.2-89.2%  Optimum: 91.2%  Hit Frequency: 49.1%
1737     Programs Available: PP0043, X000043P
1738*/
1739   ROM_REGION( 0x10000, "maincpu", 0 )
1740   ROM_LOAD( "pp0043_a45-a74.u68",   0x00000, 0x10000, CRC(04051a88) SHA1(e7a9ec2ab7f6f575245d47ee10a03f39c887d1b3) ) /* Game Version: A45, Library Version: A74 */
1741 
1742   ROM_REGION( 0x020000, "gfx1", 0 )
1743   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1744   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1745   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1746   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1747 
1748   ROM_REGION( 0x100, "proms", 0 )
1749   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1750ROM_END
1751 
1752ROM_START( pepp0043a ) /* Normal board : 10's or Better (PP0043) - Multi Regional / Multi Currency - Tournament Mode capable */
1753/*
1754PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1755----------------------------------------------------------
1756  P7B      1     1    3    4    6   9  25  50 300    800
1757  % Range: 87.2-89.2%  Optimum: 91.2%  Hit Frequency: 49.1%
1758     Programs Available: PP0043, X000043P
1759*/
1760   ROM_REGION( 0x10000, "maincpu", 0 )
1761   ROM_LOAD( "pp0043_a43-a71.u68",   0x00000, 0x10000, CRC(7da397d7) SHA1(9b6479693f4d1224fce5635c3e7cff6463103e1e) ) /* Game Version: A43, Library Version: A71 */
1762 
1763   ROM_REGION( 0x020000, "gfx1", 0 )
1764   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
1765   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
1766   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
1767   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
1768 
1769   ROM_REGION( 0x100, "proms", 0 )
1770   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1771ROM_END
1772 
1773ROM_START( pepp0045 ) /* Normal board : 10's or Better (PP0045) */
1774/*
1775PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1776----------------------------------------------------------
1777  P8A      1     1    3    4    5   8  25  50 300    800
1778  % Range: 84.6-86.6%  Optimum: 88.6%  Hit Frequency: 49.2%
1779     Programs Available: PP0045, X000045P
1780*/
1781   ROM_REGION( 0x10000, "maincpu", 0 )
1782   ROM_LOAD( "pp0045_a45-a74.u68",   0x00000, 0x10000, CRC(9c7cf6d7) SHA1(3da9829678b853d85146b66b40800257a8eaa151) ) /* Game Version: A45, Library Version: A74 */
1783 
1784   ROM_REGION( 0x020000, "gfx1", 0 )
1785   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1786   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1787   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1788   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1789 
1790   ROM_REGION( 0x100, "proms", 0 )
1791   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1792ROM_END
1793 
1794ROM_START( pepp0046 ) /* Normal board : 10's or Better (PP0046) */
1795/*
1796PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1797----------------------------------------------------------
1798  P8B      1     1    3    4    5   8  25  50 300   1000
1799  % Range: 85.2-87.2%  Optimum: 89.2%  Hit Frequency: 49.0%
1800     Programs Available: PP0046, X000046P
1801*/
1802   ROM_REGION( 0x10000, "maincpu", 0 )
1803   ROM_LOAD( "pp0046_a45-a74.u68",   0x00000, 0x10000, CRC(fe5903f2) SHA1(963d1ade6051da19bb40b313221037c0fdfc0fc9) ) /* Game Version: A45, Library Version: A74 */
1804 
1805   ROM_REGION( 0x020000, "gfx1", 0 )
1806   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1807   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1808   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1809   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1810 
1811   ROM_REGION( 0x100, "proms", 0 )
1812   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1813ROM_END
1814 
1815ROM_START( pepp0046a ) /* Normal board : 10's or Better (PP0046) - Multi Regional / Multi Currency - Tournament Mode capable */
1816/*
1817PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1818----------------------------------------------------------
1819  P8B      1     1    3    4    5   8  25  50 300   1000
1820  % Range: 85.2-87.2%  Optimum: 89.2%  Hit Frequency: 49.0%
1821     Programs Available: PP0046, X000046P
1822*/
1823   ROM_REGION( 0x10000, "maincpu", 0 )
1824   ROM_LOAD( "pp0046_a58-a6y.u68",   0x00000, 0x10000, CRC(ea9094bf) SHA1(6154864b0ea0c8bc75085064ea71f8cb0ff312af) ) /* Game Version: A58, Library Version: A6Y */
1825 
1826   ROM_REGION( 0x020000, "gfx1", 0 )
1827   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
1828   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
1829   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
1830   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
1831 
1832   ROM_REGION( 0x100, "proms", 0 )
1833   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1834ROM_END
1835 
1836ROM_START( pepp0046b ) /* Normal board : 10's or Better (PP0043) */
1837/*
1838PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1839----------------------------------------------------------
1840  P8B      1     1    3    4    5   8  25  50 300   1000
1841  % Range: 85.2-87.2%  Optimum: 89.2%  Hit Frequency: 49.0%
1842     Programs Available: PP0046, X000046P
1843*/
1844   ROM_REGION( 0x10000, "maincpu", 0 )
1845   ROM_LOAD( "pp0046_554-544.u68",   0x00000, 0x8000, CRC(d8687b76) SHA1(9bd0b71b60d26b46af58a8e77f4b05900a4075aa) ) /* Game Version: 554, Library Version: 544, Video Lib Ver: 544 */
1846   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1847 
1848   ROM_REGION( 0x020000, "gfx1", 0 )
1849   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1850   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1851   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1852   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1853 
1854   ROM_REGION( 0x100, "proms", 0 )
1855   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1856ROM_END
1857 
1858ROM_START( pepp0051 ) /* Normal board : Joker Poker (PP0051) */
1859/*
1860                                            w/J     w/oJ
1861PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
1862----------------------------------------------------------------
1863  P17A      1    1   2   3    4   5  20  40 100 200 500    800
1864  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
1865     Programs Available: PP0051
1866 
1867Superseded by PP0428 (Non Double-up) / PP0459
1868 
1869*/
1870   ROM_REGION( 0x10000, "maincpu", 0 )
1871   ROM_LOAD( "pp0051_554-544.u68",   0x00000, 0x8000, CRC(66329607) SHA1(bc980257645225a24cd71a10b4a4cb592f878b3b) ) /* Game Version: 554, Library Version: 544, Video Lib Ver: 544 */
1872   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1873 
1874   ROM_REGION( 0x020000, "gfx1", 0 )
1875   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1876   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1877   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1878   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1879 
1880   ROM_REGION( 0x100, "proms", 0 )
1881   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1882ROM_END
1883 
1884ROM_START( pepp0053 ) /* Normal board : Joker Poker (Aces or Better) (PP0053) */
1885/*
1886                                            w/J     w/oJ
1887PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
1888----------------------------------------------------------------
1889  P18B      1    1   2   3    5   6  20  50 100 200 500   1000
1890  % Range: 90.6-92.6%  Optimum: 94.6%  Hit Frequency: 39.2%
1891     Programs Available: PP0053, X000053P
1892*/
1893   ROM_REGION( 0x10000, "maincpu", 0 )
1894   ROM_LOAD( "pp0053_a45-a74.u68",   0x00000, 0x10000, CRC(0657b8a7) SHA1(4fb9762d84ef0e02dbab9f9da5a1dfdd9be2e86e) ) /* Game Version: A45, Library Version: A74 */
1895 
1896   ROM_REGION( 0x020000, "gfx1", 0 )
1897   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1898   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1899   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1900   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1901 
1902   ROM_REGION( 0x100, "proms", 0 )
1903   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1904ROM_END
1905 
1906ROM_START( pepp0055 ) /* Normal board : Deuces Wild Poker (PP0055) */
1907/*
1908                                        w/D     w/oD
1909PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
1910------------------------------------------------------------
1911  P32A      1    2    2   3   4  10  15  25 200 250    800
1912  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
1913     Programs Available: PP0055, X000055P, PP0723
1914*/
1915   ROM_REGION( 0x10000, "maincpu", 0 )
1916   ROM_LOAD( "pp0055_961-984.u68",   0x00000, 0x10000, CRC(c6b897cc) SHA1(9ba200652db58e602f388c21aaf9b3f837412385) ) /* Game Version: 961, Library Version: 984 */
1917 
1918   ROM_REGION( 0x020000, "gfx1", 0 )
1919   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
1920   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
1921   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
1922   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
1923 
1924   ROM_REGION( 0x100, "proms", 0 )
1925   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
1926ROM_END
1927 
1928ROM_START( pepp0055a ) /* Normal board : Deuces Wild Poker (PP0055) */
1929/*
1930                                        w/D     w/oD
1931PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
1932------------------------------------------------------------
1933  P32A      1    2    2   3   4  10  15  25 200 250    800
1934  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
1935     Programs Available: PP0055, X000055P, PP0723
1936*/
1937   ROM_REGION( 0x10000, "maincpu", 0 ) /*  10/23/95   @IGT  L95-2432  */
1938   ROM_LOAD( "pp0055_a47-a76.u68",   0x00000, 0x10000, CRC(adff06ea) SHA1(098409bd4474a69217e3cd17ee8c650005cc3e17) ) /* Game Version: A47, Library Version: A76 */
1939 
1940   ROM_REGION( 0x020000, "gfx1", 0 )
1941   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
1942   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
1943   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
1944   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
1945 
1946   ROM_REGION( 0x100, "proms", 0 )
1947   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
1948ROM_END
1949 
1950ROM_START( pepp0055b ) /* Normal board : Deuces Wild Poker (PP0055) */
1951/*
1952                                        w/D     w/oD
1953PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
1954------------------------------------------------------------
1955  P32A      1    2    2   3   4  10  15  25 200 250    800
1956  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
1957     Programs Available: PP0055, X000055P, PP0723
1958*/
1959   ROM_REGION( 0x10000, "maincpu", 0 )
1960   ROM_LOAD( "pp0055_600-550.u68",   0x00000, 0x8000, CRC(3c00285e) SHA1(b9028de6962619e438ef927f8223e04dde5c7f87) ) /* Game Version: 600, Library Version: 550, Video Lib Ver: 550 */
1961   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1962 
1963   ROM_REGION( 0x020000, "gfx1", 0 )
1964   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
1965   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
1966   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
1967   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
1968 
1969   ROM_REGION( 0x100, "proms", 0 )
1970   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
1971ROM_END
1972 
1973ROM_START( pepp0057 ) /* Normal board : Deuces Wild Poker (PP0057) */
1974/*
1975                                        w/D     w/oD
1976PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
1977------------------------------------------------------------
1978  P34A      1    2    2   3   5   9  15  25 200 250    800
1979  % Range: 96.8-98.8%  Optimum: 100.8%  Hit Frequency: 45.3%
1980     Programs Available: PP0057
1981*/
1982   ROM_REGION( 0x10000, "maincpu", 0 )
1983   ROM_LOAD( "pp0057_a47-a76.u68",   0x00000, 0x10000, CRC(44ebb68d) SHA1(4864ba62c225a3ecd576d1a82fcbe1e30d65244d) ) /* Game Version: A47, Library Version: A76 */
1984 
1985   ROM_REGION( 0x020000, "gfx1", 0 )
1986   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
1987   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
1988   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
1989   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
1990 
1991   ROM_REGION( 0x100, "proms", 0 )
1992   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
1993ROM_END
1994 
1995ROM_START( pepp0057a ) /* Normal board : Deuces Wild Poker (PP0057) */
1996/*
1997                                        w/D     w/oD
1998PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
1999------------------------------------------------------------
2000  P34A      1    2    2   3   5   9  15  25 200 250    800
2001  % Range: 96.8-98.8%  Optimum: 100.8%  Hit Frequency: 45.3%
2002     Programs Available: PP0057
2003*/
2004   ROM_REGION( 0x10000, "maincpu", 0 )
2005   ROM_LOAD( "pp0057_540-508.u68",   0x00000, 0x8000, CRC(9a8281c2) SHA1(d411294062d7896a7f68a1c4a6295e18787dc7d6) ) /* Game Version: 540, Library Version: 508, Video Lib Ver: 508 */
2006   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2007 
2008   ROM_REGION( 0x020000, "gfx1", 0 )
2009   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
2010   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2011   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2012   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2013 
2014   ROM_REGION( 0x100, "proms", 0 )
2015   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2016ROM_END
2017 
2018ROM_START( pepp0059 ) /* Normal board : Two Pair or Better (PP0059) */
2019/*
2020PayTable  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2021----------------------------------------------------
2022   FA      2    3    5    7  11  50 100 250    800
2023  % Range: 89.5-91.5%  Optimum: 93.5%  Hit Frequency: 38.8%
2024     Programs Available: PP0059, PP0424 - Non Double-up Only
2025*/
2026   ROM_REGION( 0x10000, "maincpu", 0 )
2027   ROM_LOAD( "pp0059_a45-a74.u68",   0x00000, 0x10000, CRC(6ff02f25) SHA1(b4a8476251044d0a7e3f232fa1ef4e31d8ef6775) ) /* Game Version: A45, Library Version: A75 */
2028 
2029   ROM_REGION( 0x020000, "gfx1", 0 )
2030   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2031   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2032   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2033   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2034 
2035   ROM_REGION( 0x100, "proms", 0 )
2036   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2037ROM_END
2038 
2039ROM_START( pepp0059a ) /* Normal board : Two Pair or Better (PP0059) */
2040/*
2041PayTable  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2042----------------------------------------------------
2043   FA      2    3    5    7  11  50 100 250    800
2044  % Range: 89.5-91.5%  Optimum: 93.5%  Hit Frequency: 38.8%
2045     Programs Available: PP0059, PP0424 - Non Double-up Only
2046*/
2047   ROM_REGION( 0x10000, "maincpu", 0 )
2048   ROM_LOAD( "pp0059_518-515.u68",   0x00000, 0x8000, CRC(18315252) SHA1(f6712f9edb487dfd7d4d5b83d6ba8d43c776c9bf) ) /* Game Version: 518, Library Version: 515, Video Lib Ver: 515 */
2049   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2050 
2051   ROM_REGION( 0x020000, "gfx1", 0 )
2052   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2053   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2054   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2055   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2056 
2057   ROM_REGION( 0x100, "proms", 0 )
2058   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2059ROM_END
2060 
2061ROM_START( pepp0060 ) /* Normal board : Standard Draw Poker (PP0060) */
2062/*
2063PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2064----------------------------------------------------------
2065   GA       1    2    3    4    5   6  25  50 250    800
2066  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
2067     Programs Available: PP0060, X000060P & PP0420 - Non Double-up Only
2068*/
2069   ROM_REGION( 0x10000, "maincpu", 0 )
2070   ROM_LOAD( "pp0060_a45-a74.u68",   0x00000, 0x10000, CRC(5d9e6c2f) SHA1(e1199a1fa57d84223ca87ea5b6ce4fda9afa0e1f) ) /* Game Version: A45, Library Version: A74 */
2071 
2072   ROM_REGION( 0x020000, "gfx1", 0 )
2073   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2074   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2075   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2076   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2077 
2078   ROM_REGION( 0x100, "proms", 0 )
2079   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2080ROM_END
2081 
2082ROM_START( pepp0060a ) /* Normal board : Standard Draw Poker (PP0060) */
2083/*
2084PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2085----------------------------------------------------------
2086   GA       1    2    3    4    5   6  25  50 250    800
2087  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
2088     Programs Available: PP0060, X000060P & PP0420 - Non Double-up Only
2089*/
2090   ROM_REGION( 0x10000, "maincpu", 0 )
2091   ROM_LOAD( "pp0060_979-a0c.u68",   0x00000, 0x10000, CRC(adedfcfd) SHA1(f974a9c51d4e53c2c44a4c5214d39557d3a36d99) ) /* Game Version: 979, Library Version: A0C */
2092 
2093   ROM_REGION( 0x020000, "gfx1", 0 )
2094   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2095   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2096   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2097   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2098 
2099   ROM_REGION( 0x100, "proms", 0 )
2100   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2101ROM_END
2102 
2103ROM_START( pepp0063 ) /* Normal board : 10's or Better (PP0063) */
2104/*
2105PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2106----------------------------------------------------------
2107  P8A      1     1    3    4    5   8  25  50 300    800
2108  % Range: 84.6-86.6%  Optimum: 88.6%  Hit Frequency: 49.2%
2109     Programs Available: PP0063
2110*/
2111   ROM_REGION( 0x10000, "maincpu", 0 )
2112   ROM_LOAD( "pp0063_518-515.u68",   0x00000, 0x8000, CRC(b31c7be7) SHA1(3203e76434db1e240f5b9642525eac9ea2726a03) ) /* Game Version: 518, Library Version: 515, Video Lib Ver: 515 */
2113   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2114 
2115   ROM_REGION( 0x020000, "gfx1", 0 )
2116   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2117   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2118   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2119   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2120 
2121   ROM_REGION( 0x100, "proms", 0 )
2122   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2123ROM_END
2124 
2125ROM_START( pepp0064 ) /* Normal board : Joker Poker (PP0064) */
2126/*
2127                                            w/J     w/oJ
2128PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
2129----------------------------------------------------------------
2130  ????      1    1   2   3    4   5  20  40 100 200 500    ???
2131     Programs Available: PP0064
2132 
2133*/
2134   ROM_REGION( 0x10000, "maincpu", 0 )
2135   ROM_LOAD( "pp0064_666-515.u68",   0x00000, 0x8000, CRC(56409362) SHA1(3400734da785edac2af14d8b645f7e3ed04f96a0) ) /* Game Version: 666, Library Version: 515, Video Lib Ver: 515 */
2136   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2137 
2138   ROM_REGION( 0x020000, "gfx1", 0 )
2139   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2140   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2141   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2142   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2143 
2144   ROM_REGION( 0x100, "proms", 0 )
2145   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2146ROM_END
2147 
2148ROM_START( pepp0065 ) /* Normal board : Joker Poker (Aces or Better) (PP0065) */
2149/*
2150                                            w/J     w/oJ
2151PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
2152----------------------------------------------------------------
2153  P18A      1    1   2   3    5   6  20  50 100 200 500    800
2154  % Range: 89.8-91.8%  Optimum: 93.8%  Hit Frequency: 37.6%
2155     Programs Available: PP0065
2156 
2157Superseded by PP0429 (Non Double-up) / PP0458
2158 
2159*/
2160   ROM_REGION( 0x10000, "maincpu", 0 )
2161   ROM_LOAD( "pp0065_944-a00.u68",   0x00000, 0x10000, CRC(76c1a367) SHA1(ea8be9241e9925b5a4206db6875e1572f85fa5fe) ) /* Game Version: 944, Library Version: A00 */
2162 
2163   ROM_REGION( 0x020000, "gfx1", 0 )
2164   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2165   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2166   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2167   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2168 
2169   ROM_REGION( 0x100, "proms", 0 )
2170   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2171ROM_END
2172 
2173ROM_START( pepp0083 ) /* Normal board : Tens or Better (PP0083) */
2174/*
2175PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2176----------------------------------------------------------
2177  P39D     1     1    3    5    7  11  50 100 300    940
2178  % Range: 90.6-92.6%  Optimum: 94.6%  Hit Frequency: 48.6%
2179     Programs Available: PP0083
2180*/
2181   ROM_REGION( 0x10000, "maincpu", 0 )
2182   ROM_LOAD( "pp0083_554-544.u68",   0x00000, 0x8000, CRC(d415a1dd) SHA1(5a7fef13a6cde7dad5957d8ea3f15d3ac92634cf) ) /* Game Version: 554, Library Version: 544, Video Lib Ver: 544 */
2183   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2184 
2185   ROM_REGION( 0x020000, "gfx1", 0 )
2186   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2187   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2188   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2189   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2190 
2191   ROM_REGION( 0x100, "proms", 0 )
2192   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2193ROM_END
2194 
2195ROM_START( pepp0103 ) /* Normal board : Deuces Wild Poker 1-100 Coin (PP0103) */
2196/*
2197                                        w/D     w/oD
2198PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2199------------------------------------------------------------
2200  P47A      1    2    2   3   4  13  16  25 200 250    800
2201  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.9%
2202     Programs Available: PP0103
2203 
2204This set erroneously swapped the intended payout of 5K & RF-with Deuce,
2205  with this set the 5K pays 25 while the RF-with Deuce pays 16
2206 
2207Superseded by PP0224 (Non Double-up) / PP0290
2208 
2209*/
2210   ROM_REGION( 0x10000, "maincpu", 0 )
2211   ROM_LOAD( "pp0103_600-550.u68",   0x00000, 0x8000, CRC(1a9cc3ee) SHA1(55ee93cbfc90f517368a13fb71f5e50d575d703e) ) /* Game Version: 600, Library Version: 550, Video Lib Ver: 550 */
2212   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2213 
2214   ROM_REGION( 0x020000, "gfx1", 0 )
2215   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
2216   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2217   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2218   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2219 
2220   ROM_REGION( 0x100, "proms", 0 )
2221   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2222ROM_END
2223 
2224ROM_START( pepp0116 ) /* Normal board : Standard Draw Poker (PP0116) */
2225/*
2226PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2227----------------------------------------------------------
2228   BA       1    2    3    4    5   8  25  50 250    800
2229  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
2230     Programs Available: PP0116
2231*/
2232 
2233   ROM_REGION( 0x10000, "maincpu", 0 )
2234   ROM_LOAD( "pp0116_554-544.u68",   0x00000, 0x8000, CRC(27aba06b) SHA1(7976a2b2577c28e332091cbbcb4c7d53ffbea827) ) /* Game Version: 554, Library Version: 544, Video Lib Ver: 544 */
2235   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
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( 0x100, "proms", 0 )
2244   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2245ROM_END
2246 
2247ROM_START( pepp0118 ) /* Normal board : Standard Draw Poker (PP0118) */
2248/*
2249PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
2250---------------------------------------------------------
2251  CA        1    2    3   4    6   9  25  50 250    800
2252  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 45.5%
2253     Programs Available: PP0118
2254*/
2255 
2256   ROM_REGION( 0x10000, "maincpu", 0 )
2257   ROM_LOAD( "pp0118_554-544.u68",   0x00000, 0x8000, CRC(4025cb30) SHA1(742bfba5dbd8a3e38665045f84fd90e19e94d1f5) ) /* Game Version: 554, Library Version: 544, Video Lib Ver: 544 */
2258   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2259 
2260   ROM_REGION( 0x020000, "gfx1", 0 )
2261   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2262   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2263   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2264   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2265 
2266   ROM_REGION( 0x100, "proms", 0 )
2267   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2268ROM_END
2269 
2270ROM_START( pepp0120 ) /* Normal board : Wild Sevens Poker (PP0120) */
2271/*
2272                                        w/7 Four w/o7
2273PayTable   3K   STR  FL  FH  4K  SF  5K  RF  7s   RF  (Bonus)
2274-------------------------------------------------------------
2275  ????      1    2    3   4   4   9  12  20 200  250    800
2276  % Range: 93.1-95.1%  Optimum: 97.1%  Hit Frequency: 44.1%
2277     Programs Available: PP0120
2278 
2279Same payout as P59A (PP0124 / X000124P, Deuces Wild Poker) just swapping Sevens for Deuces
2280 
2281*/
2282 
2283   ROM_REGION( 0x10000, "maincpu", 0 )
2284   ROM_LOAD( "pp0120_576-569.u68",   0x00000, 0x8000, CRC(4491be19) SHA1(cf8146a6ade1abb2e1ac9f0f3923e2be865f2fec) ) /* Game Version: 576, Library Version: 569, Video Lib Ver: 569 */
2285   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2286 
2287   ROM_REGION( 0x020000, "gfx1", 0 )
2288   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
2289   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2290   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2291   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2292 
2293   ROM_REGION( 0x100, "proms", 0 )
2294   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2295ROM_END
2296 
2297ROM_START( pepp0125 ) /* Normal board : Deuces Wild Poker (PP0125) */
2298/*
2299                                        w/D     w/oD
2300PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2301------------------------------------------------------------
2302  P62A      1    2    2   3   5   9  15  25 200 250    800
2303  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 44.4%
2304     Programs Available: PP0125, PP0418, X000291P, PP0291 - Non Double-up Only
2305*/
2306   ROM_REGION( 0x10000, "maincpu", 0 )
2307   ROM_LOAD( "pp0125_600-550.u68",   0x00000, 0x8000, CRC(52a02dd4) SHA1(ae0dc8920a2a0bce2c19eb499af9b30b4552f53c) ) /* Game Version: 600, Library Version: 550, Video Lib Ver: 550 */
2308   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2309 
2310   ROM_REGION( 0x020000, "gfx1", 0 )
2311   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
2312   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2313   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2314   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2315 
2316   ROM_REGION( 0x100, "proms", 0 )
2317   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2318ROM_END
2319 
2320ROM_START( pepp0126 ) /* Normal board : Deuces Wild Poker (PP0126) */
2321/*
2322                                        w/D     w/oD
2323PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2324------------------------------------------------------------
2325  P63A      1    2    2   3   5   9  12  20 200 250    800
2326  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 45.4%
2327     Programs Available: PP0126, X000126P
2328*/
2329   ROM_REGION( 0x10000, "maincpu", 0 )
2330   ROM_LOAD( "pp0126_961-984.u68",   0x00000, 0x10000, CRC(aadb62ef) SHA1(85979d5932ef254241c363414c2093cc943e88a5) ) /* Game Version: 961, Library Version: 984 */
2331 
2332   ROM_REGION( 0x020000, "gfx1", 0 )
2333   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
2334   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
2335   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
2336   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
2337 
2338   ROM_REGION( 0x100, "proms", 0 )
2339   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2340ROM_END
2341 
2342ROM_START( pepp0127 ) /* Normal board : Deuces Joker Wild Poker (PP0127) */
2343/*
2344                                         With  w/o  w/o  With
2345                                         Wild  JKR  Wild JKR
2346PayTable   3K   STR  FL  FH  4K  SF  5K   RF    4D   RF   4D  (Bonus)
2347---------------------------------------------------------------------
2348  P65N      1    2    3   3   3   6   9   12    25  800  1000  2000
2349  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 50.4%
2350     Programs Available: PP0127
2351*/
2352   ROM_REGION( 0x10000, "maincpu", 0 )
2353   ROM_LOAD( "pp0127_a47-a76.u68",   0x00000, 0x10000, CRC(2997aaac) SHA1(b52525154f4ae39a341ecf829c33449f31a8ce07) ) /* Game Version: A47, Library Version: A76 */
2354 
2355   ROM_REGION( 0x020000, "gfx1", 0 )
2356   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
2357   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
2358   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
2359   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
2360 
2361   ROM_REGION( 0x100, "proms", 0 )
2362   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2363ROM_END
2364 
2365ROM_START( pepp0127a ) /* Normal board : Deuces Joker Wild Poker (PP0127) - Multi Regional / Multi Currency - Tournament Mode capable */
2366/*
2367                                         With  w/o  w/o  With
2368                                         Wild  JKR  Wild JKR
2369PayTable   3K   STR  FL  FH  4K  SF  5K   RF    4D   RF   4D  (Bonus)
2370---------------------------------------------------------------------
2371  P65N      1    2    3   3   3   6   9   12    25  800  1000  2000
2372  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 50.4%
2373     Programs Available: PP0127
2374*/
2375   ROM_REGION( 0x10000, "maincpu", 0 )
2376   ROM_LOAD( "pp0127_999-a1a.u68",   0x00000, 0x10000, CRC(df09abd2) SHA1(bc8c6f01b3387c0d10ec380ec86f26673776bfb2) ) /* Game Version: 999, Library Version: A1A */
2377 
2378   ROM_REGION( 0x020000, "gfx1", 0 )
2379   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
2380   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
2381   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
2382   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
2383 
2384   ROM_REGION( 0x100, "proms", 0 )
2385   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2386ROM_END
2387 
2388ROM_START( pepp0158 ) /* Normal board : 4 of a Kind Bonus Poker (PP0158) - 03/17/97   @ IGT  L97-0628 */
2389/*
2390                                       5-K 2-4
2391PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2392------------------------------------------------------------------
2393  P77A      1    2    3    4    5   8  25  40  80  50 250    800
2394  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
2395     Programs Available: PP0158, X000158P
2396*/
2397   ROM_REGION( 0x10000, "maincpu", 0 )
2398   ROM_LOAD( "pp0158_a67-a8k.u68",   0x00000, 0x10000, CRC(715aeadf) SHA1(e90b1f0a1d4886882c9259d84c950076f9fd521d) ) /* Game Version: A67, Library Version: A8K */
2399 
2400   ROM_REGION( 0x020000, "gfx1", 0 )
2401   ROM_LOAD( "mro-cg2108.u72",   0x00000, 0x8000, CRC(4d2d2223) SHA1(4672d4302697cfa2e6d826f79cc3fa1bdfbd8315) ) /*  11/29/94   @ IGT  L94-2198  */
2402   ROM_LOAD( "mgo-cg2108.u73",   0x08000, 0x8000, CRC(74a75c2c) SHA1(0cdac698685849696402d289dcdc82df2aae7e49) )
2403   ROM_LOAD( "mbo-cg2108.u74",   0x10000, 0x8000, CRC(3f364248) SHA1(5111aa57ff8698dceb55b9d10f3acab7786c7da6) )
2404   ROM_LOAD( "mxo-cg2108.u75",   0x18000, 0x8000, CRC(b04d317b) SHA1(5c181fb0a58b216db511572e531cd0eea7a061f4) )
2405 
2406   ROM_REGION( 0x100, "proms", 0 )
2407   ROM_LOAD( "cap944.u50", 0x0000, 0x0100, CRC(8700bc0a) SHA1(71b0bea067fb4885b19145146149eafd01d87ad0) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2408ROM_END
2409 
2410ROM_START( pepp0158a ) /* Normal board : 4 of a Kind Bonus Poker (PP0158) - 10/23/95   @ IGT  L95-2438 */
2411/*
2412                                       5-K 2-4
2413PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2414------------------------------------------------------------------
2415  P77A      1    2    3    4    5   8  25  40  80  50 250    800
2416  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
2417     Programs Available: PP0158, X000158P
2418*/
2419   ROM_REGION( 0x10000, "maincpu", 0 )
2420   ROM_LOAD( "pp0158_a46-a75.u68",   0x00000, 0x10000, CRC(5976cd19) SHA1(6a461ea9ddf78dffa3cf8b65903ebf3127f23d45) ) /* Game Version: A46, Library Version: A75, Video Lib ver A0Y */
2421 
2422   ROM_REGION( 0x020000, "gfx1", 0 )
2423   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
2424   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
2425   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
2426   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
2427 
2428   ROM_REGION( 0x100, "proms", 0 )
2429   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2430ROM_END
2431 
2432ROM_START( pepp0158b ) /* Normal board : 4 of a Kind Bonus Poker (PP0158) */
2433/*
2434                                       5-K 2-4
2435PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2436------------------------------------------------------------------
2437  P77A      1    2    3    4    5   8  25  40  80  50 250    800
2438  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
2439     Programs Available: PP0158, X000158P
2440*/
2441   ROM_REGION( 0x10000, "maincpu", 0 )
2442   ROM_LOAD( "pp0158_813-a75.u68",   0x00000, 0x10000, CRC(b82cec15) SHA1(6ff8867e88d57cd1874388c9e6f5e0e6d96029e9) ) /* Game Version: A46, Library Version: A75 */
2443 
2444   ROM_REGION( 0x020000, "gfx1", 0 )
2445   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
2446   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
2447   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
2448   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
2449 
2450   ROM_REGION( 0x100, "proms", 0 )
2451   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2452ROM_END
2453 
2454ROM_START( pepp0158c ) /* Normal board : 4 of a Kind Bonus Poker (PP0158) */
2455/*
2456                                       5-K 2-4
2457PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2458------------------------------------------------------------------
2459  P77A      1    2    3    4    5   8  25  40  80  50 250    800
2460  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
2461     Programs Available: PP0158, X000158P
2462*/
2463   ROM_REGION( 0x10000, "maincpu", 0 )
2464   ROM_LOAD( "pp0158_631-607.u68",   0x00000, 0x8000, CRC(5fe3498c) SHA1(f1405bf016d46904228cda88d8d94e2a956b2347) ) /* Game Version: 631, Library Version: 607, Video Lib Ver: 607 */
2465   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2466 
2467   ROM_REGION( 0x020000, "gfx1", 0 )
2468   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2469   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2470   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2471   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2472 
2473   ROM_REGION( 0x100, "proms", 0 )
2474   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2475ROM_END
2476 
2477ROM_START( pepp0159 ) /* Normal board : Standard Draw Poker (PP0159) - Multi Regional / Multi Currency - Tournament Mode capable */
2478/*
2479PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2480----------------------------------------------------------
2481  P11B      1    2    3    4    5   7  25  50 250   1000
2482  % Range: 92.5-94.5%  Optimum: 96.5%  Hit Frequency: 45.5%
2483     Programs Available: PP0159
2484*/
2485   ROM_REGION( 0x10000, "maincpu", 0 )
2486   ROM_LOAD( "pp0159_a2l-a4g.u68",   0x00000, 0x10000, CRC(22a5aa5f) SHA1(dfad528825710e887f36c201dc2dca2ab162f0f8) ) /* Game Version: A2L, Library Version: A4G */
2487 
2488   ROM_REGION( 0x020000, "gfx1", 0 )
2489   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
2490   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
2491   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
2492   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
2493 
2494   ROM_REGION( 0x100, "proms", 0 )
2495   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2496ROM_END
2497 
2498ROM_START( pepp0171 ) /* Normal board : Joker Poker  (PP0171) */
2499/*
2500                                            w/J     w/oJ
2501PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
2502----------------------------------------------------------------
2503   YA       1    1   2   3    5   7  15  50 100 200 400    800
2504  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.2%
2505     Programs Available: PP0171, X000171P
2506*/
2507   ROM_REGION( 0x10000, "maincpu", 0 ) /*  10/23/95   @IGT  L95-2281  */
2508   ROM_LOAD( "pp0171_a45-a74.u68",   0x00000, 0x10000, CRC(7a68ee4b) SHA1(298ca0c87229929b61ddfdf8c0bac82e9df17e83) ) /* Game Version: A45, Library Version: A74 */
2509 
2510   ROM_REGION( 0x020000, "gfx1", 0 )
2511   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2512   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2513   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2514   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2515 
2516 
2517   ROM_REGION( 0x100, "proms", 0 )
2518   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2519ROM_END
2520 
2521ROM_START( pepp0171a ) /* Normal board : Joker Poker  (PP0171) - Multi Regional / Multi Currency - Tournament Mode capable */
2522/*
2523                                            w/J     w/oJ
2524PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
2525----------------------------------------------------------------
2526   YA       1    1   2   3    5   7  15  50 100 200 400    800
2527  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.2%
2528     Programs Available: PP0171, X000171P
2529*/
2530   ROM_REGION( 0x10000, "maincpu", 0 ) /*  10/23/95   @IGT  L95-2281  */
2531   ROM_LOAD( "pp0171_a2e-a49.u68",   0x00000, 0x10000, CRC(efd6a33a) SHA1(72f5a4c9923f46a59a61b3b034b1275ebfeadac6) ) /* Game Version: A2E, Library Version: A49 */
2532 
2533   ROM_REGION( 0x020000, "gfx1", 0 )
2534   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
2535   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
2536   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
2537   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
2538 
2539 
2540   ROM_REGION( 0x100, "proms", 0 )
2541   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2542ROM_END
2543 
2544ROM_START( pepp0178 ) /* Normal board : 4 of a Kind Bonus Poker w/ operator selectable special 4 of a Kind (PP0178) */
2545/*
2546                                          Aor?
2547PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K*  SF  RF  (Bonus)
2548-----------------------------------------------------------------
2549  ????      1    2    3    4    6   9  25  25   50 250    800
2550 
2551* Operator selectable Special 4 of a Kind. Maxbet payout is 250 same as SF at Maxbet
2552 
2553*/
2554   ROM_REGION( 0x10000, "maincpu", 0 )
2555   ROM_LOAD( "pp0178_645-627.u68",   0x00000, 0x10000, CRC(96cb3b13) SHA1(d8b0621e48b20142d25bf81d07d6716d9858f33e) ) /* Game Version: 645, Library Version: 627 */
2556 
2557   ROM_REGION( 0x020000, "gfx1", 0 )
2558   ROM_LOAD( "mro-cg954.u72",   0x00000, 0x8000, CRC(1f9cd61e) SHA1(92a2ca3765ad4eeb7ab96538d4278e0a99d16638) )
2559   ROM_LOAD( "mgo-cg954.u73",   0x08000, 0x8000, CRC(ac1dd15d) SHA1(41ddbb05edc3d274a27d4938c29e6a1e7c785cd7) )
2560   ROM_LOAD( "mbo-cg954.u74",   0x10000, 0x8000, CRC(cfcb5740) SHA1(8a94536f3b4315c1e6a16a8e5043a80205a3aabe) )
2561   ROM_LOAD( "mxo-cg954.u75",   0x18000, 0x8000, CRC(94f63723) SHA1(f53867cc1c07235ff2aba1854459085dd0643c89) )
2562 
2563   ROM_REGION( 0x100, "proms", 0 )
2564   ROM_LOAD( "cap953.u50", 0x0000, 0x0100, CRC(6ece50ad) SHA1(bc5761303b09625850ba50263607d11871ea3ed3) )
2565ROM_END
2566 
2567ROM_START( pepp0188 ) /* Normal board : Standard Draw Poker (PP0188) */
2568/*
2569PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2570----------------------------------------------------------
2571  P40A      1    2    3    4    6   9  15  40 250    800
2572  % Range: 86.5-88.5%  Optimum: 92.5%  Hit Frequency: 45.5%
2573     Programs Available: PP0188, X000188P
2574*/
2575   ROM_REGION( 0x10000, "maincpu", 0 )
2576   ROM_LOAD( "pp0188_986-a0u.u68",   0x00000, 0x10000, CRC(cf36a53c) SHA1(99b578538ab24d9ff91971b1f77599272d1dbfc6) ) /* Game Version: 986, Library Version: A0U */
2577 
2578   ROM_REGION( 0x020000, "gfx1", 0 )
2579   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2580   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2581   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2582   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2583 
2584   ROM_REGION( 0x100, "proms", 0 )
2585   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2586ROM_END
2587 
2588ROM_START( pepp0188a ) /* Normal board : Standard Draw Poker (PP0188) */
2589/*
2590PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2591----------------------------------------------------------
2592  P40A      1    2    3    4    6   9  15  40 250    800
2593  % Range: 86.5-88.5%  Optimum: 92.5%  Hit Frequency: 45.5%
2594     Programs Available: PP0188, X000188P
2595*/
2596   ROM_REGION( 0x10000, "maincpu", 0 )
2597   ROM_LOAD( "pp0188_a66-a8h.u68",   0x00000, 0x10000, CRC(72740894) SHA1(5b7109b6cbe67e0a951fd48b4daf09875abb75fc) ) /* Game Version: A66, Library Version: A8H */
2598 
2599   ROM_REGION( 0x020000, "gfx1", 0 )
2600   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2601   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2602   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2603   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2604 
2605   ROM_REGION( 0x100, "proms", 0 )
2606   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2607ROM_END
2608 
2609ROM_START( pepp0190 ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0190) */
2610/*
2611                                        w/D     w/oD
2612PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2613------------------------------------------------------------
2614  P57A      1    2    3   4   4   8  10  20 200 250    800
2615  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
2616     Programs Available: PP0417, X000417P, X000190P & PP0190 - Non Double-up Only
2617*/
2618   ROM_REGION( 0x10000, "maincpu", 0 )
2619   ROM_LOAD( "pp0190_642-623.u68",   0x00000, 0x10000, CRC(3b8a3203) SHA1(33bd285def754df34f4815cd713e2ff599c74f11) ) /* Game Version: 642, Library Version: 623 */
2620 
2621   ROM_REGION( 0x020000, "gfx1", 0 )
2622   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) ) /* Should be MxO-CG2023.U7x & CAP773 (or CAP2023)?? */
2623   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2624   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2625   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2626 
2627   ROM_REGION( 0x100, "proms", 0 )
2628   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2629ROM_END
2630 
2631ROM_START( pepp0190a ) /* Normal board : Deuces Wild Poker  (PP0190) - Multi Regional / Multi Currency - Tournament Mode capable */
2632/*
2633                                        w/D     w/oD
2634PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2635------------------------------------------------------------
2636  P57A      1    2    3   4   4   8  10  20 200 250    800
2637  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
2638     Programs Available: PP0417, X000417P, X000190P & PP0190 - Non Double-up Only
2639*/
2640   ROM_REGION( 0x10000, "maincpu", 0 )
2641   ROM_LOAD( "pp0190_a56-a7a.u68",   0x00000, 0x10000, CRC(26900a42) SHA1(e15537c1dff097b99d3b21801243289872330a2a) ) /* Game Version: A56, Library Version: A7A */
2642 
2643   ROM_REGION( 0x020000, "gfx1", 0 )
2644   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
2645   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
2646   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
2647   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
2648 
2649   ROM_REGION( 0x100, "proms", 0 )
2650   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2651ROM_END
2652 
2653ROM_START( pepp0197 ) /* Normal board : Standard Draw Poker (PP0197) - 10/23/95   @ IGT  L95-2452 */
2654/*
2655PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2656----------------------------------------------------------
2657   BA       1    2    3    4    5   8  25  50 250    800
2658  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
2659     Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only
2660*/
2661   ROM_REGION( 0x10000, "maincpu", 0 )
2662   ROM_LOAD( "pp0197_a45-a75.u68",   0x00000, 0x10000, CRC(6b5b3108) SHA1(2fafcf979db92d4f9f1fb0a2e9645fd71d8dd5c2) ) /* Game Version: A45, Library Version: A75 */
2663 
2664   ROM_REGION( 0x020000, "gfx1", 0 )
2665   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2666   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2667   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2668   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2669 
2670 
2671   ROM_REGION( 0x100, "proms", 0 )
2672   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2673ROM_END
2674 
2675ROM_START( pepp0197a ) /* Normal board : Standard Draw Poker (PP0197) */
2676/*
2677PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2678----------------------------------------------------------
2679   BA       1    2    3    4    5   8  25  50 250    800
2680  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
2681     Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only
2682*/
2683   ROM_REGION( 0x10000, "maincpu", 0 )
2684   ROM_LOAD( "pp0197_919-a0c.u68",   0x00000, 0x10000, CRC(ae817534) SHA1(b2454609e8275aab00797966c0f4e68eae2911cd) ) /* Game Version: 919, Library Version: A0C */
2685 
2686   ROM_REGION( 0x020000, "gfx1", 0 )
2687   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2688   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2689   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2690   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2691 
2692 
2693   ROM_REGION( 0x100, "proms", 0 )
2694   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2695ROM_END
2696 
2697ROM_START( pepp0197b ) /* Normal board : Standard Draw Poker (Auto Hold in options) (PP0197) */
2698/*
2699PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2700----------------------------------------------------------
2701   BA       1    2    3    4    5   8  25  50 250    800
2702  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
2703     Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only
2704*/
2705   ROM_REGION( 0x10000, "maincpu", 0 )
2706   ROM_LOAD( "pp0197_689-654.u68",   0x00000, 0x10000, CRC(84a2fbde) SHA1(0515f2693d388e29cdf0de4d29708250c671e0a4) ) /* Game Version: 689, Library Version: 654 */
2707 
2708   ROM_REGION( 0x020000, "gfx1", 0 )
2709   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2710   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2711   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2712   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2713 
2714 
2715   ROM_REGION( 0x100, "proms", 0 )
2716   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2717ROM_END
2718 
2719ROM_START( pepp0203 ) /* Normal board : 4 of a Kind Bonus Poker (PP0203) */
2720/*
2721                                       5-K 2-4
2722PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2723------------------------------------------------------------------
2724  P90A      1    2    3    4    5   7  25  40  80  50 250    800
2725  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
2726     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
2727*/
2728   ROM_REGION( 0x10000, "maincpu", 0 )
2729   ROM_LOAD( "pp0203_a46-a75.u68",   0x00000, 0x10000, CRC(2955eeb5) SHA1(ac2483dbb92de84ab64d0d7e55acff196966ea1b) ) /* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
2730 
2731   ROM_REGION( 0x020000, "gfx1", 0 )
2732   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
2733   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
2734   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
2735   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
2736 
2737 
2738   ROM_REGION( 0x100, "proms", 0 )
2739   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2740ROM_END
2741 
2742ROM_START( pepp0203a ) /* Normal board : 4 of a Kind Bonus Poker (PP0203) */
2743/*
2744                                       5-K 2-4
2745PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2746------------------------------------------------------------------
2747  P90A      1    2    3    4    5   7  25  40  80  50 250    800
2748  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
2749     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
2750*/
2751   ROM_REGION( 0x10000, "maincpu", 0 )
2752   ROM_LOAD( "pp0203_a0n-a23.u68",   0x00000, 0x10000, CRC(fce4ea36) SHA1(4c1be0cb3600bbcac768b942f7b8bddd5d626ef6) ) /* Game Version: A0N, Library Version: A23, Video Lib ver: A0Y */
2753 
2754   ROM_REGION( 0x020000, "gfx1", 0 )
2755   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
2756   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
2757   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
2758   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
2759 
2760 
2761   ROM_REGION( 0x100, "proms", 0 )
2762   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2763ROM_END
2764 
2765ROM_START( pepp0203b ) /* Normal board : 4 of a Kind Bonus Poker (PP0203) */
2766/*
2767                                       5-K 2-4
2768PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2769------------------------------------------------------------------
2770  P90A      1    2    3    4    5   7  25  40  80  50 250    800
2771  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
2772     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
2773*/
2774   ROM_REGION( 0x10000, "maincpu", 0 )
2775   ROM_LOAD( "pp0203_813-824.u68",   0x00000, 0x10000, CRC(49ea6fb9) SHA1(ca595e30d786d28397eeef10786a811af1a5c74d) ) /* Game Version: 813, Library Version: 824 */
2776 
2777   ROM_REGION( 0x020000, "gfx1", 0 )
2778   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
2779   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
2780   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
2781   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
2782 
2783   ROM_REGION( 0x100, "proms", 0 )
2784   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2785ROM_END
2786 
2787ROM_START( pepp0203c ) /* Normal board : 4 of a Kind Bonus Poker (PP0203) - Multi Regional / Multi Currency - Tournament Mode capable */
2788/*
2789                                       5-K 2-4
2790PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2791------------------------------------------------------------------
2792  P90A      1    2    3    4    5   7  25  40  80  50 250    800
2793  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
2794     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
2795*/
2796   ROM_REGION( 0x10000, "maincpu", 0 )
2797   ROM_LOAD( "pp0203_a35-a51.u68",   0x00000, 0x10000, CRC(7d38b599) SHA1(aee2f347c00c240e1dc0b662800708b1038d3ec8) ) /* Game Version: A35, Library Version: A51 */
2798 
2799   ROM_REGION( 0x020000, "gfx1", 0 )
2800   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
2801   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
2802   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
2803   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
2804 
2805   ROM_REGION( 0x100, "proms", 0 )
2806   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2807ROM_END
2808 
2809ROM_START( pepp0219 ) /* Normal board : Standard Draw Poker - Auto Hold in Options (PP0219) */
2810/*
2811PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2812----------------------------------------------------------
2813   GA       1    2    3    4    5   6  25  50 250    800
2814  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
2815     Programs Available: PP0219
2816*/
2817   ROM_REGION( 0x10000, "maincpu", 0 )
2818   ROM_LOAD( "pp0219_689-654.u68",   0x00000, 0x10000, CRC(2cd5cd21) SHA1(614264f0e346146420b44ebe9dc93b0799a70b5d) ) /* Game Version: 689, Library Version: 654 */
2819 
2820   ROM_REGION( 0x020000, "gfx1", 0 )
2821   ROM_LOAD( "mro-cg904.u72",   0x00000, 0x8000, CRC(75bac43f) SHA1(8e7bfba95aa6e027cdaf0d1535e5c630ee2f56d3) )
2822   ROM_LOAD( "mgo-cg904.u73",   0x08000, 0x8000, CRC(1222d844) SHA1(854eb790d5b5a5cfe8148e8b95e3ba3f06f33dce) )
2823   ROM_LOAD( "mbo-cg904.u74",   0x10000, 0x8000, CRC(0bf0168f) SHA1(254cef934a0d30c5a18a0b4773bb364fc21f8113) )
2824   ROM_LOAD( "mxo-cg904.u75",   0x18000, 0x8000, CRC(ff648f12) SHA1(58f8247a997e1b0b69bafed428d30822adef339e) )
2825 
2826   ROM_REGION( 0x100, "proms", 0 )
2827   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2828ROM_END
2829 
2830ROM_START( pepp0221 ) /* Normal board : Standard Draw Poker (PP0221) */
2831/*
2832PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2833----------------------------------------------------------
2834  P11A      1    2    3    4    5   9  25  50 250    800
2835  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
2836     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
2837*/
2838   ROM_REGION( 0x10000, "maincpu", 0 )
2839   ROM_LOAD( "pp0221_979-a0c.u68",   0x00000, 0x10000, CRC(c45fb8f1) SHA1(fba8dce2954beb168624ba94b2a4fdd3b260da46) ) /* Game Version: 979, Library Version: A0C */
2840 
2841   ROM_REGION( 0x020000, "gfx1", 0 )
2842   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2843   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2844   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2845   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2846 
2847   ROM_REGION( 0x100, "proms", 0 )
2848   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2849ROM_END
2850 
2851ROM_START( pepp0221a ) /* Normal board : Standard Draw Poker (PP0221) */
2852/*
2853PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2854----------------------------------------------------------
2855  P11A      1    2    3    4    5   9  25  50 250    800
2856  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
2857     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
2858*/
2859   ROM_REGION( 0x10000, "maincpu", 0 )
2860   ROM_LOAD( "pp0221_896-914.u68",   0x00000, 0x10000, CRC(14d50334) SHA1(281c4467f57f91d0da98242b085973c06193085a) ) /* Game Version: 896, Library Version: 914 */
2861 
2862   ROM_REGION( 0x020000, "gfx1", 0 )
2863   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2864   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2865   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2866   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2867 
2868   ROM_REGION( 0x100, "proms", 0 )
2869   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2870ROM_END
2871 
2872ROM_START( pepp0224 ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0224) */
2873/*
2874                                        w/D     w/oD
2875PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2876------------------------------------------------------------
2877  P47A      1    2    2   3   4  13  16  25 200 250    800
2878  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.9%
2879     Programs Available: PP0290, X000224P & PP0224 - Non Double-up Only
2880*/
2881   ROM_REGION( 0x10000, "maincpu", 0 )
2882   ROM_LOAD( "pp0224_a47-a76.u68",   0x00000, 0x10000, CRC(5d6881ad) SHA1(38953ffadea04df614b14c70177736039495c408) ) /* Game Version: A47, Library Version: A76 */
2883 
2884   ROM_REGION( 0x020000, "gfx1", 0 )
2885   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
2886   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
2887   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
2888   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
2889 
2890   ROM_REGION( 0x100, "proms", 0 )
2891   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2892ROM_END
2893 
2894ROM_START( pepp0224a ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0224) */
2895/*
2896                                        w/D     w/oD
2897PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2898------------------------------------------------------------
2899  P47A      1    2    2   3   4  13  16  25 200 250    800
2900  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.9%
2901     Programs Available: PP0290, X000224P & PP0224 - Non Double-up Only
2902*/
2903   ROM_REGION( 0x10000, "maincpu", 0 )
2904   ROM_LOAD( "pp0224_961-984.u68",   0x00000, 0x10000, CRC(71d5e112) SHA1(528f06ad7ea7e1e297939c7b3ca0bb7faa8ce8c1) ) /* Game Version: 961, Library Version: 984 */
2905 
2906   ROM_REGION( 0x020000, "gfx1", 0 )
2907   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
2908   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
2909   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
2910   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
2911 
2912   ROM_REGION( 0x100, "proms", 0 )
2913   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2914ROM_END
2915 
2916ROM_START( pepp0230 ) /* Normal board : Standard Draw Poker (PP0230) */
2917/*
2918PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2919----------------------------------------------------------
2920   BA       1    2    3    4    5   8  25  50 250    800
2921  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
2922     Programs Available: PP0230
2923*/
2924   ROM_REGION( 0x10000, "maincpu", 0 )
2925   ROM_LOAD( "pp0230_715-702.u68",   0x00000, 0x10000, CRC(0272d8d6) SHA1(659f9149ab5e26283eaccd31588183c21c291adb) ) /* Game Version: 715, Library Version: 702 */
2926 
2927   ROM_REGION( 0x020000, "gfx1", 0 )
2928   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2929   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2930   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2931   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2932 
2933   ROM_REGION( 0x100, "proms", 0 )
2934   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2935ROM_END
2936 
2937ROM_START( pepp0242 ) /* Normal board : Deuces Wild Poker (PP0242) - Multi Regional / Multi Currency in English / Spanish - Tournament Mode capable */
2938/*
2939                                        w/D     w/oD
2940PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2941------------------------------------------------------------
2942  P56A      1    2    3   3   4   8  10  20 200 250    800
2943  % Range: 89.4-91.4%  Optimum: 93.4%  Hit Frequency: 45.1%
2944     Programs Available: PP0242, X000242P
2945*/
2946   ROM_REGION( 0x10000, "maincpu", 0 )
2947   ROM_LOAD( "pp0242_a1c-a31.u68",   0x00000, 0x10000, CRC(cb7cdf2b) SHA1(989db6bf860637ef0c9d38c4ec824e2ab92acb89) ) /* Game Version: A1C, Library Version: A31 */
2948 
2949   ROM_REGION( 0x020000, "gfx1", 0 )
2950   ROM_LOAD( "mro-cg1325.u72",  0x00000, 0x8000, CRC(ebb81436) SHA1(211cc0f881703b3cceb51c65209075154c9536db) )
2951   ROM_LOAD( "mgo-cg1325.u73",  0x08000, 0x8000, CRC(ef86e83a) SHA1(854fc31173c7647a9ed986f2fe58ec3795eb8542) )
2952   ROM_LOAD( "mbo-cg1325.u74",  0x10000, 0x8000, CRC(8387b4ba) SHA1(cab77982464e9e70e6ad4ecf51a5cafe7aefb478) )
2953   ROM_LOAD( "mxo-cg1325.u75",  0x18000, 0x8000, CRC(9dddc501) SHA1(a0ab8b3866b0ae018b3f6e0199bdc756d4e5f967) )
2954 
2955   ROM_REGION( 0x100, "proms", 0 )
2956   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2957ROM_END
2958 
2959ROM_START( pepp0249 ) /* Normal board : Deuces Wild Poker (PP0249) */
2960/*
2961                                        w/D     w/oD
2962PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2963------------------------------------------------------------
2964  P129A     1    2    3   4   4  10  16  25 200 250    800
2965  % Range: 95.7-97.7%  Optimum: 99.7%  Hit Frequency: 44.3%
2966     Programs Available: PP0249
2967 
2968Superseded by PP0469
2969 
2970*/
2971   ROM_REGION( 0x10000, "maincpu", 0 )
2972   ROM_LOAD( "pp0249_600-550.u68",   0x00000, 0x8000, CRC(39cab612) SHA1(6ef2e533df40d9ac331dc9e2fd3bf17187f70414) ) /* Game Version: 600, Library Version: 550, Video Lib Ver: 550 */
2973   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2974 
2975   ROM_REGION( 0x020000, "gfx1", 0 )
2976   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
2977   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2978   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2979   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2980 
2981   ROM_REGION( 0x100, "proms", 0 )
2982   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2983ROM_END
2984 
2985ROM_START( pepp0250 ) /* Normal board : Double Down Stud Poker (PP0250) */
2986/*
2987PayTable  6s-10s  Js+  2PR  3K   STR  FL  FH  4K  SF   RF  (Bonus)
2988------------------------------------------------------------------
2989  ????      1      2    3    4    6    6  12  50 200  1000  4000
2990*/
2991   ROM_REGION( 0x10000, "maincpu", 0 )
2992   ROM_LOAD( "pp0250_733-778.u68",   0x00000, 0x10000, CRC(4c919598) SHA1(fe73503c6ccb3c5746fb96be58cd5b740c819713) ) /* Game Version: 733, Library Version: 778 */
2993 
2994   ROM_REGION( 0x020000, "gfx1", 0 )
2995   ROM_LOAD( "mro-cg1019.u72",   0x00000, 0x8000, CRC(9086dc3c) SHA1(639baef8a9b347015d21817d69265700ff205774) ) /* Verified CG set for PP0250 set */
2996   ROM_LOAD( "mgo-cg1019.u73",   0x08000, 0x8000, CRC(fb538a19) SHA1(1ed480ebdf3ad210511e7e0a0dd4e28466219ae9) ) /* Superseded by CG2015 which also works */
2997   ROM_LOAD( "mbo-cg1019.u74",   0x10000, 0x8000, CRC(493bf604) SHA1(9cbce26ed328e6878ec5f6531ea140e1c17e6753) )
2998   ROM_LOAD( "mxo-cg1019.u75",   0x18000, 0x8000, CRC(064a5c80) SHA1(4d21a7a424258f74d4a1e78c123288799e316228) )
2999 
3000   ROM_REGION( 0x100, "proms", 0 )
3001   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3002ROM_END
3003 
3004ROM_START( pepp0265 ) /* Normal board : 4 of a Kind Bonus Poker (PP0265) */
3005/*
3006                                       5-K 2-4
3007PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3008------------------------------------------------------------------
3009 P101A      1    2    3    4    5   6  25  40  80  50 250    800
3010  % Range: 92.5-94.5%  Optimum: 96.9%  Hit Frequency: 45.5%
3011     Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only
3012*/
3013   ROM_REGION( 0x10000, "maincpu", 0 )
3014   ROM_LOAD( "pp0265_a46-a75.u68",   0x00000, 0x10000, CRC(dccb5e2f) SHA1(4c1ff0f79d9441d0b7e8b31f95def1056945eb96) ) /* Game Version: A46, Library Version: A75, Video Lib ver A0Y */
3015 
3016   ROM_REGION( 0x020000, "gfx1", 0 )
3017   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3018   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3019   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3020   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3021 
3022   ROM_REGION( 0x100, "proms", 0 )
3023   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3024ROM_END
3025 
3026ROM_START( pepp0265a ) /* Normal board : 4 of a Kind Bonus Poker (PP0265) */
3027/*
3028                                       5-K 2-4
3029PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3030------------------------------------------------------------------
3031 P101A      1    2    3    4    5   6  25  40  80  50 250    800
3032  % Range: 92.5-94.5%  Optimum: 96.9%  Hit Frequency: 45.5%
3033     Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only
3034*/
3035   ROM_REGION( 0x10000, "maincpu", 0 )
3036   ROM_LOAD( "pp0265_a0n-a23.u68",   0x00000, 0x10000, CRC(7dad6907) SHA1(890bdafb8bf272e513e94c8016c9866ab39f8fa2) ) /* Game Version: A0N, Library Version: A23, Viedo Lib ver A0Y */
3037 
3038   ROM_REGION( 0x020000, "gfx1", 0 )
3039   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3040   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3041   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3042   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3043 
3044   ROM_REGION( 0x100, "proms", 0 )
3045   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3046ROM_END
3047 
3048ROM_START( pepp0265b ) /* Normal board : 4 of a Kind Bonus Poker (PP0265) - Multi Regional / Multi Currency - Tournament Mode capable */
3049/*
3050                                       5-K 2-4
3051PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3052------------------------------------------------------------------
3053 P101A      1    2    3    4    5   6  25  40  80  50 250    800
3054  % Range: 92.5-94.5%  Optimum: 96.9%  Hit Frequency: 45.5%
3055     Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only
3056*/
3057   ROM_REGION( 0x10000, "maincpu", 0 )
3058   ROM_LOAD( "pp0265_987-a0v.u68",   0x00000, 0x10000, CRC(471e59c0) SHA1(02aedff3feaa6fe88cd6eebbd3cd335ae1240228) ) /* Game Version: 987, Library Version: A0V */
3059 
3060   ROM_REGION( 0x020000, "gfx1", 0 )
3061   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
3062   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
3063   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
3064   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
3065 
3066   ROM_REGION( 0x100, "proms", 0 )
3067   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3068ROM_END
3069 
3070ROM_START( pepp0274 ) /* Normal board : Standard Draw Poker (PP0274) - Normal Poker & Tournament Mode capable */
3071/*
3072PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3073---------------------------------------------------------
3074  CA        1    2    3   4    6   9  25  50 250    800
3075  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 45.5%
3076     Programs Available: PP0274
3077*/
3078   ROM_REGION( 0x10000, "maincpu", 0 )
3079   ROM_LOAD( "pp0274_741-728.u68",   0x00000, 0x10000, CRC(cd0b2890) SHA1(5f859dbc8d747a198c735a2bff42279c874928b0) ) /* Game Version: 741, Library Version: 728, Viedo Lib ver: 728 */
3080 
3081   ROM_REGION( 0x020000, "gfx1", 0 )
3082   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
3083   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
3084   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
3085   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
3086 
3087   ROM_REGION( 0x100, "proms", 0 )
3088   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3089ROM_END
3090 
3091ROM_START( pepp0288 ) /* Normal board : Standard Draw Poker (PP0288) - Spanish */
3092/*
3093PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3094----------------------------------------------------------
3095   KK       1    2    3    4    6   9  25  50 500    500
3096  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 45.5%
3097     Programs Available: PP0288
3098 
3099Spanish version of PP0150
3100 
3101*/
3102   ROM_REGION( 0x10000, "maincpu", 0 )
3103   ROM_LOAD( "pp0288_964-988.u68",   0x00000, 0x10000, CRC(f7e1cb4c) SHA1(651c4306764200611aae7280ce0a9756d42ccb21) ) /* Game Version: 964, Library Version: 988 */
3104 
3105   ROM_REGION( 0x020000, "gfx1", 0 )
3106   ROM_LOAD( "mro-cg1152.u72",   0x00000, 0x8000, CRC(55aca7f6) SHA1(9a0b25908e4fee8346da4726f38993e233a2cb2f) )
3107   ROM_LOAD( "mgo-cg1152.u73",   0x08000, 0x8000, CRC(c5185314) SHA1(7fc385d2b44e68364f2b5a3702737c5d5fea5ea2) )
3108   ROM_LOAD( "mbo-cg1152.u74",   0x10000, 0x8000, CRC(bd19aef6) SHA1(77126ea73d0a5da4b8856b5ebcbbab84cfaef008) )
3109   ROM_LOAD( "mxo-cg1152.u75",   0x18000, 0x8000, CRC(d65f7362) SHA1(d56fa0d13126f1599d538c81a2c7ea1f3c94b62f) )
3110 
3111   ROM_REGION( 0x100, "proms", 0 )
3112   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3113ROM_END
3114 
3115ROM_START( pepp0290 ) /* Normal board : Deuces Wild Poker (PP0290) */
3116/*
3117                                        w/D     w/oD
3118PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3119------------------------------------------------------------
3120  P47A      1    2    2   3   4  13  16  25 200 250    800
3121  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.9%
3122     Programs Available: PP0290, X000224P & PP0224 - Non Double-up Only
3123*/
3124   ROM_REGION( 0x10000, "maincpu", 0 )
3125   ROM_LOAD( "pp0290_a0v-a2d.u68",   0x00000, 0x10000, CRC(e2e6451c) SHA1(fa83b7a6d6c4ba1b3ee95b48ab6c3594477e536d) ) /* Game Version: A0V, Library Version: A2D */
3126 
3127   ROM_REGION( 0x020000, "gfx1", 0 )
3128   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
3129   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
3130   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
3131   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
3132 
3133   ROM_REGION( 0x100, "proms", 0 )
3134   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3135ROM_END
3136 
3137ROM_START( pepp0291 ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0291) */
3138/*
3139                                        w/D     w/oD
3140PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3141------------------------------------------------------------
3142  P62A      1    2    3   4   4   9  15  25 200 250    800
3143  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 44.4%
3144     Programs Available: PP0125, PP0418, X000291P & PP0291 - Non Double-up Only
3145*/
3146   ROM_REGION( 0x10000, "maincpu", 0 )
3147   ROM_LOAD( "pp0291_a0v-a2d.u68",   0x00000, 0x10000, CRC(4eabac97) SHA1(dc849bca8ac90536c361cd576ee81c50afd7071b) ) /* Game Version: A0V, Library Version: A2D */
3148 
3149   ROM_REGION( 0x020000, "gfx1", 0 )
3150   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
3151   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
3152   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
3153   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
3154 
3155   ROM_REGION( 0x100, "proms", 0 )
3156   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3157ROM_END
3158 
3159ROM_START( pepp0409 ) /* Normal board : 4 of a Kind Bonus Poker (No Double-up) (PP0409) */
3160/*
3161                                       5-K 2-4
3162PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3163------------------------------------------------------------------
3164  P90A      1    2    3    4    5   7  25  40  80  50 250    800
3165  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
3166     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
3167*/
3168   ROM_REGION( 0x10000, "maincpu", 0 )
3169   ROM_LOAD( "pp0409_a45-a75.u68",   0x00000, 0x10000, CRC(a71fdad9) SHA1(a719787895ad035b2b930d2692930466a9bfb19d) ) /* Game Version: A46, Library Version: A75, Game Lib ver: A0Y */
3170 
3171   ROM_REGION( 0x020000, "gfx1", 0 )
3172   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3173   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3174   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3175   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3176 
3177   ROM_REGION( 0x100, "proms", 0 )
3178   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3179ROM_END
3180 
3181ROM_START( pepp0410 ) /* Normal board : 4 of a Kind Bonus Poker (No Double-up) (PP0410) */
3182/*
3183                                       5-K 2-4
3184PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3185------------------------------------------------------------------
3186 P101A      1    2    3    4    5   6  25  40  80  50 250    800
3187  % Range: 92.5-94.5%  Optimum: 96.9%  Hit Frequency: 45.5%
3188     Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only
3189*/
3190   ROM_REGION( 0x10000, "maincpu", 0 )
3191   ROM_LOAD( "pp0410_a0n-a23.u68",   0x00000, 0x10000, CRC(474f4809) SHA1(8d88647ab4719fdcf6ec0800386f32574b1da66d) ) /* Game Version: A0N, Library Version: A23, Game Lib ver: A0Y */
3192 
3193   ROM_REGION( 0x020000, "gfx1", 0 )
3194   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3195   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3196   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3197   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3198 
3199   ROM_REGION( 0x100, "proms", 0 )
3200   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3201ROM_END
3202 
3203ROM_START( pepp0417 ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0417) */
3204/*
3205                                        w/D     w/oD
3206PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3207------------------------------------------------------------
3208  P57A      1    2    3   4   4   8  10  20 200 250    800
3209  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
3210     Programs Available: PP0417, X000417P & PP0190 - Non Double-up Only
3211*/
3212   ROM_REGION( 0x10000, "maincpu", 0 )
3213   ROM_LOAD( "pp0417_a0v-a2d.u68",   0x00000, 0x10000, CRC(3681e606) SHA1(e8e9105247b144ce1050464cb6b0594c9e483f84) ) /* Game Version: A0V, Library Version: A2D */
3214 
3215   ROM_REGION( 0x020000, "gfx1", 0 )
3216   ROM_LOAD( "mro-cg2133.u72",   0x00000, 0x8000, CRC(b21a789f) SHA1(c49f9b5f51c29bbc0e1392e86d6602bd44e46380) ) /*  02/02/95   @ IGT  L95-0276  */
3217   ROM_LOAD( "mgo-cg2133.u73",   0x08000, 0x8000, CRC(2b7db148) SHA1(d5ff5dde3589d28937d13dc5c4c38caa1ebf2d56) )
3218   ROM_LOAD( "mbo-cg2133.u74",   0x10000, 0x8000, CRC(6ed455b7) SHA1(e4f223606c19d09be501461f38520f423599e0a2) ) /* Supersedes CG1215 graphics set */
3219   ROM_LOAD( "mxo-cg2133.u75",   0x18000, 0x8000, CRC(095ea26d) SHA1(9bdd8afe67da2370c4ca2d8418f3afdaf7b557ff) )
3220 
3221   ROM_REGION( 0x100, "proms", 0 )
3222   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3223ROM_END
3224 
3225ROM_START( pepp0417a ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0417) */
3226/*
3227                                        w/D     w/oD
3228PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3229------------------------------------------------------------
3230  P57A      1    2    3   4   4   8  10  20 200 250    800
3231  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
3232     Programs Available: PP0417, X000417P & PP0190 - Non Double-up Only
3233*/
3234   ROM_REGION( 0x10000, "maincpu", 0 )
3235   ROM_LOAD( "pp0417_961-984.u68",   0x00000, 0x10000, CRC(4a1e7899) SHA1(b6f243d275da70841482843e05c1be22fd80c25c) ) /* Game Version: 961, Library Version: 984 */
3236 
3237   ROM_REGION( 0x020000, "gfx1", 0 )
3238   ROM_LOAD( "mro-cg2133.u72",   0x00000, 0x8000, CRC(b21a789f) SHA1(c49f9b5f51c29bbc0e1392e86d6602bd44e46380) ) /*  02/02/95   @ IGT  L95-0276  */
3239   ROM_LOAD( "mgo-cg2133.u73",   0x08000, 0x8000, CRC(2b7db148) SHA1(d5ff5dde3589d28937d13dc5c4c38caa1ebf2d56) )
3240   ROM_LOAD( "mbo-cg2133.u74",   0x10000, 0x8000, CRC(6ed455b7) SHA1(e4f223606c19d09be501461f38520f423599e0a2) ) /* Supersedes CG1215 graphics set */
3241   ROM_LOAD( "mxo-cg2133.u75",   0x18000, 0x8000, CRC(095ea26d) SHA1(9bdd8afe67da2370c4ca2d8418f3afdaf7b557ff) )
3242 
3243   ROM_REGION( 0x100, "proms", 0 )
3244   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3245ROM_END
3246 
3247ROM_START( pepp0419 ) /* Normal board : Standard Draw Poker - Auto Hold in Options (No Double-up) (PP0419) */
3248/*
3249PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3250----------------------------------------------------------
3251   BA       1    2    3    4    5   8  25  50 250    800
3252  % Range: 93.3-95.3%  Optimum: 97.3%  Hit Frequency: 45.5%
3253     Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only
3254*/
3255   ROM_REGION( 0x10000, "maincpu", 0 )
3256   ROM_LOAD( "pp0419_768-761.u68",   0x00000, 0x10000, CRC(204f9ffe) SHA1(adfdc8b22ba5cc69234ad88ab2f92393a5fb3aff) ) /* Game Version: 768, Library Version: 761, Game Lib ver: 761 */
3257 
3258   ROM_REGION( 0x020000, "gfx1", 0 )
3259   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
3260   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
3261   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
3262   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
3263 
3264   ROM_REGION( 0x100, "proms", 0 )
3265   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3266ROM_END
3267 
3268ROM_START( pepp0420 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0420) */
3269/*
3270PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3271----------------------------------------------------------
3272   GA       1    2    3    4    5   6  25  50 250    800
3273  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
3274     Programs Available: PP0060, X000060P & PP0420 - Non Double-up Only
3275*/
3276   ROM_REGION( 0x10000, "maincpu", 0 )
3277   ROM_LOAD( "pp0420_896-914.u68",   0x00000, 0x10000, CRC(cdd923d2) SHA1(f7548159ea3c36c3fce481156ab0293d00f0fd0f) ) /* Game Version: 896, Library Version: 914 */
3278 
3279   ROM_REGION( 0x020000, "gfx1", 0 )
3280   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
3281   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
3282   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
3283   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
3284 
3285   ROM_REGION( 0x100, "proms", 0 )
3286   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3287ROM_END
3288 
3289ROM_START( pepp0423 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0423) */
3290/*
3291PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3292----------------------------------------------------------
3293  P11A      1    2    3    4    5   9  25  50 250    800
3294  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
3295     Programs Available: PP0423
3296*/
3297   ROM_REGION( 0x10000, "maincpu", 0 )
3298   ROM_LOAD( "pp0423_836-847.u68",   0x00000, 0x10000, CRC(12eec557) SHA1(3721d068223262260ad22698e7dca0440becc53e) ) /* Game Version: 836, Library Version: 847 */
3299 
3300   ROM_REGION( 0x020000, "gfx1", 0 )
3301   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
3302   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
3303   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
3304   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
3305 
3306   ROM_REGION( 0x100, "proms", 0 )
3307   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3308ROM_END
3309 
3310ROM_START( pepp0426 ) /* Normal board : Joker Poker (No Double-up) (PP0426) */
3311/*
3312                                            w/J     w/oJ
3313PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3314----------------------------------------------------------------
3315   YD       1    1   1   3    5   7  15  50 100 200 400    940
3316  % Range: 92.7-94.7%  Optimum: 96.7%  Hit Frequency: 44.1%
3317     Programs Available: PP0568, X000568P & PP0426 - Non Double-up Only
3318*/
3319   ROM_REGION( 0x10000, "maincpu", 0 )
3320   ROM_LOAD( "pp0426_979-a0c.u68",   0x00000, 0x10000, CRC(0dca4bf1) SHA1(f2cfe250e78fc0995dda653d231f75090ff5c394) ) /* Game Version: 979, Library Version: A0C */
3321 
3322   ROM_REGION( 0x020000, "gfx1", 0 )
3323   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3324   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3325   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3326   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3327 
3328   ROM_REGION( 0x100, "proms", 0 )
3329   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3330ROM_END
3331 
3332ROM_START( pepp0428 ) /* Normal board : Joker Poker (No Double-up) (PP0428) */
3333/*
3334                                            w/J     w/oJ
3335PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3336----------------------------------------------------------------
3337  P17A      1    1   2   3    4   5  20  40 100 200 500    800
3338  % Range: 91.5-92.5%  Optimum: 95.5%  Hit Frequency: 44.7%
3339     Programs Available: PP0459, X000459P & PP0428 - Non Double-up Only
3340*/
3341   ROM_REGION( 0x10000, "maincpu", 0 )
3342   ROM_LOAD( "pp0428_979-a0c.u68",   0x00000, 0x10000, CRC(a206a3bd) SHA1(48e1386027308684daee09370b5ee09d9eb645a8) ) /* Game Version: 979, Library Version: A0c */
3343 
3344   ROM_REGION( 0x020000, "gfx1", 0 )
3345   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3346   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3347   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3348   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3349 
3350   ROM_REGION( 0x100, "proms", 0 )
3351   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3352ROM_END
3353 
3354ROM_START( pepp0429 ) /* Normal board : Joker Poker (Aces or Better) (No Double-up) (PP0429) */
3355/*
3356                                            w/J     w/oJ
3357PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3358----------------------------------------------------------------
3359  P18A      1    1   2   3    5   6  20  50 100 200 500    800
3360  % Range: 89.8-91.8%  Optimum: 93.8%  Hit Frequency: 37.6%
3361     Programs Available: PP0458, X000458P & PP0429 - Non Double-up Only
3362*/
3363   ROM_REGION( 0x10000, "maincpu", 0 )
3364   ROM_LOAD( "pp0429_979-a0c.u68",   0x00000, 0x10000, CRC(453484e7) SHA1(6ba80b72cdd8b3bd43c656400591f4d543a9d94f) ) /* Game Version: 979, Library Version: A0C */
3365 
3366   ROM_REGION( 0x020000, "gfx1", 0 )
3367   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3368   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3369   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3370   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3371 
3372   ROM_REGION( 0x100, "proms", 0 )
3373   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3374ROM_END
3375 
3376ROM_START( pepp0431 ) /* Normal board : Deuces Joker Wild Poker (PP0431) - Multi Regional / Multi Currency - Tournament Mode capable */
3377/*
3378                                         With  w/o  w/o  With
3379                                         Wild  JKR  Wild JKR
3380PayTable   3K   STR  FL  FH  4K  SF  5K   RF    4D   RF   4D  (Bonus)
3381---------------------------------------------------------------------
3382  P76N      1    1    3   3   3   6   9   12    25  800  1000  2000
3383  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 50.4%
3384     Programs Available: PP0431, PP0812, PP0813, X000225P & PP0225 - Non Double-up Only
3385*/
3386   ROM_REGION( 0x10000, "maincpu", 0 )
3387   ROM_LOAD( "pp0431_a56-a7a.u68",   0x00000, 0x10000, CRC(34abee12) SHA1(165e6c3d8fb5d6d83217ae5acc35059ac44f6848) ) /* Game Version: A56, Library Version: A7A */
3388 
3389   ROM_REGION( 0x020000, "gfx1", 0 )
3390   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
3391   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
3392   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
3393   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
3394 
3395   ROM_REGION( 0x100, "proms", 0 )
3396   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3397ROM_END
3398 
3399ROM_START( pepp0434 ) /* Normal board : Bonus Poker Deluxe (PP0434) */
3400/*
3401PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3402----------------------------------------------------------
3403  P200A     1    1    3    4    6   8  80  50 250    800
3404  % Range: 94.5-96.5%  Optimum: 98.5%  Hit Frequency: 45.2%
3405     Programs Available: PP0434, X000434P & PP0713 - Non Double-up Only
3406*/
3407   ROM_REGION( 0x10000, "maincpu", 0 )
3408   ROM_LOAD( "pp0434_a45-a75.u68",   0x00000, 0x10000, CRC(e5c9ba19) SHA1(9a01457a54a0445a0f32affe2038366e681cada1) ) /* Game Version: A45, Library Version: A74 */
3409 
3410   ROM_REGION( 0x020000, "gfx1", 0 )
3411   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3412   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3413   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3414   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3415 
3416   ROM_REGION( 0x100, "proms", 0 )
3417   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3418ROM_END
3419 
3420ROM_START( pepp0447 ) /* Normal board : Standard Draw Poker (PP0447) */
3421/*
3422PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3423---------------------------------------------------------
3424  CA        1    2    3   4    6   9  25  50 250    800
3425  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 45.5%
3426     Programs Available: PP0447, X000447P
3427*/
3428   ROM_REGION( 0x10000, "maincpu", 0 )
3429   ROM_LOAD( "pp0447_a45-a74.u68",   0x00000, 0x10000, CRC(0ef0bb6c) SHA1(d0ef7a83417054f05d32d0a93ed0d5d618f4dfb9) ) /* Game Version: A45, Library Version: A74 */
3430 
3431   ROM_REGION( 0x020000, "gfx1", 0 )
3432   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3433   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3434   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3435   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3436 
3437   ROM_REGION( 0x100, "proms", 0 )
3438   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3439ROM_END
3440 
3441ROM_START( pepp0447a ) /* Normal board : Standard Draw Poker (PP0447) */
3442/*
3443PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3444---------------------------------------------------------
3445  CA        1    2    3   4    6   9  25  50 250    800
3446  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 45.5%
3447     Programs Available: PP0447, X000447P
3448*/
3449   ROM_REGION( 0x10000, "maincpu", 0 )
3450   ROM_LOAD( "pp0447_979-a0c.u68",   0x00000, 0x10000, CRC(a62748ea) SHA1(585049160f7983047dd13a1715d1edbf3b9778ea) ) /* Game Version: 979, Library Version: A0C */
3451 
3452   ROM_REGION( 0x020000, "gfx1", 0 )
3453   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3454   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3455   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3456   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3457 
3458   ROM_REGION( 0x100, "proms", 0 )
3459   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3460ROM_END
3461 
3462ROM_START( pepp0449 ) /* Normal board : Standard Draw Poker (PP0449) */
3463/*
3464PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3465----------------------------------------------------------
3466  P11A      1    2    3    4    5   9  25  50 250    800
3467  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
3468     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
3469*/
3470   ROM_REGION( 0x10000, "maincpu", 0 )
3471   ROM_LOAD( "pp0449_a45-a74.u68",   0x00000, 0x10000, CRC(44699ad7) SHA1(89d9d3107384a6b474c51a34bd34936c36c4b3f5) ) /* Game Version: A45, Library Version: A75 */
3472 
3473   ROM_REGION( 0x020000, "gfx1", 0 )
3474   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3475   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3476   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3477   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3478 
3479   ROM_REGION( 0x100, "proms", 0 )
3480   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3481ROM_END
3482 
3483ROM_START( pepp0449a ) /* Normal board : Standard Draw Poker (PP0449) - Multi Regional / Multi Currency in English / Spanish - Tournament Mode capable */
3484/*
3485PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3486----------------------------------------------------------
3487  P11A      1    2    3    4    5   9  25  50 250    800
3488  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
3489     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
3490*/
3491   ROM_REGION( 0x10000, "maincpu", 0 )
3492   ROM_LOAD( "pp0449_a19-a2x.u68",   0x00000, 0x10000, CRC(0bde4a5b) SHA1(dacce2a56ede8145fc22cad4cc75967aaea3b6e4) ) /* Game Version: A19, Library Version: A2X */
3493 
3494   ROM_REGION( 0x020000, "gfx1", 0 )
3495   ROM_LOAD( "mro-cg1426.u74",  0x00000, 0x8000, CRC(b99b3856) SHA1(a7de74bc712c68ae3da2d546c49dcd70e54c26a1) )
3496   ROM_LOAD( "mgo-cg1426.u73",  0x08000, 0x8000, CRC(d7145ea0) SHA1(7b23cf7840bab11f7ba9229e990e2c9dd995d59f) )
3497   ROM_LOAD( "mbo-cg1426.u72",  0x10000, 0x8000, CRC(5fd94bc5) SHA1(b2a23a6a8eb23fbefd7b16e7afb7eddad5f6656c) )
3498   ROM_LOAD( "mxo-cg1426.u75",  0x18000, 0x8000, CRC(74bc1556) SHA1(9afc00ec4643baa448e0131e1c7aeb3da4739f59) )
3499 
3500   ROM_REGION( 0x100, "proms", 0 )
3501   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3502ROM_END
3503 
3504ROM_START( pepp0452 ) /* Normal board : Double Deuces Wild Poker (PP0452) */
3505/*
3506                                        w/D     wo/D
3507PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3508------------------------------------------------------------
3509  P236A     1    2    2   3   4  11  16  25 400 250    800
3510  % Range: 95.6-97.6%  Optimum: 99.6%  Hit Frequency: 45.1%
3511     Programs Available: PP0452, X000452P
3512*/
3513   ROM_REGION( 0x10000, "maincpu", 0 )
3514   ROM_LOAD( "pp0452_726-706.u68",   0x00000, 0x10000, CRC(26413947) SHA1(66bc2fb3dd62aa9d8ab125665747d331a55e1868) ) /* Game Version: 726, Library Version: 706 */
3515 
3516   ROM_REGION( 0x020000, "gfx1", 0 )
3517   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
3518   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
3519   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
3520   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
3521 
3522   ROM_REGION( 0x100, "proms", 0 )
3523   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3524ROM_END
3525 
3526ROM_START( pepp0454 ) /* Normal board : Bonus Poker Deluxe (PP0454) */
3527/*
3528PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3529----------------------------------------------------------
3530  P253A     1    1    3    4    5   7  80  50 250    800
3531  % Range: 92.3-94.3%  Optimum: 96.3%  Hit Frequency: 45.2%
3532     Programs Available: PP0454, X000454P
3533*/
3534   ROM_REGION( 0x10000, "maincpu", 0 )
3535   ROM_LOAD( "pp0454_a45-a75.u68",   0x00000, 0x10000, CRC(f15f751d) SHA1(6e73625bf3fe0461a171f72ab5478439207516b3) ) /* Game Version: A45, Library Version: A74 */
3536 
3537   ROM_REGION( 0x020000, "gfx1", 0 )
3538   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3539   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3540   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3541   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3542 
3543   ROM_REGION( 0x100, "proms", 0 )
3544   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3545ROM_END
3546 
3547ROM_START( pepp0455 ) /* Normal board : Joker Poker (PP0455) */
3548/*
3549                                            w/J     w/oJ
3550PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3551----------------------------------------------------------------
3552 P245D      1    1   2   3    5   7  18  50 100 200 400    940
3553  % Range: 95.3-97.3%  Optimum: 99.3%  Hit Frequency: 44.2%
3554     Programs Available: PP0455, X000455P
3555*/
3556   ROM_REGION( 0x10000, "maincpu", 0 )
3557   ROM_LOAD( "pp0455_a45-a74.u68",   0x00000, 0x10000, CRC(1b543c9d) SHA1(ac5409c5fa069b7b19fb82cf04da55c45bc95aa6) ) /* Game Version: A45, Library Version: A74 */
3558 
3559   ROM_REGION( 0x020000, "gfx1", 0 )
3560   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3561   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3562   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3563   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3564 
3565   ROM_REGION( 0x100, "proms", 0 )
3566   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3567ROM_END
3568 
3569ROM_START( pepp0458 ) /* Normal board : Joker Poker (Aces or Better) (PP0458) */
3570/*
3571                                            w/J     w/oJ
3572PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3573----------------------------------------------------------------
3574  P18A      1    1   2   3    5   6  20  50 100 200 500    800
3575  % Range: 89.8-91.8%  Optimum: 93.8%  Hit Frequency: 37.6%
3576     Programs Available: PP0458, X000458P & PP0429 - Non Double-up Only
3577*/
3578   ROM_REGION( 0x10000, "maincpu", 0 )
3579   ROM_LOAD( "pp0458_a45-a74.u68",   0x00000, 0x10000, CRC(856e97ee) SHA1(ca5db52290f1b25139e1afc16ecb5dc4be897771) ) /* Game Version: A45, Library Version: A74 */
3580 
3581   ROM_REGION( 0x020000, "gfx1", 0 )
3582   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3583   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3584   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3585   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3586 
3587   ROM_REGION( 0x100, "proms", 0 )
3588   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3589ROM_END
3590 
3591ROM_START( pepp0488 ) /* Normal board : Standard Draw Poker (PP0488) - 01/12/95   @ IGT  L95-0175 */
3592/*
3593PayTable   Js+  TP  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3594--------------------------------------------------------
3595  ????      1    1   2   4    5   8  25  50 250   1000
3596  % Range: 98.4-100.4%  Optimum: 102.4%  Hit Frequency: ???
3597 
3598NOTE: Will work with the standard CG740 + CAP740 graphics for a non-localized game.
3599*/
3600   ROM_REGION( 0x10000, "maincpu", 0 )
3601   ROM_LOAD( "pp0488_a30-a4v.u68",   0x00000, 0x10000, CRC(99849f5d) SHA1(643a303beda1c4a4619803071df5e612ab922eb9) ) /* Game Version: A30, Library Version: A4V */
3602 
3603   ROM_REGION( 0x020000, "gfx1", 0 )
3604   ROM_LOAD( "mro-cg2153.u72",   0x00000, 0x8000, CRC(004c9c8e) SHA1(ec3fa9d2c658de59e722d9979513d6b0c71d5742) ) /*  05/01/95   @ IGT  L95-1123  */
3605   ROM_LOAD( "mgo-cg2153.u73",   0x08000, 0x8000, CRC(e6843b35) SHA1(2d5219a3cb054ce8b470797c0496c7e24e94ed81) )
3606   ROM_LOAD( "mbo-cg2153.u74",   0x10000, 0x8000, CRC(e3e28611) SHA1(d040f1df6203dc0bd6a79a391fb90fb930f8dd1a) ) /* Custom Arizona Charlie's Casino graphics */
3607   ROM_LOAD( "mxo-cg2153.u75",   0x18000, 0x8000, CRC(3ae44f7e) SHA1(00d625b60bffef6ce622cb50a3aa93b92131f578) )
3608 
3609   ROM_REGION( 0x100, "proms", 0 )
3610   ROM_LOAD( "cap2153.u50", 0x0000, 0x0100, CRC(d02fca7e) SHA1(4384b4238d487b4c763983b27381f4c6c08eb605) ) /* BPROM type N82S135N verified */
3611ROM_END
3612 
3613ROM_START( pepp0508 ) /* Normal board : Loose Deuce Poker (PP0508) */
3614/*
3615                                       w/D     W/oD
3616PayTable   3K  STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3617-----------------------------------------------------------
3618  P313A     1    2   2   3   4   8  12  25 500 250    800
3619  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.2%
3620     Programs Available: PP0508, X000508P
3621*/
3622   ROM_REGION( 0x10000, "maincpu", 0 )
3623   ROM_LOAD( "pp0508_872-888.u68",   0x00000, 0x10000, CRC(41da6c1e) SHA1(75dc178bc48a58ccf7e87d91419c5dcd99af2d58) ) /* Game Version: 872, Library Version: 888 */
3624 
3625   ROM_REGION( 0x020000, "gfx1", 0 )
3626   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
3627   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
3628   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
3629   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
3630 
3631   ROM_REGION( 0x100, "proms", 0 )
3632   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3633ROM_END
3634 
3635ROM_START( pepp0509 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0509) */
3636/*
3637PayTable   Js+  TP  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3638--------------------------------------------------------
3639  ????      1    2   3    4   6  10  25  50 250    800
3640  % Range: 95.3-97.3%  Optimum: 99.3%  Hit Frequency: 45.4%
3641     Programs Available: PP0509
3642*/
3643   ROM_REGION( 0x10000, "maincpu", 0 )
3644   ROM_LOAD( "pp0509_783-779.u68",   0x00000, 0x10000, CRC(a7c9b166) SHA1(3565070b9beba9aa50662253cafafa00f4f5abfa) ) /* Game Version: 782, Library Version: 779 */
3645 
3646   ROM_REGION( 0x020000, "gfx1", 0 )
3647   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3648   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3649   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3650   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3651 
3652   ROM_REGION( 0x100, "proms", 0 )
3653   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3654ROM_END
3655 
3656ROM_START( pepp0510 ) /* Normal board : Standard Draw Poker (PP0510) */
3657/*
3658PayTable   Js+  TP  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3659--------------------------------------------------------
3660  ????      1    2   3    4   7   9  25  50 250    800
3661  % Range: 95.3-97.3%  Optimum: 99.3%  Hit Frequency: 45.4%
3662     Programs Available: PP0510
3663*/
3664   ROM_REGION( 0x10000, "maincpu", 0 )
3665   ROM_LOAD( "pp0510_782-779.u68",   0x00000, 0x10000, CRC(40ce3464) SHA1(230725ac3dd6eb6f891d4abfbcb4c41592531d4e) ) /* Game Version: 782, Library Version: 779 */
3666 
3667   ROM_REGION( 0x020000, "gfx1", 0 )
3668   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3669   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3670   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3671   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3672 
3673   ROM_REGION( 0x100, "proms", 0 )
3674   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3675ROM_END
3676 
3677ROM_START( pepp0514 ) /* Normal board : Double Bonus Poker (PP0514) */
3678/*
3679                                      5-K 2-4
3680PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3681-----------------------------------------------------------------
3682  P323A     1    1    3   5    7   9  50  80 160  50 250    800
3683  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
3684     Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only
3685*/
3686   ROM_REGION( 0x10000, "maincpu", 0 )
3687   ROM_LOAD( "pp0514_a46-a75.u68",   0x00000, 0x10000, CRC(53ca68c7) SHA1(2c46c89c6347bb8cf80b0ff85daabd0e925c87ec) ) /* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
3688 
3689   ROM_REGION( 0x020000, "gfx1", 0 )
3690   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3691   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3692   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3693   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3694 
3695   ROM_REGION( 0x100, "proms", 0 )
3696   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3697ROM_END
3698 
3699ROM_START( pepp0514a ) /* Normal board : Double Bonus Poker (PP0514) */
3700/*
3701                                      5-K 2-4
3702PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3703-----------------------------------------------------------------
3704  P323A     1    1    3   5    7   9  50  80 160  50 250    800
3705  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
3706     Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only
3707*/
3708   ROM_REGION( 0x10000, "maincpu", 0 )
3709   ROM_LOAD( "pp0514_a0n-a0y.u68",   0x00000, 0x10000, CRC(2d54260d) SHA1(cf891c5624331f9b2ef7fbb1e084cfc00f407691) ) /* Game Version: A0N, Library Version: A0Y */
3710 
3711   ROM_REGION( 0x020000, "gfx1", 0 )
3712   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3713   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3714   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3715   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3716 
3717   ROM_REGION( 0x100, "proms", 0 )
3718   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3719ROM_END
3720 
3721ROM_START( pepp0514b ) /* Normal board : Double Bonus Poker (PP0514) */
3722/*
3723                                      5-K 2-4
3724PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3725-----------------------------------------------------------------
3726  P323A     1    1    3   5    7   9  50  80 160  50 250    800
3727  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
3728     Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only
3729*/
3730   ROM_REGION( 0x10000, "maincpu", 0 )
3731   ROM_LOAD( "pp0514_813-824.u68",   0x00000, 0x10000, CRC(a4093ba7) SHA1(f4691af323a14bd4856aed84f1333bac285513ba) ) /* Game Version: 813, Library Version: 824 */
3732 
3733   ROM_REGION( 0x020000, "gfx1", 0 )
3734   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3735   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3736   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3737   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3738 
3739   ROM_REGION( 0x100, "proms", 0 )
3740   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3741ROM_END
3742 
3743ROM_START( pepp0515 ) /* Normal board : Double Bonus Poker (PP0515) */
3744/*
3745                                      5-K 2-4
3746PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3747-----------------------------------------------------------------
3748  P324A     1    1    3   5    7  10  50  80 160  50 250    800
3749  % Range: 96.2-98.2%  Optimum: 100.2%  Hit Frequency: 43.3%
3750     Programs Available: PP0515, X000515P & PP0539 - Non Double-up Only
3751*/
3752   ROM_REGION( 0x10000, "maincpu", 0 )
3753   ROM_LOAD( "pp0515_989-974.u68",   0x00000, 0x10000, CRC(bc9654ab) SHA1(ecf2401bfbfcfa22354cde517cf425a8db8ea961) ) /* Game Version: 989, Library Version: 974 */
3754 
3755   ROM_REGION( 0x020000, "gfx1", 0 )
3756   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3757   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3758   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3759   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3760 
3761   ROM_REGION( 0x100, "proms", 0 )
3762   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3763ROM_END
3764 
3765ROM_START( pepp0515a ) /* Normal board : Double Bonus Poker (PP0515) */
3766/*
3767                                      5-K 2-4
3768PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3769-----------------------------------------------------------------
3770  P324A     1    1    3   5    7  10  50  80 160  50 250    800
3771  % Range: 96.2-98.2%  Optimum: 100.2%  Hit Frequency: 43.3%
3772     Programs Available: PP0515, X000515P & PP0539 - Non Double-up Only
3773*/
3774   ROM_REGION( 0x10000, "maincpu", 0 )
3775   ROM_LOAD( "pp0515_813-824.u68",   0x00000, 0x10000, CRC(6c06b0ea) SHA1(7907d10d7290080c33e46c9644f24d1d2fc6b3ff) ) /* Game Version: 813, Library Version: 824 */
3776 
3777   ROM_REGION( 0x020000, "gfx1", 0 )
3778   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3779   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3780   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3781   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3782 
3783   ROM_REGION( 0x100, "proms", 0 )
3784   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3785ROM_END
3786 
3787ROM_START( pepp0516 ) /* Normal board : Double Bonus Poker (PP0516) */
3788/*
3789                                      5-K 2-4
3790PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3791-----------------------------------------------------------------
3792  P325A     1    2    3   4    5   8  50  80 160  50 250    800
3793  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 44.5%
3794     Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only
3795*/
3796   ROM_REGION( 0x10000, "maincpu", 0 )
3797   ROM_LOAD( "pp0516_a46-a75.u68",   0x00000, 0x10000, CRC(6e226711) SHA1(71930ec43c4b75ca50971242be79459976882546) ) /* Game Version: A46, Library Version: A75 */
3798 
3799   ROM_REGION( 0x020000, "gfx1", 0 )
3800   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3801   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3802   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3803   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3804 
3805   ROM_REGION( 0x100, "proms", 0 )
3806   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3807ROM_END
3808 
3809ROM_START( pepp0516a ) /* Normal board : Double Bonus Poker (PP0516) */
3810/*
3811                                      5-K 2-4
3812PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3813-----------------------------------------------------------------
3814  P325A     1    2    3   4    5   8  50  80 160  50 250    800
3815  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 44.5%
3816     Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only
3817*/
3818   ROM_REGION( 0x10000, "maincpu", 0 )
3819   ROM_LOAD( "pp0516_974-a0y.u68",   0x00000, 0x10000, CRC(d9da6e13) SHA1(421678d9cb42daaf5b21074cc3900db914dd26cf) ) /* Game Version: 974, Library Version: A0Y */
3820 
3821   ROM_REGION( 0x020000, "gfx1", 0 )
3822   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3823   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3824   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3825   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3826 
3827   ROM_REGION( 0x100, "proms", 0 )
3828   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3829ROM_END
3830 
3831ROM_START( pepp0516b ) /* Normal board : Double Bonus Poker (PP0516) - Multi Regional / Multi Currency - Tournament Mode capable */
3832/*
3833                                      5-K 2-4
3834PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3835-----------------------------------------------------------------
3836  P325A     1    2    3   4    5   8  50  80 160  50 250    800
3837  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 44.5%
3838     Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only
3839*/
3840   ROM_REGION( 0x10000, "maincpu", 0 )
3841   ROM_LOAD( "pp0516_a57-a7b.u68",   0x00000, 0x10000, CRC(66e16822) SHA1(552b5ff582197f39823c8c87a9429d3fc2117814) ) /* Game Version: A57, Library Version: A7B */
3842 
3843   ROM_REGION( 0x020000, "gfx1", 0 )
3844   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
3845   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
3846   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
3847   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
3848 
3849   ROM_REGION( 0x100, "proms", 0 )
3850   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3851ROM_END
3852 
3853ROM_START( pepp0531 ) /* Normal board : Joker Poker (PP0531) */
3854/*
3855                                            w/J     w/oJ
3856PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3857----------------------------------------------------------------
3858 P182A      1    1   2   3    5   8  15  50 100 200 400    800
3859  % Range: 93.6-95.6%  Optimum: 97.6%  Hit Frequency: 44.1%
3860     Programs Available: PP0531
3861*/
3862   ROM_REGION( 0x10000, "maincpu", 0 )
3863   ROM_LOAD( "pp0531_979-a0c.u68",   0x00000, 0x10000, CRC(6138e095) SHA1(6075613b5d818c26cdc5da1d05cff3af5d4cbf01) ) /* Game Version: 979, Library Version: A0C */
3864 
3865   ROM_REGION( 0x020000, "gfx1", 0 )
3866   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3867   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3868   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3869   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3870 
3871   ROM_REGION( 0x100, "proms", 0 )
3872   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3873ROM_END
3874 
3875ROM_START( pepp0536 ) /* Normal board : Joker Poker (PP0536) */
3876/*
3877                                            w/J     w/oJ
3878PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3879----------------------------------------------------------------
3880 P244D      1    1   2   3    5   7  17  50 100 200 400    940
3881  % Range: 94.4-96.4%  Optimum: 98.4%  Hit Frequency: 44.1%
3882     Programs Available: PP0536, X000536P
3883*/
3884   ROM_REGION( 0x10000, "maincpu", 0 )
3885   ROM_LOAD( "pp0536_a45-a74.u68",   0x00000, 0x10000, CRC(413f34fa) SHA1(1800819af18b33936482562bfe694009861a740f) ) /* Game Version: A45, Library Version: A74 */
3886 
3887   ROM_REGION( 0x020000, "gfx1", 0 )
3888   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3889   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3890   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3891   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3892 
3893   ROM_REGION( 0x100, "proms", 0 )
3894   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3895ROM_END
3896 
3897ROM_START( pepp0538 ) /* Normal board : Double Bonus Poker (No Double-up) (PP0538) */
3898/*
3899                                      5-K 2-4
3900PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3901-----------------------------------------------------------------
3902  P323A     1    1    3   5    7   9  50  80 160  50 250    800
3903  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
3904     Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only
3905*/
3906   ROM_REGION( 0x10000, "maincpu", 0 )
3907   ROM_LOAD( "pp0538_a46-a75.u68",   0x00000, 0x10000, CRC(f9e8dbe7) SHA1(dd745a48764f7da7314236016bf9c7fa67a78fad) ) /* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
3908 
3909   ROM_REGION( 0x020000, "gfx1", 0 )
3910   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3911   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3912   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3913   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3914 
3915   ROM_REGION( 0x100, "proms", 0 )
3916   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3917ROM_END
3918 
3919ROM_START( pepp0540 ) /* Normal board : Double Bonus Poker (No Double-up) (PP0540) */
3920/*
3921                                      5-K 2-4
3922PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3923-----------------------------------------------------------------
3924  P325A     1    2    3   4    5   8  50  80 160  50 250    800
3925  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 44.5%
3926     Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only
3927*/
3928   ROM_REGION( 0x10000, "maincpu", 0 )
3929   ROM_LOAD( "pp0540_974-a0y.u68",   0x00000, 0x10000, CRC(b39e0c13) SHA1(a0dd05eb2927792efb1f432dbbd4a9a4fd6ad4c9) ) /* Game Version: 974, Library Version: A0Y */
3930 
3931   ROM_REGION( 0x020000, "gfx1", 0 )
3932   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3933   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3934   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3935   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3936 
3937   ROM_REGION( 0x100, "proms", 0 )
3938   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3939ROM_END
3940 
3941ROM_START( pepp0542 ) /* Normal board : One Eyed Jacks (PP0542) Use SET001 to set Denomination for this game */
3942/*
3943                                             With    w/o
3944                                             Wild    Wild
3945PayTable    As  2PR  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3946-----------------------------------------------------------------
3947  ????       1   1    1   2    4   5  10  50 100 100 400   1600
3948  % Range: 94.8-96.8%  Optimum: 98.8%  Hit Frequency: 44.5%
3949*/
3950   ROM_REGION( 0x10000, "maincpu", 0 )
3951   ROM_LOAD( "pp0542_905-923.u68",   0x00000, 0x10000, CRC(f4fe3db5) SHA1(18521a569aae8d89e82f9709edc03badae153dd4) ) /* Game Version: 905, Library Version: 923 */
3952 
3953   ROM_REGION( 0x020000, "gfx1", 0 )
3954   ROM_LOAD( "mro-cg2020.u72",  0x00000, 0x8000, CRC(3dc6f3f6) SHA1(c701f3b0fa16a614c9a4094f385c3f75d72cef3b) ) /* CG2020, like 20/20 vision for 1 Eyed Jacks :-) */
3955   ROM_LOAD( "mgo-cg2020.u73",  0x08000, 0x8000, CRC(71847102) SHA1(a860ef28351f0b7b82c05db26712d50a6f5d3732) ) /* Superseded by CG2243 which also works */
3956   ROM_LOAD( "mbo-cg2020.u74",  0x10000, 0x8000, CRC(710c717c) SHA1(4e2d463c9f94d446149374d5f66f88d403bd6064) )
3957   ROM_LOAD( "mxo-cg2020.u75",  0x18000, 0x8000, CRC(78d6eac3) SHA1(09b614abe5f5509f3050c2cec94dc794e2b4db0d) )
3958 
3959   ROM_REGION( 0x100, "proms", 0 )
3960   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3961ROM_END
3962 
3963ROM_START( pepp0568 ) /* Normal board : Joker Poker (PP0568) */
3964/*
3965                                            w/J     w/oJ
3966PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3967----------------------------------------------------------------
3968   YD       1    1   1   3    5   7  15  50 100 200 400    940
3969  % Range: 92.7-94.7%  Optimum: 96.7%  Hit Frequency: 44.1%
3970     Programs Available: PP0568, X000568P & PP0426 - Non Double-up Only
3971*/
3972   ROM_REGION( 0x10000, "maincpu", 0 )
3973   ROM_LOAD( "pp0568_a45-a74.u68",   0x00000, 0x10000, CRC(a1015eef) SHA1(074dcd966a5da6867532c6e90e2bc98404c2247b) ) /* Game Version: A45, Library Version: A74 */
3974 
3975   ROM_REGION( 0x020000, "gfx1", 0 )
3976   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3977   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3978   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3979   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3980 
3981   ROM_REGION( 0x100, "proms", 0 )
3982   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3983ROM_END
3984 
3985ROM_START( pepp0585 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0585) */
3986/*
3987 
3988PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3989----------------------------------------------------------
3990  P11A      1    2    3    4    5   9  25  50 250    800
3991  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
3992     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
3993*/
3994   ROM_REGION( 0x10000, "maincpu", 0 )
3995   ROM_LOAD( "pp0585_956-979.u68",   0x00000, 0x10000, CRC(419633df) SHA1(f755e7b6cdd95444a02d2172789d9d73f31f56c4) ) /* Game Version: 956, Library Version: 979 */
3996 
3997   ROM_REGION( 0x020000, "gfx1", 0 )
3998   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3999   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
4000   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
4001   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
4002 
4003   ROM_REGION( 0x100, "proms", 0 )
4004   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4005ROM_END
4006 
4007ROM_START( pepp0713 ) /* Normal board : Bonus Poker Deluxe (No Double-up) (PP0713) */
4008/*
4009PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4010----------------------------------------------------------
4011  P200A     1    1    3    4    6   8  80  50 250    800
4012  % Range: 94.5-96.5%  Optimum: 98.5%  Hit Frequency: 45.2%
4013     Programs Available: PP0434, X000434P & PP0713 - Non Double-up Only
4014*/
4015   ROM_REGION( 0x10000, "maincpu", 0 )
4016   ROM_LOAD( "pp0713_979-a0c.u68",   0x00000, 0x10000, CRC(f3413bc6) SHA1(9cad89a5ab4be1f969e9acbafe2016069d4ee307) ) /* Game Version: 979, Library Version: A0C */
4017 
4018   ROM_REGION( 0x020000, "gfx1", 0 )
4019   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4020   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4021   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4022   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4023 
4024   ROM_REGION( 0x100, "proms", 0 )
4025   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4026ROM_END
4027 
4028ROM_START( pepp0725 ) /* Normal board : Double Bonus Poker (PP0725) */
4029/*
4030                                      5-K 2-4
4031PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
4032-----------------------------------------------------------------
4033  P434A     1    1    3   4    6   9  50  80 160  50 250    800
4034  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.9%
4035     Programs Available: PP0725, X000725P
4036*/
4037   ROM_REGION( 0x10000, "maincpu", 0 )
4038   ROM_LOAD( "pp0725_a46-a75.u68",   0x00000, 0x10000, CRC(6679f095) SHA1(4cca3103610a75c8e515957ebea0cd75052a1100) )/* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
4039 
4040   ROM_REGION( 0x020000, "gfx1", 0 )
4041   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4042   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4043   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4044   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4045 
4046   ROM_REGION( 0x100, "proms", 0 )
4047   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4048ROM_END
4049 
4050ROM_START( pepp0725a ) /* Normal board : Double Bonus Poker (PP0725) */
4051/*
4052                                      5-K 2-4
4053PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
4054-----------------------------------------------------------------
4055  P434A     1    1    3   4    6   9  50  80 160  50 250    800
4056  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.9%
4057     Programs Available: PP0725, X000725P
4058*/
4059   ROM_REGION( 0x10000, "maincpu", 0 )
4060   ROM_LOAD( "pp0725_a0n-a23.u68",   0x00000, 0x10000, CRC(70ecbe80) SHA1(d44acbaccfe9a8f7cb1217d071353d221f5baa35) )/* Game Version: A0N, Library Version: A23, Video Lib ver: A0Y */
4061 
4062   ROM_REGION( 0x020000, "gfx1", 0 )
4063   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4064   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4065   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4066   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4067 
4068   ROM_REGION( 0x100, "proms", 0 )
4069   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4070ROM_END
4071 
4072ROM_START( pepp0726 ) /* Normal board : Double Bonus Poker (PP0726) */
4073/*
4074                                      5-K 2-4
4075PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
4076-----------------------------------------------------------------
4077  P435A     1    1    3   4    5   8  50  80 160  50 250    800
4078  % Range: 90.2-92.2%  Optimum: 94.2%  Hit Frequency: 45.1%
4079     Programs Available: PP0726, X000726P
4080*/
4081   ROM_REGION( 0x10000, "maincpu", 0 )
4082   ROM_LOAD( "pp0726_a46-a75.u68",   0x00000, 0x10000, CRC(7d80c8d7) SHA1(18ca72925c8bb5f5dcc00fa4133816f242292e1d) )/* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
4083 
4084   ROM_REGION( 0x020000, "gfx1", 0 )
4085   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4086   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4087   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4088   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4089 
4090   ROM_REGION( 0x100, "proms", 0 )
4091   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4092ROM_END
4093 
4094ROM_START( pepp0728 ) /* Normal board : Double Bonus Poker (PP0728) - 11/30/95   @ IGT  L96-0247 */
4095/*
4096                                      5-K 2-4
4097PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
4098-----------------------------------------------------------------
4099P437A/4K/5  1    1    3   4    5   6  50  80 160  50 250    800
4100  % Range: 87.1-89.1%  Optimum: 91.1%  Hit Frequency: 45.0%
4101     Programs Available: PP0728
4102*/
4103   ROM_REGION( 0x10000, "maincpu", 0 )
4104   ROM_LOAD( "pp0728_a46-a75.u68",   0x00000, 0x10000, CRC(ecfbdb77) SHA1(072dc5d59b6a705591045162612b5101e85e1b10) )/* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
4105 
4106   ROM_REGION( 0x020000, "gfx1", 0 )
4107   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4108   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4109   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4110   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4111 
4112   ROM_REGION( 0x100, "proms", 0 )
4113   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4114ROM_END
4115 
4116ROM_START( pepp0760 ) /* Normal board : Double Down Stud Poker (PP0760) */
4117/*
4118PayTable  8s-10s  Js+  2PR  3K   STR  FL  FH  4K  SF   RF  (Bonus)
4119------------------------------------------------------------------
4120  ????      1      2    3    4    6    9  12  50 200  1000  4000
4121*/
4122   ROM_REGION( 0x10000, "maincpu", 0 )
4123   ROM_LOAD( "pp0760_a4v-a6d.u68",   0x00000, 0x10000, CRC(1c26076c) SHA1(612ac66bbb0827b81dc9c6bc23fa7558445481bc) ) /* Game Version: A4V, Library Version: A6D */
4124 
4125   ROM_REGION( 0x020000, "gfx1", 0 )
4126   ROM_LOAD( "mro-cg2015.u72",   0x00000, 0x8000, CRC(7f73ee5c) SHA1(b6c5d423c8176555c1f32605c328ffbfcf94b656) ) /* Verified CG set for PP0760 set */
4127   ROM_LOAD( "mgo-cg2015.u73",   0x08000, 0x8000, CRC(de270e0e) SHA1(41b207f9380f623ab64dc42224275cccd43417ee) )
4128   ROM_LOAD( "mbo-cg2015.u74",   0x10000, 0x8000, CRC(02e623d9) SHA1(4c689293f5c5a8eb0b17861cf433ae1e01d83545) )
4129   ROM_LOAD( "mxo-cg2015.u75",   0x18000, 0x8000, CRC(0c96b7fc) SHA1(adde93f08db0b957daf77d57a7ab60af3b667f25) )
4130 
4131   ROM_REGION( 0x100, "proms", 0 )
4132   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4133ROM_END
4134 
4135ROM_START( pepp0763 ) /* Normal board : 4 of a Kind Bonus Poker (PP0763) */
4136/*
4137                                       5-K 2-4
4138PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
4139------------------------------------------------------------------
4140 P597A      1    1    3    5    8  10  25  40  80  50 250    800
4141  % Range: 90.2-92.2%  Optimum: 94.2%  Hit Frequency: 42.7%
4142     Programs Available: PP0763, X000763P
4143*/
4144   ROM_REGION( 0x10000, "maincpu", 0 )
4145   ROM_LOAD( "pp0763_a46-a75.u68",   0x00000, 0x10000, CRC(8e329f30) SHA1(bf271164a4e90e11630a236fb55c70639bdb3e11) ) /* Game Version: A46, Library Version: A75, Game Lib ver: A0Y */
4146 
4147   ROM_REGION( 0x020000, "gfx1", 0 )
4148   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4149   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4150   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4151   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4152 
4153   ROM_REGION( 0x100, "proms", 0 )
4154   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4155ROM_END
4156 
4157ROM_START( pepp0775 ) /* Normal board : Royal Deuces Poker or Royal Sevens Poker?? (PP0775) */
4158/*
4159Paytable for Royal Deuces lined up with paytable from PP0775:
4160 
4161                                        w/D     w/oD
4162PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
4163------------------------------------------------------------
4164  ????      1    1    3   4   5   8  25  80 250 250    800
4165  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: ???
4166     Programs Available: PP0775
4167*/
4168   ROM_REGION( 0x10000, "maincpu", 0 )
4169   ROM_LOAD( "pp0775_a44-a73.u68",   0x00000, 0x10000, CRC(79a56642) SHA1(dfde6c12551e4f12a59e31c14fbfb9edb57e4fac) ) /* Game Version: A44, Library Version: A73 */
4170 
4171   ROM_REGION( 0x020000, "gfx1", 0 )
4172   ROM_LOAD( "mro-cg2xxx.u72",  0x00000, 0x8000, NO_DUMP ) /* Unknown set needed for correct paytable graphics */
4173   ROM_LOAD( "mgo-cg2xxx.u73",  0x08000, 0x8000, NO_DUMP )
4174   ROM_LOAD( "mbo-cg2xxx.u74",  0x10000, 0x8000, NO_DUMP )
4175   ROM_LOAD( "mxo-cg2xxx.u75",  0x18000, 0x8000, NO_DUMP )
4176   ROM_LOAD( "mro-cg2312.u77",  0x00000, 0x8000, CRC(29a9d408) SHA1(af8c18833ea268b80fabf3b539f35c6782a0309d) ) /* WRONG?!?! Use until the correct set is verified! */
4177   ROM_LOAD( "mgo-cg2312.u78",  0x08000, 0x8000, CRC(b5ea2602) SHA1(82ee6d45dbc53ccf2d2a956daa83f41bb4a27384) ) /* Gives full paytable, but the hands listed are wrong */
4178   ROM_LOAD( "mbo-cg2312.u79",  0x10000, 0x8000, CRC(e349202c) SHA1(ef6a904112361425aef5824ae983c15d3456dc49) )
4179   ROM_LOAD( "mxo-cg2312.u80",  0x18000, 0x8000, CRC(1e0d3df8) SHA1(716d6bd2b41ef41a7da393e805651c378a16e00e) ) /* These graphics don't seem to work with anything else */
4180 
4181   ROM_REGION( 0x200, "proms", 0 )
4182   ROM_LOAD( "capx2312.u43", 0x0000, 0x0200, CRC(66971da6) SHA1(6984a68bc2f01009ad6a7a0705c00e715c29bb65) )
4183ROM_END
4184 
4185ROM_START( pepp0816 ) /* Normal board : Treasure Chest Poker (PP0816) */
4186/*
4187PayTable   Js+  2PR  3K   STR  FL  FH  4K* SF  RF  (Bonus)
4188----------------------------------------------------------
4189  ????      1    2    3    4    5   7  25  50 250    800
4190  % Range: 94.4-96.4%  Optimum: 98.4%  Hit Frequency: 45.5%
4191     Programs Available: PP0816
4192 
41934K* - Treasure Chest bonus round for MAX Bet 4 of a Kind. Possible payouts: 140, 180, 250, 500 or 5000 Credits
4194 
4195 The Treasure Chest routine works as follows:
4196  1. The chest picked is used for animation purposes only. The chest DOES NOT determine the payout.
4197  2. A call is made to the random number generator for a number between 0 and 399 (400 possibilities)
4198  3. The number generated is used through a look up table to determine the bonus prize:
4199 
4200Number Generated  Award   Odds   Chance
4201-----------------------------------------
4202               0  5000   0.25%   1 in 400
4203   1 through  12  500    3.00%  12 in 400
4204  13 through  28  250    4.00%  16 in 400
4205  29 through  88  180   15.00%  60 in 400
4206  89 through 399  140   77.75% 311 in 400
4207 
4208Overall average for the 4 of a Kind bonus is 173.35 credits
4209 
4210*/
4211   ROM_REGION( 0x10000, "maincpu", 0 )
4212   ROM_LOAD( "pp0816_a5f-a7k.u68",   0x00000, 0x10000, CRC(a1e21b56) SHA1(aa0a730b2ed48612c3b20831b1aa698a45f557c0) ) /* Game Version: A5F, Library Version: A7K */
4213 
4214   ROM_REGION( 0x020000, "gfx1", 0 )
4215   ROM_LOAD( "mro-cg2xxx.u72",  0x00000, 0x8000, NO_DUMP ) /* Unknown set needed for Treasure Chest bonus round graphics */
4216   ROM_LOAD( "mgo-cg2xxx.u73",  0x08000, 0x8000, NO_DUMP )
4217   ROM_LOAD( "mbo-cg2xxx.u74",  0x10000, 0x8000, NO_DUMP )
4218   ROM_LOAD( "mxo-cg2xxx.u75",  0x18000, 0x8000, NO_DUMP )
4219   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /* WRONG CG set!! MAX Bet 4K "BONUS" graphics is missing and */
4220   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) ) /* all treasure chest graphics missing for bonus & attract screens */
4221   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) )
4222   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
4223 
4224   ROM_REGION( 0x100, "proms", 0 )
4225   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4226ROM_END
4227 
4228ROM_START( peip0028 ) /* Normal board :  Joker Poker - French (IP0028) */
4229/*
4230                                            w/J     w/oJ
4231PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4232----------------------------------------------------------------
4233 PI106B     1    1   2   3    5   6  20  50 100 200 500   1000
4234  % Range: 89.5-91.5%  Optimum: 93.5%  Hit Frequency: 39.2%
4235     Programs Available: IP0028
4236 
4237NOTE: Program states Theoretical Percentage (Pourcentage Theorique) of 90.2% but it's really 93.5%
4238      This program set is superseded by IP0074
4239*/
4240   ROM_REGION( 0x10000, "maincpu", 0 )
4241   ROM_LOAD( "ip0028_ipp023.u68",   0x00000, 0x8000, CRC(011ddb51) SHA1(8734ddd1f06986efdb0bd83b2bc0a2303273dba9) )
4242   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4243 
4244   ROM_REGION( 0x020000, "gfx1", 0 )
4245   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4246   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4247   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4248   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4249 
4250   ROM_REGION( 0x100, "proms", 0 )
4251   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4252ROM_END
4253 
4254ROM_START( peip0029 ) /* Normal board : Joker Poker - French (IP0029) */
4255/*
4256                                            w/J     w/oJ
4257PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4258----------------------------------------------------------------
4259 PI105A     1    1   2   3    4   5  20  40 100 200 500    800
4260  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.3%
4261     Programs Available: IP0029
4262 
4263NOTE: Program states Theoretical Percentage (Pourcentage Theorique) of 93.3% but it's really 95.0%
4264      This program set is superseded by IP0062
4265*/
4266   ROM_REGION( 0x10000, "maincpu", 0 )
4267   ROM_LOAD( "ip0029_ipp023.u68",   0x00000, 0x8000, CRC(b79f91b0) SHA1(b6bed855497153121cb11d84836a737743124635) )
4268   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4269 
4270   ROM_REGION( 0x020000, "gfx1", 0 )
4271   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4272   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4273   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4274   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4275 
4276   ROM_REGION( 0x100, "proms", 0 )
4277   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4278ROM_END
4279 
4280ROM_START( peip0031 ) /* Normal board : Standard Draw Poker - French (IP0031) */
4281/*
4282PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4283----------------------------------------------------------
4284  PI34G     1    2    3    4    5   6  25  50 250    333
4285  % Range: 88.2-90.2%  Optimum: 92.2%  Hit Frequency: 45.5%
4286     Programs Available: IP0031
4287*/
4288   ROM_REGION( 0x10000, "maincpu", 0 )
4289   ROM_LOAD( "ip0031_ipp023.u68",   0x00000, 0x8000, CRC(06a22972) SHA1(189de42bf4611bc4cda08f9fa2c1f03b40222681) )
4290   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4291 
4292   ROM_REGION( 0x020000, "gfx1", 0 )
4293   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4294   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4295   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4296   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4297 
4298   ROM_REGION( 0x100, "proms", 0 )
4299   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4300ROM_END
4301 
4302ROM_START( peip0041 ) /* Normal board : Double Deuces Wild - French (IP0041) */
4303/*
4304                                       w/J     w/oJ
4305PayTable   3K  STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
4306-----------------------------------------------------------
4307 PI13A      1   2    2   3   4  11  16  25 400 250    800
4308  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.1%
4309     Programs Available: IP0041
4310 
4311"Wild Deuces" are referred to as "Joker" in the program
4312 
4313*/
4314   ROM_REGION( 0x10000, "maincpu", 0 )
4315   ROM_LOAD( "ip0041_ip103-il103.u68",   0x00000, 0x10000, CRC(cf3e66eb) SHA1(d93c25954e3a73533025b7e85562fe2e19021b61) ) /* Game Version: IP103, Library Version: IL103 */
4316 
4317   ROM_REGION( 0x020000, "gfx1", 0 )
4318   ROM_LOAD( "mro-cg1293.u72",  0x00000, 0x8000, CRC(de4b2287) SHA1(5f8232748dd59c9dd6278b68ff35a100f4561d5e) )
4319   ROM_LOAD( "mgo-cg1293.u73",  0x08000, 0x8000, CRC(1399b459) SHA1(d4952452b5155902cb172be1df0be91a547a59a9) )
4320   ROM_LOAD( "mbo-cg1293.u74",  0x10000, 0x8000, CRC(76152774) SHA1(3356e144d8dacbd3a1a72dda282b22e4fee3c782) )
4321   ROM_LOAD( "mxo-cg1293.u75",  0x18000, 0x8000, CRC(fe0ad2a7) SHA1(54ec1b5c3446bf70bdca521583ed2a1eb1557004) )
4322 
4323   ROM_REGION( 0x100, "proms", 0 )
4324   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
4325ROM_END
4326 
4327ROM_START( peip0051 ) /* Normal board : Joker Poker - French (IP0051) */
4328/*
4329                                            w/J     w/oJ
4330PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4331----------------------------------------------------------------
4332 PI106A     1    1   2   3    5   6  20  50 100 200 500    800
4333  % Range: 89.0-91.0%  Optimum: 93.0%  Hit Frequency: 39.2%
4334     Programs Available: IP0051, X002319P
4335*/
4336   ROM_REGION( 0x10000, "maincpu", 0 )
4337   ROM_LOAD( "ip0051_ip101-il101.u68",   0x00000, 0x10000, CRC(25149a28) SHA1(211772751263ad30f073a23de0a81ef6ab72a85f) ) /* Game Version: IP101, Library Version: IL101 */
4338 
4339   ROM_REGION( 0x020000, "gfx1", 0 )
4340   ROM_LOAD( "mro-cg2094.u72",   0x00000, 0x8000, CRC(7c1810e0) SHA1(ec11740f393178d4f5c0506a64e3f996bc6d867c) )
4341   ROM_LOAD( "mgo-cg2094.u73",   0x08000, 0x8000, CRC(9f4dfe16) SHA1(bf5fdabd72fe259c7a489e77bd7a3d5a14062ce1) )
4342   ROM_LOAD( "mbo-cg2094.u74",   0x10000, 0x8000, CRC(697fa8cf) SHA1(4dff9a110ac987a25518295dfdc46eb3a46c3215) )
4343   ROM_LOAD( "mxo-cg2094.u75",   0x18000, 0x8000, CRC(d1a9c781) SHA1(8ee6a2fab99be7b2b95603c6420788c5d1143788) )
4344 
4345   ROM_REGION( 0x100, "proms", 0 )
4346   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
4347ROM_END
4348 
4349ROM_START( peip0058 ) /* Normal board : Standard Draw Poker - French (IP0058) */
4350/*
4351PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4352----------------------------------------------------------
4353  ????      1    1    3    6    7  10  25 100 250    800
4354  % Range: 88.0-90.0%  Optimum: 92.0%  Hit Frequency: 45.6%
4355     Programs Available: IP0058
4356*/
4357   ROM_REGION( 0x10000, "maincpu", 0 )
4358   ROM_LOAD( "ip0058_ipp023.u68",   0x00000, 0x8000, CRC(db2aae6c) SHA1(398a52a73d4a0f71c09dfc4c7cf0c0a5c65ee941) )
4359   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4360 
4361   ROM_REGION( 0x020000, "gfx1", 0 )
4362   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4363   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4364   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4365   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4366 
4367   ROM_REGION( 0x100, "proms", 0 )
4368   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4369ROM_END
4370 
4371ROM_START( peip0062 ) /* Normal board : Joker Poker - French (IP0062) */
4372/*
4373                                            w/J     w/oJ
4374PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4375----------------------------------------------------------------
4376 PI105A     1    1   2   3    4   5  20  40 100 200 500    800
4377  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.3%
4378     Programs Available: IP0062, X002318P
4379*/
4380   ROM_REGION( 0x10000, "maincpu", 0 )
4381   ROM_LOAD( "ip0062_ip105-il105.u68",   0x00000, 0x10000, CRC(bda6ae80) SHA1(8287306cd85fbe13f92fed24f0ca1c92dc19ed35) ) /* Game Version: IP105, Library Version: IL105 */
4382 
4383   ROM_REGION( 0x020000, "gfx1", 0 )
4384   ROM_LOAD( "mro-cg2094.u72",   0x00000, 0x8000, CRC(7c1810e0) SHA1(ec11740f393178d4f5c0506a64e3f996bc6d867c) )
4385   ROM_LOAD( "mgo-cg2094.u73",   0x08000, 0x8000, CRC(9f4dfe16) SHA1(bf5fdabd72fe259c7a489e77bd7a3d5a14062ce1) )
4386   ROM_LOAD( "mbo-cg2094.u74",   0x10000, 0x8000, CRC(697fa8cf) SHA1(4dff9a110ac987a25518295dfdc46eb3a46c3215) )
4387   ROM_LOAD( "mxo-cg2094.u75",   0x18000, 0x8000, CRC(d1a9c781) SHA1(8ee6a2fab99be7b2b95603c6420788c5d1143788) )
4388 
4389   ROM_REGION( 0x100, "proms", 0 )
4390   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
4391ROM_END
4392 
4393ROM_START( peip0074 ) /* Normal board : Joker Poker - French (IP0074) */
4394/*
4395                                            w/J     w/oJ
4396PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4397----------------------------------------------------------------
4398 PI106B     1    1   2   3    5   6  20  50 100 200 500   1000
4399  % Range: 89.5-91.5%  Optimum: 93.5%  Hit Frequency: 39.2%
4400     Programs Available: IP0074, X002320P
4401*/
4402   ROM_REGION( 0x10000, "maincpu", 0 )
4403   ROM_LOAD( "ip0074_ip105-il105.u68",   0x00000, 0x10000, CRC(3f3400ea) SHA1(27ae0a353afdf5a1707cfeeca1a3c9f31999d832) ) /* Game Version: IP105, Library Version: IL105 */
4404 
4405   ROM_REGION( 0x020000, "gfx1", 0 )
4406   ROM_LOAD( "mro-cg2094.u72",   0x00000, 0x8000, CRC(7c1810e0) SHA1(ec11740f393178d4f5c0506a64e3f996bc6d867c) )
4407   ROM_LOAD( "mgo-cg2094.u73",   0x08000, 0x8000, CRC(9f4dfe16) SHA1(bf5fdabd72fe259c7a489e77bd7a3d5a14062ce1) )
4408   ROM_LOAD( "mbo-cg2094.u74",   0x10000, 0x8000, CRC(697fa8cf) SHA1(4dff9a110ac987a25518295dfdc46eb3a46c3215) )
4409   ROM_LOAD( "mxo-cg2094.u75",   0x18000, 0x8000, CRC(d1a9c781) SHA1(8ee6a2fab99be7b2b95603c6420788c5d1143788) )
4410 
4411   ROM_REGION( 0x100, "proms", 0 )
4412   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
4413ROM_END
4414 
4415ROM_START( peip0079 ) /* Normal board : Standard Draw Poker - French (IP0079) */
4416/*
4417PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4418----------------------------------------------------------
4419 PI112A     1    1    3    5    7  10  25  80 250    800
4420  % Range: 86.1-88.1%  Optimum: 90.1%  Hit Frequency: 45.6%
4421     Programs Available: IP0079
4422*/
4423   ROM_REGION( 0x10000, "maincpu", 0 )
4424   ROM_LOAD( "ip0079_ip105-il105.u68",   0x00000, 0x10000, CRC(5b50369f) SHA1(f1478dc4bac5b392888c9a4232a5afa36f71be88) ) /* Game Version: IP105, Library Version: IL105 */
4425 
4426   ROM_REGION( 0x020000, "gfx1", 0 )
4427   ROM_LOAD( "mro-cg2094.u72",   0x00000, 0x8000, CRC(7c1810e0) SHA1(ec11740f393178d4f5c0506a64e3f996bc6d867c) )
4428   ROM_LOAD( "mgo-cg2094.u73",   0x08000, 0x8000, CRC(9f4dfe16) SHA1(bf5fdabd72fe259c7a489e77bd7a3d5a14062ce1) )
4429   ROM_LOAD( "mbo-cg2094.u74",   0x10000, 0x8000, CRC(697fa8cf) SHA1(4dff9a110ac987a25518295dfdc46eb3a46c3215) )
4430   ROM_LOAD( "mxo-cg2094.u75",   0x18000, 0x8000, CRC(d1a9c781) SHA1(8ee6a2fab99be7b2b95603c6420788c5d1143788) )
4431 
4432   ROM_REGION( 0x100, "proms", 0 )
4433   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
4434ROM_END
4435 
4436ROM_START( peip0101 ) /* Normal board :  Joker Poker - French (IP0101) */
4437/*
4438                                            w/J     w/oJ
4439PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4440----------------------------------------------------------------
4441  ????      1    1   2   3    4   6  20  50 100 200 500    800
4442  % Range: 91.9-93.9%  Optimum: 95.9%  Hit Frequency: 45.3%
4443     Programs Available: IP0101
4444*/
4445   ROM_REGION( 0x10000, "maincpu", 0 )
4446   ROM_LOAD( "ip0101_ipp023.u68",   0x00000, 0x8000, CRC(22697a40) SHA1(8f7491cb0ddde4ee6460cc141005a47d197e4d1b) )
4447   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4448 
4449   ROM_REGION( 0x020000, "gfx1", 0 )
4450   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4451   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4452   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4453   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4454 
4455   ROM_REGION( 0x100, "proms", 0 )
4456   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4457ROM_END
4458 
4459ROM_START( peip0103 ) /* Normal board : Joker Poker - French (IP0103) */
4460/*
4461                                            w/J     w/oJ
4462PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4463----------------------------------------------------------------
4464  ????      1    1   2   3    4   5  20  40 100 200 500   1000
4465  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 45.3%
4466     Programs Available: IP0103
4467*/
4468   ROM_REGION( 0x10000, "maincpu", 0 )
4469   ROM_LOAD( "ip0103_ipp023.u68",   0x00000, 0x8000, CRC(b7c9db4e) SHA1(d0cdd63296fbd82a0f2548d2ff177540903be29d) )
4470   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4471 
4472   ROM_REGION( 0x020000, "gfx1", 0 )
4473   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4474   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4475   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4476   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4477 
4478   ROM_REGION( 0x100, "proms", 0 )
4479   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4480ROM_END
4481 
4482ROM_START( peip0105 ) /* Normal board :  Joker Poker - French (IP0105) */
4483/*
4484                                            w/J     w/oJ
4485PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4486----------------------------------------------------------------
4487  ????      1    1   2   3    4   6  15  40 100 200 500    800
4488  % Range: 87.2-89.2%  Optimum: 91.2%  Hit Frequency: 45.3%
4489     Programs Available: IP0105
4490*/
4491   ROM_REGION( 0x10000, "maincpu", 0 )
4492   ROM_LOAD( "ip0105_ipp023.u68",   0x00000, 0x8000, CRC(c6d7db20) SHA1(f9c46c2bda068d627fa874bcbaeef5f2ba1a3039) )
4493   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4494 
4495   ROM_REGION( 0x020000, "gfx1", 0 )
4496   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4497   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4498   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4499   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4500 
4501   ROM_REGION( 0x100, "proms", 0 )
4502   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4503ROM_END
4504 
4505ROM_START( peip0108 ) /* Normal board : Standard Draw Poker - French (IP0108) */
4506/*
4507PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4508----------------------------------------------------------
4509  ????      1    2    3    4    6   9  25  50 250    800
4510  % Range: 94.2-96.2%  Optimum: 98.2%  Hit Frequency: 45.6%
4511     Programs Available: IP0108
4512*/
4513   ROM_REGION( 0x10000, "maincpu", 0 )
4514   ROM_LOAD( "ip0108_ipp023.u68",   0x00000, 0x8000, CRC(b3d6ce51) SHA1(3550e9fb13c3b3edf7ac08dcc992029401265baa) )
4515   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4516 
4517   ROM_REGION( 0x020000, "gfx1", 0 )
4518   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4519   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4520   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4521   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4522 
4523   ROM_REGION( 0x100, "proms", 0 )
4524   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4525ROM_END
4526 
4527ROM_START( peip0111 ) /* Normal board : Joker Poker - French (IP0111) */
4528/*
4529                                            w/J     w/oJ
4530PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4531----------------------------------------------------------------
4532  ????      1    1   2   3    4   5  20  50 100 200 500   1000
4533  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.3%
4534     Programs Available: IP0111
4535*/
4536   ROM_REGION( 0x10000, "maincpu", 0 )
4537   ROM_LOAD( "ip0111_ipp023.u68",   0x00000, 0x8000, CRC(783461de) SHA1(ea60853481af04dadc81e1be36587c41da0f9c4f) )
4538   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4539 
4540   ROM_REGION( 0x020000, "gfx1", 0 )
4541   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4542   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4543   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4544   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4545 
4546   ROM_REGION( 0x100, "proms", 0 )
4547   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4548ROM_END
4549 
4550ROM_START( peip0112 ) /* Normal board : Standard Draw Poker - French (IP0112) */
4551/*
4552PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4553----------------------------------------------------------
4554  ????      1    2    3    4    5   6  25  50 250    800
4555  % Range: 90.0-92.0%  Optimum: 94.0%  Hit Frequency: 45.6%
4556     Programs Available: IP0112
4557*/
4558   ROM_REGION( 0x10000, "maincpu", 0 )
4559   ROM_LOAD( "ip0112_ipp023.u68",   0x00000, 0x8000, CRC(ae24b4e8) SHA1(d904f54d83f3e3404a4a4a3fecc65e7b2acda148) )
4560   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4561 
4562   ROM_REGION( 0x020000, "gfx1", 0 )
4563   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4564   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4565   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4566   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4567 
4568   ROM_REGION( 0x100, "proms", 0 )
4569   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4570ROM_END
4571 
4572ROM_START( peip0114 ) /* Normal board : Standard Draw Poker - French (IP0114) */
4573/*
4574PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4575----------------------------------------------------------
4576  PI34A     1    2    3    4    5   8  25  50 250    800
4577  % Range: 91.1-93.1%  Optimum: 96.3%  Hit Frequency: 45.6%
4578     Programs Available: IP0114
4579*/
4580   ROM_REGION( 0x10000, "maincpu", 0 )
4581   ROM_LOAD( "ip0114_ipp023.u68",   0x00000, 0x8000, CRC(047f2e60) SHA1(e18aa8e66e2eb21144e2a8c825a6c23322dd7e64) )
4582   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4583 
4584   ROM_REGION( 0x020000, "gfx1", 0 )
4585   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4586   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4587   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4588   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4589 
4590   ROM_REGION( 0x100, "proms", 0 )
4591   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4592ROM_END
4593 
4594ROM_START( peip0115 ) /* Normal board :  Joker Poker - French (IP0115) */
4595/*
4596                                            w/J     w/oJ
4597PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4598----------------------------------------------------------------
4599  ????      1    1   2   3    5   6  20  50 100 200 500    800
4600  % Range: 94.1-96.1%  Optimum: 98.1%  Hit Frequency: 45.3%
4601     Programs Available: IP0115
4602*/
4603   ROM_REGION( 0x10000, "maincpu", 0 )
4604   ROM_LOAD( "ip0115_ipp023.u68",   0x00000, 0x8000, CRC(3f5d8a67) SHA1(e197bf4439f8e92328cde81ea8bd103397c741a7) )
4605   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4606 
4607   ROM_REGION( 0x020000, "gfx1", 0 )
4608   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4609   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4610   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4611   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4612 
4613   ROM_REGION( 0x100, "proms", 0 )
4614   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4615ROM_END
4616 
4617ROM_START( peip0116 ) /* Normal board : Standard Draw Poker - French (IP0116) */
4618/*
4619PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4620----------------------------------------------------------
4621  PI34B     1    2    3    4    5   6  25  50 250   1000
4622  % Range: 90.4-92.4%  Optimum: 94.4%  Hit Frequency: 45.6%
4623     Programs Available: IP0116
4624*/
4625   ROM_REGION( 0x10000, "maincpu", 0 )
4626   ROM_LOAD( "ip0116_ipp023.u68",   0x00000, 0x8000, CRC(ab5bf95b) SHA1(6aa36d83682cd2170465af0c6eab0952b2f1cfa8) )
4627   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4628 
4629   ROM_REGION( 0x020000, "gfx1", 0 )
4630   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4631   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4632   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4633   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4634 
4635   ROM_REGION( 0x100, "proms", 0 )
4636   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4637ROM_END
4638 
4639ROM_START( peip0118 ) /* Normal board : Standard Draw Poker - French (IP0118) */
4640/*
4641PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4642----------------------------------------------------------
4643  ????      1    2    3    4    5   9  25  50 250    800
4644  % Range: 93.4-95.4%  Optimum: 97.4%  Hit Frequency: 45.6%
4645     Programs Available: IP0118
4646*/
4647   ROM_REGION( 0x10000, "maincpu", 0 )
4648   ROM_LOAD( "ip0118_ipp023.u68",   0x00000, 0x8000, CRC(e3ffb758) SHA1(6bb2f031b833c00ad1071014641eb7104d7d268f) )
4649   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4650 
4651   ROM_REGION( 0x020000, "gfx1", 0 )
4652   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4653   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4654   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4655   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4656 
4657   ROM_REGION( 0x100, "proms", 0 )
4658   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4659ROM_END
4660 
4661ROM_START( peip0120 ) /* Normal board : Standard Draw Poker - French (IP0120) */
4662/*
4663PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4664----------------------------------------------------------
4665  ????      1    2    3    4    5   7  25  50 250    800
4666  % Range: 91.1-93.1%  Optimum: 95.1%  Hit Frequency: 45.6%
4667     Programs Available: IP0120
4668*/
4669   ROM_REGION( 0x10000, "maincpu", 0 )
4670   ROM_LOAD( "ip0120_ipp023.u68",   0x00000, 0x8000, CRC(a836cc58) SHA1(ee49961b3782d5bfd6c4f7cd453b04fee014ae02) )
4671   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4672 
4673   ROM_REGION( 0x020000, "gfx1", 0 )
4674   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4675   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4676   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4677   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4678 
4679   ROM_REGION( 0x100, "proms", 0 )
4680   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4681ROM_END
4682 
4683ROM_START( pebe0014 ) /* Normal board : Blackjack (BE0014) */
4684/*
4685Paytable ID: BJ7
4686 
4687Deal: 1 Deck (52 cards)
4688      Shuffled before each hand
4689 
4690Progressive Jackpot: None
4691 
4692Game Rules:
4693  1. Dealer stands on any 17 or more
4694  2. Blackjack pays 2 for 1, all other wins pay 2 for 1
4695  3. Bet returned on pushes
4696  4. Player wins on six (6) cards totaling 21 or less
4697  5. Split allowed on 1st two cards if a pair, Aces only receive one card
4698  6. Insurance if dealer has an Ace showing
4699  7. Surrender only on 1st two cards and if dealer has no Ace (pays 1/2 of original bet)
4700  8. Double Down only on the 1st two cards
4701  9. Insurances pays 3 for 1
4702 
4703Optimum percentage payout: 98.3%
4704 
4705In game features that can be enabled/disabled:
4706  Auto Bet
4707  Double Down
4708 
4709Known to exist:
4710 BE0013 508-544 (Non Double-up version of BE0014)
4711 BE0013 528-A22 (Non Double-up version of BE0014)
4712 BE0014 526-906
4713 BE0014 527-936
4714 BE0017 532-A22
4715*/
4716   ROM_REGION( 0x10000, "maincpu", 0 )
4717   ROM_LOAD( "be0014_528-a22.u68",   0x00000, 0x10000, CRC(232b32b7) SHA1(a3af9414577642fedc23b4c1911901cd31e9d6e0) ) /* Game Version: 528, Library Version: A22 */
4718 
4719   ROM_REGION( 0x020000, "gfx1", 0 )
4720   ROM_LOAD( "mro-cg2036.u72",  0x00000, 0x8000, CRC(0a168d06) SHA1(7ed4fb5c7bcacab077bcec030f0465c6eaf3ce1c) )
4721   ROM_LOAD( "mgo-cg2036.u73",  0x08000, 0x8000, CRC(826b4090) SHA1(34390484c0faffe9340fd93d273b9292d09f97fd) )
4722   ROM_LOAD( "mbo-cg2036.u74",  0x10000, 0x8000, CRC(46aac851) SHA1(28d84b49c6cebcf2894b5a15d935618f84093caa) )
4723   ROM_LOAD( "mxo-cg2036.u75",  0x18000, 0x8000, CRC(60204a56) SHA1(2e3420da9e79ba304ca866d124788f84861380a7) )
4724 
4725   ROM_REGION( 0x100, "proms", 0 )
4726   ROM_LOAD( "cap707.u50", 0x0000, 0x0100, CRC(9851ba36) SHA1(5a0a43c1e212ae8c173102ede9c57a3d95752f99) )
4727ROM_END
4728 
4729ROM_START( peke1012 ) /* Normal board : Keno 1-10 Spot (KE1012) - Payout 90.27%, Paytable 90-P */
4730   ROM_REGION( 0x10000, "maincpu", 0 )
4731   ROM_LOAD( "ke1012_576-a3u.u68",   0x00000, 0x10000, CRC(470e8c10) SHA1(f8a65a3a73477e9e9d2f582eeefa93b470497dfa) ) /* Game Version: 576, Library Version: A3U */
4732 
4733   ROM_REGION( 0x020000, "gfx1", 0 )
4734   ROM_LOAD( "mro-cg1267.u72",  0x00000, 0x8000, CRC(16498b57) SHA1(9c22726299af7204c4be1c6d8afc4c1b512ad918) )
4735   ROM_LOAD( "mgo-cg1267.u73",  0x08000, 0x8000, CRC(80847c5a) SHA1(8422cd13a91c3c462af5efcfca8615e7eeaa2e52) )
4736   ROM_LOAD( "mbo-cg1267.u74",  0x10000, 0x8000, CRC(ce7af8a7) SHA1(38675122c764b8fa9260246ea99ac0f0750da277) )
4737   ROM_LOAD( "mxo-cg1267.u75",  0x18000, 0x8000, CRC(a4394303) SHA1(30a07028de35f74cc4fb776b0505ca743c8d7b5b) )
4738 
4739   ROM_REGION( 0x100, "proms", 0 )
4740   ROM_LOAD( "cap1267.u50", 0x0000, 0x0100, CRC(7051db57) SHA1(76751a3cc47d506983205decb07e99ca0c178a42) )
4741ROM_END
4742 
4743ROM_START( peke1013 ) /* Normal board : Keno 2-10 Spot (KE1013) - Payout 91.97%, Paytable 91-D */
4744   ROM_REGION( 0x10000, "maincpu", 0 )
4745   ROM_LOAD( "ke1013_590-a77.u68",   0x00000, 0x10000, CRC(3b178f94) SHA1(c601150a728d750b73f949ba6e2d2979c4c4be2e) ) /* Game Version: 590, Library Version: A77 */
4746 
4747   ROM_REGION( 0x020000, "gfx1", 0 )
4748   ROM_LOAD( "mro-cg1267.u72",  0x00000, 0x8000, CRC(16498b57) SHA1(9c22726299af7204c4be1c6d8afc4c1b512ad918) )
4749   ROM_LOAD( "mgo-cg1267.u73",  0x08000, 0x8000, CRC(80847c5a) SHA1(8422cd13a91c3c462af5efcfca8615e7eeaa2e52) )
4750   ROM_LOAD( "mbo-cg1267.u74",  0x10000, 0x8000, CRC(ce7af8a7) SHA1(38675122c764b8fa9260246ea99ac0f0750da277) )
4751   ROM_LOAD( "mxo-cg1267.u75",  0x18000, 0x8000, CRC(a4394303) SHA1(30a07028de35f74cc4fb776b0505ca743c8d7b5b) )
4752 
4753   ROM_REGION( 0x100, "proms", 0 )
4754   ROM_LOAD( "cap1267.u50", 0x0000, 0x0100, CRC(7051db57) SHA1(76751a3cc47d506983205decb07e99ca0c178a42) )
4755ROM_END
4756 
4757ROM_START( peps0014 ) /* Normal board : Super Joker Slots (PS0014) - Payout 90.11% */
4758   ROM_REGION( 0x10000, "maincpu", 0 )
4759   ROM_LOAD( "ps0014_569-a2c.u68",   0x00000, 0x10000, CRC(368c3f58) SHA1(ebefcefbb5386659680719936bff72ad61087343) ) /* 3 Coins Max / 1 Line */
4760 
4761   ROM_REGION( 0x020000, "gfx1", 0 )
4762   ROM_LOAD( "mro-cg0916.u72",  0x00000, 0x8000, CRC(d97049d9) SHA1(78f7bb33866ca92922a8b83d5f9ac459edd39176) )
4763   ROM_LOAD( "mgo-cg0916.u73",  0x08000, 0x8000, CRC(6e075788) SHA1(e8e9d8b7943d62e31d1d58f870bc765cba65c203) )
4764   ROM_LOAD( "mbo-cg0916.u74",  0x10000, 0x8000, CRC(a5cdf0f3) SHA1(23b2749fd2cb5b8462ce7c912005779b611f32f9) )
4765   ROM_LOAD( "mxo-cg0916.u75",  0x18000, 0x8000, CRC(1f3a2d72) SHA1(8e07324d436980b628e007d30a835757c1f70f6d) )
4766 
4767   ROM_REGION( 0x100, "proms", 0 )
4768   ROM_LOAD( "cap916.u50", 0x0000, 0x0100, CRC(b9a5ee21) SHA1(d3c952f594baca9dc234602d90c506dd537c4dcc) )
4769ROM_END
4770 
4771ROM_START( peps0021 ) /* Normal board : Red White & Blue Slots (PS0021) - Payout 92.51% */
4772   ROM_REGION( 0x10000, "maincpu", 0 )
4773   ROM_LOAD( "ps0021_569-a2c.u68",   0x00000, 0x10000, CRC(e87d5040) SHA1(e7478e845c888d97190f0398da4bfb043222a3c1) ) /* 3 Coins Max / 1 Line */
4774 
4775   ROM_REGION( 0x020000, "gfx1", 0 )
4776   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4777   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4778   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4779   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4780 
4781   ROM_REGION( 0x100, "proms", 0 )
4782   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4783ROM_END
4784 
4785ROM_START( peps0022 ) /* Normal board : Red White & Blue Slots (PS0022) - Payout 90.08% */
4786   ROM_REGION( 0x10000, "maincpu", 0 )
4787   ROM_LOAD( "ps0022_569-a2c.u68",   0x00000, 0x10000, CRC(d65c0939) SHA1(d91f472a43f77f9df8845e97561540f988e522e3) ) /* 3 Coins Max / 1 Line */
4788 
4789   ROM_REGION( 0x020000, "gfx1", 0 )
4790   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4791   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4792   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4793   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4794 
4795   ROM_REGION( 0x100, "proms", 0 )
4796   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4797ROM_END
4798 
4799ROM_START( peps0042 ) /* Normal board : Double Diamond Slots (PS0042) - Payout 92.58% */
4800   ROM_REGION( 0x10000, "maincpu", 0 )
4801   ROM_LOAD( "ps0042_569-a2c.u68",   0x00000, 0x10000, CRC(b891f04b) SHA1(e735de918e6d91fd87cc85ff40f187dc421a8cf2) ) /* 3 Coins Max / 1 Line */
4802 
4803   ROM_REGION( 0x020000, "gfx1", 0 )
4804   ROM_LOAD( "mro-cg1003.u72",  0x00000, 0x8000, CRC(41ce0395) SHA1(ae90dbae30e4efed33f83ee7038fb2e5171c1945) )
4805   ROM_LOAD( "mgo-cg1003.u73",  0x08000, 0x8000, CRC(5a383fa1) SHA1(27b1febbdda7332e8d474fc0cca683f451a07090) )
4806   ROM_LOAD( "mbo-cg1003.u74",  0x10000, 0x8000, CRC(5ec00224) SHA1(bb70a4326cd1810b200e193a449061df62085f37) )
4807   ROM_LOAD( "mxo-cg1003.u75",  0x18000, 0x8000, CRC(2ffacd52) SHA1(38126ac4998806a1ddd55e6aa1942044240d41d0) )
4808 
4809   ROM_REGION( 0x100, "proms", 0 )
4810   ROM_LOAD( "cap1003.u50", 0x0000, 0x0100, CRC(cc400805) SHA1(f5ac48ad2a5df64da150f09f2ea5d910230bde56) )
4811ROM_END
4812 
4813ROM_START( peps0043 ) /* Normal board : Double Diamond Slots (PS0043) - Payout 90.10% */
4814   ROM_REGION( 0x10000, "maincpu", 0 )
4815   ROM_LOAD( "ps0043_569-a2c.u68",   0x00000, 0x10000, CRC(d612429c) SHA1(95eb4774482a930066456d517fb2e4f67d4df4cb) ) /* 3 Coins Max / 1 Line */
4816 
4817   ROM_REGION( 0x020000, "gfx1", 0 )
4818   ROM_LOAD( "mro-cg1003.u72",  0x00000, 0x8000, CRC(41ce0395) SHA1(ae90dbae30e4efed33f83ee7038fb2e5171c1945) )
4819   ROM_LOAD( "mgo-cg1003.u73",  0x08000, 0x8000, CRC(5a383fa1) SHA1(27b1febbdda7332e8d474fc0cca683f451a07090) )
4820   ROM_LOAD( "mbo-cg1003.u74",  0x10000, 0x8000, CRC(5ec00224) SHA1(bb70a4326cd1810b200e193a449061df62085f37) )
4821   ROM_LOAD( "mxo-cg1003.u75",  0x18000, 0x8000, CRC(2ffacd52) SHA1(38126ac4998806a1ddd55e6aa1942044240d41d0) )
4822 
4823   ROM_REGION( 0x100, "proms", 0 )
4824   ROM_LOAD( "cap1003.u50", 0x0000, 0x0100, CRC(cc400805) SHA1(f5ac48ad2a5df64da150f09f2ea5d910230bde56) )
4825ROM_END
4826 
4827ROM_START( peps0045 ) /* Normal board : Red White & Blue Slots (PS0045) - Payout 87.56% */
4828   ROM_REGION( 0x10000, "maincpu", 0 )
4829   ROM_LOAD( "ps0045_569-a2c.u68",   0x00000, 0x10000, CRC(de180b84) SHA1(0d592d7d535b0aacbd62c18ac222da770fab7b85) ) /* 3 Coins Max / 3 Lines */
4830 
4831   ROM_REGION( 0x020000, "gfx1", 0 )
4832   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4833   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4834   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4835   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4836 
4837   ROM_REGION( 0x100, "proms", 0 )
4838   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4839ROM_END
4840 
4841ROM_START( peps0047 ) /* Normal board : Wild Cherry Slots (PS0047) - Payout 90.20% */
4842   ROM_REGION( 0x10000, "maincpu", 0 )
4843   ROM_LOAD( "ps0047_569-a2c.u68",   0x00000, 0x10000, CRC(b7df1cf8) SHA1(5c5392b7b3a387ccb45fe96310b47078215f2ea0) ) /* 2 Coins Max / 1 Line */
4844 
4845   ROM_REGION( 0x020000, "gfx1", 0 )
4846   ROM_LOAD( "mro-cg1004.u72",  0x00000, 0x3000, BAD_DUMP CRC(631ca70e) SHA1(c4d9c4ebc9e90bd1704f154f1bf9b0ce91af35b4) ) /* These should each be 0x8000 bytes */
4847   ROM_LOAD( "mgo-cg1004.u73",  0x08000, 0x1000, BAD_DUMP CRC(28b4f718) SHA1(91ca3ebf288bb60f43fb0e7aace1f2ada2e978ba) ) /* Needs to redumped as standard 27C256 roms */
4848   ROM_LOAD( "mbo-cg1004.u74",  0x10000, 0x1000, BAD_DUMP CRC(542a3a45) SHA1(13569e5bac44c2cffd647c27cf40456494d4612e) )
4849   ROM_LOAD( "mxo-cg1004.u75",  0x18000, 0x1000, BAD_DUMP CRC(20242083) SHA1(f9c9bbe559516f1d02cd4f0bab69f0f7765780ca) )
4850 
4851   ROM_REGION( 0x100, "proms", 0 )
4852   ROM_LOAD( "cap1004.u50", 0x0000, 0x0100, CRC(5eced808) SHA1(b40b8efa8cbc76cff7560c36939275eb360c6f11) )
4853ROM_END
4854 
4855ROM_START( peps0092 ) /* Normal board : Wild Cherry Slots (PS0092) - Payout 90.18% */
4856   ROM_REGION( 0x10000, "maincpu", 0 )
4857   ROM_LOAD( "ps0092_569-a2c.u68",   0x00000, 0x10000, CRC(d533f6d5) SHA1(9c470f7c474022445aeb45ee8c5757d1b6957a91) ) /* 3 Coins Max / 1 Line */
4858 
4859   ROM_REGION( 0x020000, "gfx1", 0 )
4860   ROM_LOAD( "mro-cg1004.u72",  0x00000, 0x3000, BAD_DUMP CRC(631ca70e) SHA1(c4d9c4ebc9e90bd1704f154f1bf9b0ce91af35b4) ) /* These should each be 0x8000 bytes */
4861   ROM_LOAD( "mgo-cg1004.u73",  0x08000, 0x1000, BAD_DUMP CRC(28b4f718) SHA1(91ca3ebf288bb60f43fb0e7aace1f2ada2e978ba) ) /* Needs to redumped as standard 27C256 roms */
4862   ROM_LOAD( "mbo-cg1004.u74",  0x10000, 0x1000, BAD_DUMP CRC(542a3a45) SHA1(13569e5bac44c2cffd647c27cf40456494d4612e) )
4863   ROM_LOAD( "mxo-cg1004.u75",  0x18000, 0x1000, BAD_DUMP CRC(20242083) SHA1(f9c9bbe559516f1d02cd4f0bab69f0f7765780ca) )
4864 
4865   ROM_REGION( 0x100, "proms", 0 )
4866   ROM_LOAD( "cap1004.u50", 0x0000, 0x0100, CRC(5eced808) SHA1(b40b8efa8cbc76cff7560c36939275eb360c6f11) )
4867ROM_END
4868 
4869ROM_START( peps0206 ) /* Normal board : Red White & Blue Slots (PS0206) - Payout 85.13% */
4870   ROM_REGION( 0x10000, "maincpu", 0 )
4871   ROM_LOAD( "ps0206_569-a2c.u68",   0x00000, 0x10000, CRC(e165efc0) SHA1(170f917740c63b0b00f424ce02bfd04dc48a1397) ) /* 3 Coins Max / 1 Line */
4872 
4873   ROM_REGION( 0x020000, "gfx1", 0 )
4874   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4875   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4876   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4877   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4878 
4879   ROM_REGION( 0x100, "proms", 0 )
4880   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4881ROM_END
4882 
4883ROM_START( peps0207 ) /* Normal board : Red White & Blue Slots (PS0207) - Payout 90.14% */
4884   ROM_REGION( 0x10000, "maincpu", 0 )
4885   ROM_LOAD( "ps0207_569-a2c.u68",   0x00000, 0x10000, CRC(e7c5f103) SHA1(6e420c151e07863b21a423f8743da360d6389cde) ) /* 3 Coins Max / 3 Lines */
4886 
4887   ROM_REGION( 0x020000, "gfx1", 0 )
4888   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4889   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4890   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4891   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4892 
4893   ROM_REGION( 0x100, "proms", 0 )
4894   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4895ROM_END
4896 
4897ROM_START( peps0296 ) /* Normal board : Haywire Slots (PS0296) - Payout 90.00% */
4898   ROM_REGION( 0x10000, "maincpu", 0 )
4899   ROM_LOAD( "ps0296_561-959.u68",   0x00000, 0x10000, CRC(da871550) SHA1(99e7a4fc77731b185751622ba2e08a44ad8eb7f9) ) /* 3 Coins Max / 1 Line */
4900 
4901   ROM_REGION( 0x020000, "gfx1", 0 )
4902   ROM_LOAD( "mro-cg1220.u72",   0x00000, 0x8000, CRC(ad101bc1) SHA1(64d801522d32c35ac0fd359a9b1ca51dfe2e7467) )
4903   ROM_LOAD( "mgo-cg1220.u73",   0x08000, 0x8000, CRC(22b64f11) SHA1(39f350433fc2c96b3848d5af3cc106290b7540c9) )
4904   ROM_LOAD( "mbo-cg1220.u74",   0x10000, 0x8000, CRC(8ba1ddb3) SHA1(d5d8621b14ed4873cb1343b97202a1536763eee8) )
4905   ROM_LOAD( "mxo-cg1220.u75",   0x18000, 0x8000, CRC(07bc5413) SHA1(fcba1b60a2eb6bba4f7bb5ef3e67ff23dd036bf5) )
4906 
4907   ROM_REGION( 0x100, "proms", 0 )
4908   ROM_LOAD( "cap1228.u50", 0x0000, 0x0100, CRC(e15b6db9) SHA1(3c637d1ff95a34bfa0259f7fe74989535b2b3a25) )
4909ROM_END
4910 
4911ROM_START( peps0298 ) /* Normal board : Double Diamond Slots (PS0298) - Payout 87.42% */
4912   ROM_REGION( 0x10000, "maincpu", 0 )
4913   ROM_LOAD( "ps0298_569-a2c.u68",   0x00000, 0x10000, CRC(3af2eb50) SHA1(1b2e1036f78658da3821bcf88a48b5068b2421b2) ) /* 5 Coins Max / 5 Lines */
4914 
4915   ROM_REGION( 0x020000, "gfx1", 0 )
4916   ROM_LOAD( "mro-cg1003.u72",  0x00000, 0x8000, CRC(41ce0395) SHA1(ae90dbae30e4efed33f83ee7038fb2e5171c1945) )
4917   ROM_LOAD( "mgo-cg1003.u73",  0x08000, 0x8000, CRC(5a383fa1) SHA1(27b1febbdda7332e8d474fc0cca683f451a07090) )
4918   ROM_LOAD( "mbo-cg1003.u74",  0x10000, 0x8000, CRC(5ec00224) SHA1(bb70a4326cd1810b200e193a449061df62085f37) )
4919   ROM_LOAD( "mxo-cg1003.u75",  0x18000, 0x8000, CRC(2ffacd52) SHA1(38126ac4998806a1ddd55e6aa1942044240d41d0) )
4920 
4921   ROM_REGION( 0x100, "proms", 0 )
4922   ROM_LOAD( "cap1003.u50", 0x0000, 0x0100, CRC(cc400805) SHA1(f5ac48ad2a5df64da150f09f2ea5d910230bde56) )
4923ROM_END
4924 
4925ROM_START( peps0308 ) /* Normal board : Double Jackpot Slots (PS0308) - Payout 90.10% */
4926   ROM_REGION( 0x10000, "maincpu", 0 )
4927   ROM_LOAD( "ps0308_569-a2c.u68",   0x00000, 0x10000, CRC(fe30e081) SHA1(d216cbc6336727caf359e6b178c856ab2659cabd) ) /* 5 Coins Max / 5 Lines */
4928 
4929   ROM_REGION( 0x020000, "gfx1", 0 )
4930   ROM_LOAD( "mro-cg0911.u72",  0x00000, 0x8000, CRC(48491b50) SHA1(9ec6d3ff34a08d40082a1347a46635838fd31afc) )
4931   ROM_LOAD( "mgo-cg0911.u73",  0x08000, 0x8000, CRC(c1ff7d97) SHA1(78ab138ae9c7f9b3352f9b1ef5fbc473993bb8c8) )
4932   ROM_LOAD( "mbo-cg0911.u74",  0x10000, 0x8000, CRC(202e0f9e) SHA1(51421dfd1b00a9e3b1e938d5bffaa3b7cd4c2b5e) )
4933   ROM_LOAD( "mxo-cg0911.u75",  0x18000, 0x8000, CRC(d97740a2) SHA1(d76926d7fbbc24d2384a1079cb97e654600b134b) )
4934 
4935   ROM_REGION( 0x100, "proms", 0 )
4936   ROM_LOAD( "cap911.u50", 0x0000, 0x0100, CRC(f117e781) SHA1(ba9d850c93e5f3abc26b0ba51f67fa7c07e05f59) )
4937ROM_END
4938 
4939ROM_START( peps0364 ) /* Normal board : Red White & Blue Slots (PS0364) - Payout 90.09% */
4940   ROM_REGION( 0x10000, "maincpu", 0 )
4941   ROM_LOAD( "ps0364_569-a2c.u68",   0x00000, 0x10000, CRC(596c4ae4) SHA1(a06626fb7d17fd12c7514d435031924973e4ba55) ) /* 3 Coins Max / 1 Line (show alt graphics??) */
4942 
4943   ROM_REGION( 0x020000, "gfx1", 0 )
4944   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4945   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4946   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4947   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4948 
4949   ROM_REGION( 0x100, "proms", 0 )
4950   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4951ROM_END
4952 
4953ROM_START( peps0426 ) /* Normal board : Sizzling Sevens Slots (PS0268) - Payout 90.35% */
4954   ROM_REGION( 0x10000, "maincpu", 0 )
4955   ROM_LOAD( "ps0426_571-a3h.u68",   0x00000, 0x10000, CRC(b53771c1) SHA1(23fccd5facb98fc83b8903946435be4f15199ff8) ) /* 3 Coins Max / 1 Lines */
4956 
4957   ROM_REGION( 0x020000, "gfx1", 0 )
4958   ROM_LOAD( "mro-cg1428.u72",  0x00000, 0x8000, CRC(90a4ef75) SHA1(effcaabcbc52b7fb3a85546b201f2628131a96fa) )
4959   ROM_LOAD( "mgo-cg1428.u73",  0x08000, 0x8000, CRC(78416e96) SHA1(4523339e00eacbae5cd1a9aabb3dce18ff1a604e) )
4960   ROM_LOAD( "mbo-cg1428.u74",  0x10000, 0x8000, CRC(b84034e2) SHA1(704962eed288c8e7bed288ae8f99576c9851c52b) )
4961   ROM_LOAD( "mxo-cg1428.u75",  0x18000, 0x8000, CRC(3da3cb07) SHA1(882ee4f3008ef44f09c3ffb2b4b8085cac05c93c) )
4962 
4963   ROM_REGION( 0x100, "proms", 0 )
4964   ROM_LOAD( "cap1428.u50", 0x0000, 0x0100, CRC(c15aae14) SHA1(9b2784ad3da7afdb7778cae9906d0a7c76df7a32) )
4965ROM_END
4966 
4967ROM_START( peps0581 ) /* Normal board : Red White & Blue Slots (PS0581) - Payout 85.06% */
4968   ROM_REGION( 0x10000, "maincpu", 0 )
4969   ROM_LOAD( "ps0581_571-a3h.u68",   0x00000, 0x10000, CRC(8730cbf3) SHA1(2e81aec6982909511a9782f60ff506215f9aac7c) ) /* 5 Coins Max / 5 Lines */
4970 
4971   ROM_REGION( 0x020000, "gfx1", 0 )
4972   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4973   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4974   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4975   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4976 
4977   ROM_REGION( 0x100, "proms", 0 )
4978   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4979ROM_END
4980 
4981ROM_START( peps0615 ) /* Normal board : Chaos Slots (PS0615) - Payout 90.02% */
4982   ROM_REGION( 0x10000, "maincpu", 0 )
4983   ROM_LOAD( "ps0615_586-a6c.u68",   0x00000, 0x10000, CRC(d27dd6ab) SHA1(b3f065f507191682edbd93b07b72ed87bf6ae9b1) ) /* 3 Coins Max / 1 Line */
4984 
4985   ROM_REGION( 0x020000, "gfx1", 0 )
4986   ROM_LOAD( "mro-cg2246.u72",  0x00000, 0x8000, CRC(7c08c355) SHA1(2a154b81c6d9671cea55a924bffb7f5461747142) )
4987   ROM_LOAD( "mgo-cg2246.u73",  0x08000, 0x8000, CRC(b3c16487) SHA1(c97232fadd086f604eaeb3cd3c2d1c8fe0dcfa70) )
4988   ROM_LOAD( "mbo-cg2246.u74",  0x10000, 0x8000, CRC(e61331f5) SHA1(4364edc625d64151cbae40780b54cb1981086647) )
4989   ROM_LOAD( "mxo-cg2246.u75",  0x18000, 0x8000, CRC(f0f4a27d) SHA1(3a10ab196aeaa5b50d47b9d3c5b378cfadd6fe96) )
4990 
4991   ROM_REGION( 0x100, "proms", 0 )
4992   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) ) /* WRONG!! - Should be CAP2246 here */
4993ROM_END
4994 
4995ROM_START( peps0631 ) /* Normal board : Red White & Blue Slots (PS0631) - Payout 89.96% */
4996   ROM_REGION( 0x10000, "maincpu", 0 )
4997   ROM_LOAD( "ps0631_586-a6c.u68",   0x00000, 0x10000, CRC(3d4c52dd) SHA1(f6b31a77de52c0d6402b51349f34bdb687b27178) ) /* 3 Coins Max / 1 Line (show alt graphics??) */
4998 
4999   ROM_REGION( 0x020000, "gfx1", 0 )
5000   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
5001   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
5002   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
5003   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
5004 
5005   ROM_REGION( 0x100, "proms", 0 )
5006   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
5007ROM_END
5008 
5009ROM_START( peps0716 ) /* Normal board : River Gambler Slots (PS0716) - Payout 95.00% */
5010   ROM_REGION( 0x10000, "maincpu", 0 )
5011   ROM_LOAD( "ps0716_589-a6x.u68",   0x00000, 0x10000, CRC(7615d7b6) SHA1(91fe62eec720a0dc2ebf48835065148f19499d16) ) /* 2 Coins Max / 1 Line */
5012 
5013   ROM_REGION( 0x020000, "gfx1", 0 )
5014   ROM_LOAD( "mro-cg2266.u72",  0x00000, 0x8000, CRC(590accd8) SHA1(4e1c963c50799eaa49970e25ecf9cb01eb6b09e1) )
5015   ROM_LOAD( "mgo-cg2266.u73",  0x08000, 0x8000, CRC(b87ffa05) SHA1(92126b670b9cabeb5e2cc35b6e9c458088b18eea) )
5016   ROM_LOAD( "mbo-cg2266.u74",  0x10000, 0x8000, CRC(e3df30e1) SHA1(c7d2ae9a7c7e53bfb6197b635efcb5dc231e4fe0) )
5017   ROM_LOAD( "mxo-cg2266.u75",  0x18000, 0x8000, CRC(56271442) SHA1(61ad0756b9f6412516e46ef6625a4c3899104d4e) )
5018 
5019   ROM_REGION( 0x100, "proms", 0 )
5020   ROM_LOAD( "cap2266.u50", 0x0000, 0x0100, CRC(5aaff103) SHA1(9cfda9c095cb77a8bb761c131a0f358e79b97abc) )
5021ROM_END
5022 
5023ROM_START( pex0002p ) /* Superboard : Standard Draw Poker (X000002P+XP000038) */
5024/*
5025PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5026----------------------------------------------------------
5027   BB       1    2    3    4    5   8  25  50 250   1000
5028  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
5029     Programs Available: PP0002, X000002P
5030*/
5031   ROM_REGION( 0x10000, "maincpu", 0 )
5032   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5033 
5034   ROM_REGION( 0x10000, "user1", 0 )
5035   ROM_LOAD( "x000002p.u66",   0x00000, 0x10000, CRC(17cee391) SHA1(173e5775c3e887e16b4f0330d21873331dfb7c33) ) /* Standard Draw Poker */
5036 
5037   ROM_REGION( 0x020000, "gfx1", 0 )
5038   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5039   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5040   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5041   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5042 
5043   ROM_REGION( 0x200, "proms", 0 )
5044   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5045ROM_END
5046 
5047ROM_START( pex0002pa ) /* Superboard : Standard Draw Poker (X000002P+XP000109) */
5048/*
5049PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5050----------------------------------------------------------
5051   BB       1    2    3    4    5   8  25  50 250   1000
5052  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
5053     Programs Available: PP0002, X000002P
5054*/
5055   ROM_REGION( 0x10000, "maincpu", 0 )
5056   ROM_LOAD( "xp000109.u67",   0x00000, 0x10000, CRC(2e3347a7) SHA1(ef4f1822389ff67c00065b2c04897deabee2eba1) ) /* Monaco Region */
5057 
5058   ROM_REGION( 0x10000, "user1", 0 )
5059   ROM_LOAD( "x000002p.u66",   0x00000, 0x10000, CRC(17cee391) SHA1(173e5775c3e887e16b4f0330d21873331dfb7c33) ) /* Standard Draw Poker */
5060 
5061   ROM_REGION( 0x020000, "gfx1", 0 )
5062   ROM_LOAD( "mro-cg2201.u77",  0x00000, 0x8000, CRC(8f82a114) SHA1(dc4aaaa12442a66386d9bef969afa60a7e2e386b) ) /* Monaco Region */
5063   ROM_LOAD( "mgo-cg2201.u78",  0x08000, 0x8000, CRC(71797c5b) SHA1(15dff00aad8006855af98a2ad39fe1a6e87d7d24) )
5064   ROM_LOAD( "mbo-cg2201.u79",  0x10000, 0x8000, CRC(27201cbf) SHA1(9d197e04c36e94ff08bd76c7200ea4e8f345b8ab) )
5065   ROM_LOAD( "mxo-cg2201.u80",  0x18000, 0x8000, CRC(b79b6d11) SHA1(dcc30465e4de104c54b19e95e7216023576d90c7) )
5066 
5067   ROM_REGION( 0x200, "proms", 0 )
5068   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5069ROM_END
5070 
5071ROM_START( pex0040p ) /* Superboard : Standard Draw Poker (X000040P+XP000038) */
5072/*
5073PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5074----------------------------------------------------------
5075   WA       1    2    3    4    5   7  20  50 300    800
5076  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
5077     Programs Available: PP0040, X000040P
5078*/
5079   ROM_REGION( 0x10000, "maincpu", 0 )
5080   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5081 
5082   ROM_REGION( 0x10000, "user1", 0 )
5083   ROM_LOAD( "x000040p.u66",   0x00000, 0x10000, CRC(f672c36e) SHA1(c44d78070b8f858cb2ef27c84b62acc8eec1bea8) ) /* Standard Draw Poker */
5084 
5085   ROM_REGION( 0x020000, "gfx1", 0 )
5086   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5087   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5088   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5089   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5090 
5091   ROM_REGION( 0x200, "proms", 0 )
5092   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5093ROM_END
5094 
5095ROM_START( pex0045p ) /* Superboard : Standard Draw Poker (10's or Better) (X000045P+XP000038) */
5096/*
5097PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5098----------------------------------------------------------
5099  P8A      1     1    3    4    5   8  25  50 300    800
5100  % Range: 84.6-86.6%  Optimum: 98.6%  Hit Frequency: 49.2%
5101     Programs Available: PP0045, X000045P
5102*/
5103   ROM_REGION( 0x10000, "maincpu", 0 )
5104   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5105 
5106   ROM_REGION( 0x10000, "user1", 0 )
5107   ROM_LOAD( "x000045p.u66",   0x00000, 0x10000, CRC(5412e1f9) SHA1(a962b7731df2f534ea79b6d3e376abf45104df37) ) /* Standard Draw Poker (10's or Better) */
5108 
5109   ROM_REGION( 0x020000, "gfx1", 0 )
5110   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5111   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5112   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5113   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5114 
5115   ROM_REGION( 0x200, "proms", 0 )
5116   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5117ROM_END
5118 
5119ROM_START( pex0046p ) /* Superboard : Standard Draw Poker (10's or Better) (X000046P+XP000038) */
5120/*
5121PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5122----------------------------------------------------------
5123  P8B      1     1    3    4    5   8  25  50 300   1000
5124  % Range: 85.2-87.2%  Optimum: 89.2%  Hit Frequency: 49.0%
5125     Programs Available: PP0046, X000046P
5126*/
5127   ROM_REGION( 0x10000, "maincpu", 0 )
5128   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5129 
5130   ROM_REGION( 0x10000, "user1", 0 )
5131   ROM_LOAD( "x000046p.u66",   0x00000, 0x10000, CRC(f19cdab4) SHA1(4502a8660100be69625e215610cf918e3ffc5e4f) ) /* Standard Draw Poker (10's or Better) */
5132 
5133   ROM_REGION( 0x020000, "gfx1", 0 )
5134   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5135   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5136   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5137   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5138 
5139   ROM_REGION( 0x200, "proms", 0 )
5140   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5141ROM_END
5142 
5143ROM_START( pex0053p ) /* Superboard : Joker Poker (X000053P+XP000038) */
5144/*
5145                                            w/J     w/oJ
5146PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
5147----------------------------------------------------------------
5148  P18B      1    1   2   3    5   6  20  50 100 200 500   1000
5149  % Range: 90.6-92.6%  Optimum: 94.6%  Hit Frequency: 39.2%
5150     Programs Available: PP0053, X000053P
5151*/
5152   ROM_REGION( 0x10000, "maincpu", 0 )
5153   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5154 
5155   ROM_REGION( 0x10000, "user1", 0 )
5156   ROM_LOAD( "x000053p.u66",   0x00000, 0x10000, CRC(b247e455) SHA1(8d311956e46be62ee17de6fb2ae1594e623a78c0) ) /* Joker Poker */
5157 
5158   ROM_REGION( 0x020000, "gfx1", 0 )
5159   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5160   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5161   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5162   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5163 
5164   ROM_REGION( 0x200, "proms", 0 )
5165   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5166ROM_END
5167 
5168ROM_START( pex0054p ) /* Superboard : Deuces Wild Poker (X000054P+XP000038) */
5169/*
5170                                        w/D     w/oD
5171PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5172------------------------------------------------------------
5173  P21A      1    2    2   3   4   8  10  20 200 300    800
5174  % Range: 87.4-89.4%  Optimum: 91.4%  Hit Frequency: 45.3%
5175     Programs Available: PP0054, X000054P
5176*/
5177   ROM_REGION( 0x10000, "maincpu", 0 )
5178   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5179 
5180   ROM_REGION( 0x10000, "user1", 0 )
5181   ROM_LOAD( "x000054p.u66",   0x00000, 0x10000, CRC(820b3738) SHA1(dfa389df0d27b69072b5ece5b624ef97551f4af1) ) /* Deuces Wild Poker - 03/22/95   @ IGT  L95-1142 */
5182 
5183   ROM_REGION( 0x020000, "gfx1", 0 )
5184   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5185   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5186   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5187   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5188 
5189   ROM_REGION( 0x200, "proms", 0 )
5190   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5191ROM_END
5192 
5193ROM_START( pex0055p ) /* Superboard : Deuces Wild Poker (X000055P+XP000019) */
5194/*
5195                                        w/D     w/oD
5196PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5197------------------------------------------------------------
5198  P32A      1    2    2   3   4  10  15  25 200 250    800
5199  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5200     Programs Available: PP0055, X000055P, PP0723
5201*/
5202   ROM_REGION( 0x10000, "maincpu", 0 )
5203   ROM_LOAD( "xp000019.u67",   0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) )
5204 
5205   ROM_REGION( 0x10000, "user1", 0 )
5206   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5207 
5208   ROM_REGION( 0x020000, "gfx1", 0 )
5209   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5210   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5211   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5212   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5213 
5214   ROM_REGION( 0x200, "proms", 0 )
5215   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5216ROM_END
5217 
5218ROM_START( pex0055pa ) /* Superboard : Deuces Wild Poker (X000055P+XP000022) */
5219/*
5220                                        w/D     w/oD
5221PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5222------------------------------------------------------------
5223  P32A      1    2    2   3   4  10  15  25 200 250    800
5224  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5225     Programs Available: PP0055, X000055P, PP0723
5226*/
5227   ROM_REGION( 0x10000, "maincpu", 0 )
5228   ROM_LOAD( "xp000022.u67",   0x00000, 0x10000, CRC(7930741b) SHA1(d3b83fd08a458cc794301ef612f8c7b13d4b2050) ) /*  09/28/95   @ IGT  L95-2028  */
5229 
5230   ROM_REGION( 0x10000, "user1", 0 )
5231   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5232 
5233   ROM_REGION( 0x020000, "gfx1", 0 )
5234   ROM_LOAD( "mro-cg2291.u77",  0x00000, 0x8000, CRC(db4e491c) SHA1(e371e7b236962a0f30640c683d3a0a302c51aee9) ) /* Custom The Orleans graphics */
5235   ROM_LOAD( "mgo-cg2291.u78",  0x08000, 0x8000, CRC(17bb35f8) SHA1(ba9e8aa3ff42b17c7be6ee46c70db22d8e60e52c) ) /* Compatible with most "standard" game sets */
5236   ROM_LOAD( "mbo-cg2291.u79",  0x10000, 0x8000, CRC(de1036e4) SHA1(774bbcda301754dc4a606974248847a2264c3827) )
5237   ROM_LOAD( "mxo-cg2291.u80",  0x18000, 0x8000, CRC(7049403c) SHA1(3a29a00fb8dfdb30dba757c1536151827ea09068) )
5238 
5239   ROM_REGION( 0x200, "proms", 0 )
5240   ROM_LOAD( "capx2291.u43", 0x0000, 0x0200, CRC(6dfbb409) SHA1(10cd84e53344cb8502a268c41bdd41bc927e5544) )
5241ROM_END
5242 
5243ROM_START( pex0055pb ) /* Superboard : Deuces Wild Poker (X000055P+XP000023) */
5244/*
5245                                        w/D     w/oD
5246PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5247------------------------------------------------------------
5248  P32A      1    2    2   3   4  10  15  25 200 250    800
5249  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5250     Programs Available: PP0055, X000055P, PP0723
5251*/
5252   ROM_REGION( 0x10000, "maincpu", 0 )
5253   ROM_LOAD( "xp000023.u67",   0x00000, 0x10000, CRC(d2ad7dd3) SHA1(9c5fe5ca5a5a682566e96c6802b7164730cda919) ) /* No Double-up */
5254 
5255   ROM_REGION( 0x10000, "user1", 0 )
5256   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5257 
5258   ROM_REGION( 0x020000, "gfx1", 0 )
5259   ROM_LOAD( "mro-cg2399.u72",  0x00000, 0x8000, CRC(0424f4ba) SHA1(c8b192a6f63c8c9937cb3923d27b9ba2c39823cd) ) /* Custom The Fun Ships graphics */
5260   ROM_LOAD( "mgo-cg2399.u73",  0x08000, 0x8000, CRC(5848a2fa) SHA1(4173a473016b7a776d2b59bf3ded0be35bd43721) )
5261   ROM_LOAD( "mbo-cg2399.u74",  0x10000, 0x8000, CRC(5c3e16f6) SHA1(a4aa457f239527bffa6472e0d6f9d836f796b326) )
5262   ROM_LOAD( "mxo-cg2399.u75",  0x18000, 0x8000, CRC(bd7669d5) SHA1(4343a9764fd563e2e1cdd8558f2f53f77006b159) )
5263 
5264   ROM_REGION( 0x200, "proms", 0 )
5265   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5266ROM_END
5267 
5268ROM_START( pex0055pc ) /* Superboard : Deuces Wild Poker (X000055P+XP000028) */
5269/*
5270                                        w/D     w/oD
5271PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5272------------------------------------------------------------
5273  P32A      1    2    2   3   4  10  15  25 200 250    800
5274  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5275     Programs Available: PP0055, X000055P, PP0723
5276*/
5277   ROM_REGION( 0x10000, "maincpu", 0 )
5278   ROM_LOAD( "xp000028.u67",   0x00000, 0x10000, CRC(1407fe54) SHA1(4615efbba9a58698e2cfd53c93fa133678101441) ) /* 01/15/96   @ IGT  L96-0716 */
5279 
5280   ROM_REGION( 0x10000, "user1", 0 )
5281   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5282 
5283   ROM_REGION( 0x020000, "gfx1", 0 )
5284   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5285   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5286   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5287   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5288 
5289   ROM_REGION( 0x200, "proms", 0 )
5290   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5291ROM_END
5292 
5293ROM_START( pex0055pd ) /* Superboard : Deuces Wild Poker (X000055P+XP000035) */
5294/*
5295                                        w/D     w/oD
5296PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5297------------------------------------------------------------
5298  P32A      1    2    2   3   4  10  15  25 200 250    800
5299  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5300     Programs Available: PP0055, X000055P, PP0723
5301*/
5302   ROM_REGION( 0x10000, "maincpu", 0 )
5303   ROM_LOAD( "xp000035.u67",   0x00000, 0x10000, CRC(aa16e53b) SHA1(5a37c7af2c09be26e8734b36da765fd408754771) ) /* 07/08/96   @ IGT  L96-1587 */
5304 
5305   ROM_REGION( 0x10000, "user1", 0 )
5306   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5307 
5308   ROM_REGION( 0x020000, "gfx1", 0 )
5309   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5310   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5311   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5312   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5313 
5314   ROM_REGION( 0x200, "proms", 0 )
5315   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5316ROM_END
5317 
5318ROM_START( pex0055pe ) /* Superboard : Deuces Wild Poker (X000055P+XP000038) */
5319/*
5320                                        w/D     w/oD
5321PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5322------------------------------------------------------------
5323  P32A      1    2    2   3   4  10  15  25 200 250    800
5324  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5325     Programs Available: PP0055, X000055P, PP0723
5326*/
5327   ROM_REGION( 0x10000, "maincpu", 0 )
5328   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5329 
5330   ROM_REGION( 0x10000, "user1", 0 )
5331   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5332 
5333   ROM_REGION( 0x020000, "gfx1", 0 )
5334   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5335   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5336   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5337   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5338 
5339   ROM_REGION( 0x200, "proms", 0 )
5340   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5341ROM_END
5342 
5343ROM_START( pex0055pf ) /* Superboard : Deuces Wild Poker (X000055P+XP000040) */
5344/*
5345                                        w/D     w/oD
5346PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5347------------------------------------------------------------
5348  P32A      1    2    2   3   4  10  15  25 200 250    800
5349  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5350     Programs Available: PP0055, X000055P, PP0723
5351*/
5352   ROM_REGION( 0x10000, "maincpu", 0 )
5353   ROM_LOAD( "xp000040.u67",   0x00000, 0x10000, CRC(7b30b1d5) SHA1(394c964cf6269a4cd9b9debe8f4a5a0c96db06a7) )
5354 
5355   ROM_REGION( 0x10000, "user1", 0 )
5356   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5357 
5358   ROM_REGION( 0x020000, "gfx1", 0 )
5359   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5360   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5361   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5362   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5363 
5364   ROM_REGION( 0x200, "proms", 0 )
5365   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5366ROM_END
5367 
5368ROM_START( pex0055pg ) /* Superboard : Deuces Wild Poker (X000055P+XP000053) */
5369/*
5370                                        w/D     w/oD
5371PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5372------------------------------------------------------------
5373  P32A      1    2    2   3   4  10  15  25 200 250    800
5374  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5375     Programs Available: PP0055, X000055P, PP0723
5376*/
5377   ROM_REGION( 0x10000, "maincpu", 0 )
5378   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
5379 
5380   ROM_REGION( 0x10000, "user1", 0 )
5381   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5382 
5383   ROM_REGION( 0x020000, "gfx1", 0 )
5384   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5385   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5386   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5387   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5388 
5389   ROM_REGION( 0x200, "proms", 0 )
5390   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5391ROM_END
5392 
5393ROM_START( pex0055ph ) /* Superboard : Deuces Wild Poker (X000055P+XP000055) */
5394/*
5395                                        w/D     w/oD
5396PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5397------------------------------------------------------------
5398  P32A      1    2    2   3   4  10  15  25 200 250    800
5399  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5400     Programs Available: PP0055, X000055P, PP0723
5401*/
5402   ROM_REGION( 0x10000, "maincpu", 0 )
5403   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
5404 
5405   ROM_REGION( 0x10000, "user1", 0 )
5406   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5407 
5408   ROM_REGION( 0x020000, "gfx1", 0 )
5409   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5410   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5411   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5412   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5413 
5414   ROM_REGION( 0x200, "proms", 0 )
5415   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5416ROM_END
5417 
5418ROM_START( pex0055pi ) /* Superboard : Deuces Wild Poker (X000055P+XP000063) */
5419/*
5420                                        w/D     w/oD
5421PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5422------------------------------------------------------------
5423  P32A      1    2    2   3   4  10  15  25 200 250    800
5424  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5425     Programs Available: PP0055, X000055P, PP0723
5426*/
5427   ROM_REGION( 0x10000, "maincpu", 0 )
5428   ROM_LOAD( "xp000063.u67",   0x00000, 0x10000, CRC(008dcaf9) SHA1(34203f602a531c1a58febdf31fe7a94c2c09fcb4) )
5429 
5430   ROM_REGION( 0x10000, "user1", 0 )
5431   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5432 
5433   ROM_REGION( 0x020000, "gfx1", 0 )
5434   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5435   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5436   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5437   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5438 
5439   ROM_REGION( 0x200, "proms", 0 )
5440   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5441ROM_END
5442 
5443ROM_START( pex0055pj ) /* Superboard : Deuces Wild Poker (X000055P+XP000075) */
5444/*
5445                                        w/D     w/oD
5446PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5447------------------------------------------------------------
5448  P32A      1    2    2   3   4  10  15  25 200 250    800
5449  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5450     Programs Available: PP0055, X000055P, PP0723
5451*/
5452   ROM_REGION( 0x10000, "maincpu", 0 )
5453   ROM_LOAD( "xp000075.u67",   0x00000, 0x10000, CRC(79b3013f) SHA1(98e6f2c7756643bc9c2371c015cba7ed2c314a60) ) /* English / Spanish */
5454 
5455   ROM_REGION( 0x10000, "user1", 0 )
5456   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5457 
5458   ROM_REGION( 0x020000, "gfx1", 0 )
5459   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) /* Contains needed English / Spanish graphics */
5460   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
5461   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
5462   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
5463 
5464   ROM_REGION( 0x200, "proms", 0 )
5465   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5466ROM_END
5467 
5468ROM_START( pex0055pk ) /* Superboard : Deuces Wild Poker (X000055P+XP000079) */
5469/*
5470                                        w/D     w/oD
5471PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5472------------------------------------------------------------
5473  P32A      1    2    2   3   4  10  15  25 200 250    800
5474  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5475     Programs Available: PP0055, X000055P, PP0723
5476*/
5477   ROM_REGION( 0x10000, "maincpu", 0 )
5478   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
5479 
5480   ROM_REGION( 0x10000, "user1", 0 )
5481   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5482 
5483   ROM_REGION( 0x020000, "gfx1", 0 )
5484   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5485   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5486   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5487   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5488 
5489   ROM_REGION( 0x200, "proms", 0 )
5490   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5491ROM_END
5492 
5493ROM_START( pex0055pl ) /* Superboard : Deuces Wild Poker (X000055P+XP000094) */
5494/*
5495                                        w/D     w/oD
5496PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5497------------------------------------------------------------
5498  P32A      1    2    2   3   4  10  15  25 200 250    800
5499  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5500     Programs Available: PP0055, X000055P, PP0723
5501*/
5502   ROM_REGION( 0x10000, "maincpu", 0 )
5503   ROM_LOAD( "xp000094.u67",   0x00000, 0x10000, CRC(97ff8171) SHA1(ca714f201a7425df81b830698f65640570ac5935) ) /* Coupon Compatible */
5504 
5505   ROM_REGION( 0x10000, "user1", 0 )
5506   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5507 
5508   ROM_REGION( 0x020000, "gfx1", 0 )
5509   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5510   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5511   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5512   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5513 
5514   ROM_REGION( 0x200, "proms", 0 )
5515   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5516ROM_END
5517 
5518ROM_START( pex0055pm ) /* Superboard : Deuces Wild Poker (X000055P+XP000095) */
5519/*
5520                                        w/D     w/oD
5521PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5522------------------------------------------------------------
5523  P32A      1    2    2   3   4  10  15  25 200 250    800
5524  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5525     Programs Available: PP0055, X000055P, PP0723
5526*/
5527   ROM_REGION( 0x10000, "maincpu", 0 )
5528   ROM_LOAD( "xp000095.u67",   0x00000, 0x10000, CRC(6a1679ea) SHA1(421e8c9eacc8e397267a48cad7ae96f541b1c19a) )
5529 
5530   ROM_REGION( 0x10000, "user1", 0 )
5531   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5532 
5533   ROM_REGION( 0x020000, "gfx1", 0 )
5534   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5535   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5536   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5537   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5538 
5539   ROM_REGION( 0x200, "proms", 0 )
5540   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5541ROM_END
5542 
5543ROM_START( pex0055pn ) /* Superboard : Deuces Wild Poker (X000055P+XP000098) */
5544/*
5545                                        w/D     w/oD
5546PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5547------------------------------------------------------------
5548  P32A      1    2    2   3   4  10  15  25 200 250    800
5549  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5550     Programs Available: PP0055, X000055P, PP0723
5551*/
5552   ROM_REGION( 0x10000, "maincpu", 0 )
5553   ROM_LOAD( "xp000098.u67",   0x00000, 0x10000, CRC(12257ad8) SHA1(8f613377519850f8f711ccb827685dece018c735) )
5554 
5555   ROM_REGION( 0x10000, "user1", 0 )
5556   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5557 
5558   ROM_REGION( 0x020000, "gfx1", 0 )
5559   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5560   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5561   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5562   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5563 
5564   ROM_REGION( 0x200, "proms", 0 )
5565   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5566ROM_END
5567 
5568ROM_START( pex0055po ) /* Superboard : Deuces Wild Poker (X000055P+XP000102) */
5569/*
5570                                        w/D     w/oD
5571PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5572------------------------------------------------------------
5573  P32A      1    2    2   3   4  10  15  25 200 250    800
5574  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5575     Programs Available: PP0055, X000055P, PP0723
5576*/
5577   ROM_REGION( 0x10000, "maincpu", 0 )
5578   ROM_LOAD( "xp000102.u67",   0x00000, 0x10000, CRC(76d37639) SHA1(c7190ee3bff135b39ce42428eadef3ca067508b4) ) /* English / Spanish */
5579 
5580   ROM_REGION( 0x10000, "user1", 0 )
5581   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5582 
5583   ROM_REGION( 0x020000, "gfx1", 0 )
5584   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) /* Contains needed English / Spanish graphics */
5585   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
5586   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
5587   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
5588 
5589   ROM_REGION( 0x200, "proms", 0 )
5590   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5591ROM_END
5592 
5593ROM_START( pex0055pp ) /* Superboard : Deuces Wild Poker (X000055P+XP000104) */
5594/*
5595                                        w/D     w/oD
5596PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5597------------------------------------------------------------
5598  P32A      1    2    2   3   4  10  15  25 200 250    800
5599  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5600     Programs Available: PP0055, X000055P, PP0723
5601*/
5602   ROM_REGION( 0x10000, "maincpu", 0 )
5603   ROM_LOAD( "xp000104.u67",   0x00000, 0x10000, CRC(53dbef8a) SHA1(0be0d0f0ac33ae86e79ba7a1151a281774f80af9) ) /*  04/06/98   @ IGT  L98-0910  */
5604 
5605   ROM_REGION( 0x10000, "user1", 0 )
5606   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5607 
5608   ROM_REGION( 0x020000, "gfx1", 0 )
5609   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5610   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5611   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5612   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5613 
5614   ROM_REGION( 0x200, "proms", 0 )
5615   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5616ROM_END
5617 
5618ROM_START( pex0055pq ) /* Superboard : Deuces Wild Poker (X000055P+XP000112) */
5619/*
5620                                        w/D     w/oD
5621PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5622------------------------------------------------------------
5623  P32A      1    2    2   3   4  10  15  25 200 250    800
5624  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5625     Programs Available: PP0055, X000055P, PP0723
5626*/
5627   ROM_REGION( 0x10000, "maincpu", 0 )
5628   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) /* No Double-up */
5629 
5630   ROM_REGION( 0x10000, "user1", 0 )
5631   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5632 
5633   ROM_REGION( 0x020000, "gfx1", 0 )
5634   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5635   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5636   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5637   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5638 
5639   ROM_REGION( 0x200, "proms", 0 )
5640   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5641ROM_END
5642 
5643ROM_START( pex0055pr ) /* Superboard : Deuces Wild Poker (X000055P+XP000126) */
5644/*
5645                                        w/D     w/oD
5646PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5647------------------------------------------------------------
5648  P32A      1    2    2   3   4  10  15  25 200 250    800
5649  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5650     Programs Available: PP0055, X000055P, PP0723
5651*/
5652   ROM_REGION( 0x10000, "maincpu", 0 )
5653   ROM_LOAD( "xp000126.u67",   0x00000, 0x10000, CRC(e41685ac) SHA1(a81ad3f352eebcc0684fc20c73a6935288207215) ) /* English / Spanish */
5654 
5655   ROM_REGION( 0x10000, "user1", 0 )
5656   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5657 
5658   ROM_REGION( 0x020000, "gfx1", 0 )
5659   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) /* Contains needed English / Spanish graphics */
5660   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
5661   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
5662   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
5663 
5664   ROM_REGION( 0x200, "proms", 0 )
5665   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5666ROM_END
5667 
5668ROM_START( pex0060p ) /* Superboard : Standard Draw Poker (X000060P+XP000038) */
5669/*
5670PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5671----------------------------------------------------------
5672   GA       1    2    3    4    5   6  25  50 250    800
5673  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
5674     Programs Available: PP0060, X000060P & PP0420 - Non Double-up Only
5675*/
5676   ROM_REGION( 0x10000, "maincpu", 0 )
5677   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5678 
5679   ROM_REGION( 0x10000, "user1", 0 )
5680   ROM_LOAD( "x000060p.u66",   0x00000, 0x10000, CRC(1ec1ad4d) SHA1(19bc46fe86e0ff23c43ffc072b1c461b60481f0f) ) /* Standard Draw Poker */
5681 
5682   ROM_REGION( 0x020000, "gfx1", 0 )
5683   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5684   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5685   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5686   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5687 
5688   ROM_REGION( 0x200, "proms", 0 )
5689   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5690ROM_END
5691 
5692ROM_START( pex0124p ) /* Superboard : Deuces Wild Poker (X000124P+XP000053) */
5693/*
5694                                        w/D     w/oD
5695PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5696----------------------------------------------------------
5697  P59A      1    2    3   4   4   9  12  20 200 250    800
5698  % Range: 93.1-95.1%  Optimum: 97.1%  Hit Frequency: 44.4%
5699     Programs Available: PP0124, X000124P
5700*/
5701   ROM_REGION( 0x10000, "maincpu", 0 )
5702   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
5703 
5704   ROM_REGION( 0x10000, "user1", 0 )
5705   ROM_LOAD( "x000124p.u66",   0x00000, 0x10000, CRC(08096310) SHA1(34d41a67ecdab93be3af0cd33fcdacfe75da6c08) ) /* Deuces Wild Poker */
5706 
5707   ROM_REGION( 0x020000, "gfx1", 0 )
5708   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5709   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5710   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5711   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5712 
5713   ROM_REGION( 0x200, "proms", 0 )
5714   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5715ROM_END
5716 
5717ROM_START( pex0150p ) /* Superboard : Standard Draw Poker (X000150P+XP000038) */
5718/*
5719PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5720----------------------------------------------------------
5721   KK       1    2    3    4    6   9  25  50 500    500
5722  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 45.5%
5723     Programs Available: PP0150, X000150P
5724*/
5725   ROM_REGION( 0x10000, "maincpu", 0 )
5726   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5727 
5728   ROM_REGION( 0x10000, "user1", 0 )
5729   ROM_LOAD( "x000150p.u66",   0x00000, 0x10000, CRC(d10759fa) SHA1(eae633d03ac9db86520a70825ac0a59ee9ebc819) ) /* Standard Draw Poker */
5730 
5731   ROM_REGION( 0x020000, "gfx1", 0 )
5732   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5733   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5734   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5735   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5736 
5737   ROM_REGION( 0x200, "proms", 0 )
5738   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5739ROM_END
5740 
5741ROM_START( pex0158p ) /* Superboard : 4 of a Kind Bonus Poker (X000158P+XP000038) */
5742/*
5743                                       5-K 2-4
5744PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
5745------------------------------------------------------------------
5746  P77A      1    2    3    4    5   8  25  40  80  50 250    800
5747  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
5748     Programs Available: PP0158, X000158P
5749*/
5750   ROM_REGION( 0x10000, "maincpu", 0 )
5751   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5752 
5753   ROM_REGION( 0x10000, "user1", 0 )
5754   ROM_LOAD( "x000158p.u66",   0x00000, 0x10000, CRC(51a8a294) SHA1(f76992729ceaca18af82ab2fb3403dc5a48b7e8a) ) /* 4 of a Kind Bonus Poker */
5755 
5756   ROM_REGION( 0x020000, "gfx1", 0 )
5757   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
5758   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
5759   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
5760   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
5761 
5762   ROM_REGION( 0x200, "proms", 0 )
5763   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5764ROM_END
5765 
5766ROM_START( pex0171p ) /* Superboard : Joker Poker (X000171P+XP000038) */
5767/*
5768                                            w/J     w/oJ
5769PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
5770----------------------------------------------------------------
5771   YA       1    1   2   3    5   7  15  50 100 200 400    800
5772  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.2%
5773     Programs Available: PP0171, X000171P
5774*/
5775   ROM_REGION( 0x10000, "maincpu", 0 )
5776   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5777 
5778   ROM_REGION( 0x10000, "user1", 0 )
5779   ROM_LOAD( "x000171p.u66",   0x00000, 0x10000, CRC(01e7a3f7) SHA1(a81018fd0b659b3d83cfdc9e6db1f387779bbe98) ) /* Joker Poker */
5780 
5781   ROM_REGION( 0x020000, "gfx1", 0 )
5782   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5783   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5784   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5785   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5786 
5787   ROM_REGION( 0x200, "proms", 0 )
5788   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5789ROM_END
5790 
5791ROM_START( pex0188p ) /* Superboard : Standard Draw Poker (X000188P+XP000038) */
5792/*
5793PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5794----------------------------------------------------------
5795  P40A      1    2    3    4    6   9  15  40 250    800
5796  % Range: 86.5-88.5%  Optimum: 92.5%  Hit Frequency: 45.5%
5797     Programs Available: PP0188, X000188P
5798*/
5799   ROM_REGION( 0x10000, "maincpu", 0 )
5800   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5801 
5802   ROM_REGION( 0x10000, "user1", 0 )
5803   ROM_LOAD( "x000188p.u66",   0x00000, 0x10000, CRC(3eb7580e) SHA1(86f2280542fb8a55767efd391d0fb04a12ed9408) ) /* Standard Draw Poker */
5804 
5805   ROM_REGION( 0x020000, "gfx1", 0 )
5806   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5807   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5808   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5809   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5810 
5811   ROM_REGION( 0x200, "proms", 0 )
5812   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5813ROM_END
5814 
5815ROM_START( pex0190p ) /* Superboard : Deuces Wild Poker (X000190P+XP000053) */
5816/*
5817                                        w/D     w/oD
5818PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5819------------------------------------------------------------
5820  P57A      1    2    3   4   4   8  10  20 200 250    800
5821  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
5822     Programs Available: PP0417, X000417P, X000190P & PP0190 - Non Double-up Only
5823*/
5824   ROM_REGION( 0x10000, "maincpu", 0 )
5825   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
5826 
5827   ROM_REGION( 0x10000, "user1", 0 )
5828   ROM_LOAD( "x000190p.u66",   0x00000, 0x10000, CRC(17cc52f6) SHA1(90818df05c6bba3ffcbc2047c7eedea31abdc05a) ) /* Deuces Wild Poker */
5829 
5830   ROM_REGION( 0x020000, "gfx1", 0 )
5831   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5832   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5833   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5834   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5835 
5836   ROM_REGION( 0x200, "proms", 0 )
5837   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5838ROM_END
5839 
5840ROM_START( pex0197p ) /* Superboard : Standard Draw Poker (X000197P+XP000038) */
5841/*
5842PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5843----------------------------------------------------------
5844   BA       1    2    3    4    5   8  25  50 250   1000
5845  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
5846     Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only
5847*/
5848   ROM_REGION( 0x10000, "maincpu", 0 )
5849   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5850 
5851   ROM_REGION( 0x10000, "user1", 0 )
5852   ROM_LOAD( "x000197p.u66",   0x00000, 0x10000, CRC(13394826) SHA1(c9325b2ed47267b2918a3bf365b90338134ce9c7) ) /* Standard Draw Poker */
5853 
5854   ROM_REGION( 0x020000, "gfx1", 0 )
5855   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5856   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5857   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5858   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5859 
5860   ROM_REGION( 0x200, "proms", 0 )
5861   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5862ROM_END
5863 
5864ROM_START( pex0203p ) /* Superboard : 4 of a Kind Bonus Poker (X000203P+XP000038) */
5865/*
5866                                       5-K 2-4
5867PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
5868------------------------------------------------------------------
5869  P90A      1    2    3    4    5   7  25  40  80  50 250    800
5870  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
5871     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
5872*/
5873   ROM_REGION( 0x10000, "maincpu", 0 )
5874   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5875 
5876   ROM_REGION( 0x10000, "user1", 0 )
5877   ROM_LOAD( "x000203p.u66",   0x00000, 0x10000, CRC(8e5dc66e) SHA1(e3030598e42e7a76e608d5edfaf263aadc2caf85) ) /* 4 of a Kind Bonus Poker */
5878 
5879   ROM_REGION( 0x020000, "gfx1", 0 )
5880   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
5881   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
5882   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
5883   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
5884 
5885   ROM_REGION( 0x200, "proms", 0 )
5886   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5887ROM_END
5888 
5889ROM_START( pex0224p ) /* Superboard : Deuces Wild Poker (X000224P+XP000053) */
5890/*
5891                                        w/D     w/oD
5892PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5893------------------------------------------------------------
5894  P47A      1    2    2   3   4  13  16  25 200 250    800
5895  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.9%
5896     Programs Available: PP0290, X000224P & PP0224 - Non Double-up Only
5897*/
5898   ROM_REGION( 0x10000, "maincpu", 0 )
5899   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
5900 
5901   ROM_REGION( 0x10000, "user1", 0 )
5902   ROM_LOAD( "x000224p.u66",   0x00000, 0x10000, CRC(69ca6ac7) SHA1(e6f119b69f769a1f484a4ced3eb4d9e5406f0b09) ) /* Deuces Wild Poker */
5903 
5904   ROM_REGION( 0x020000, "gfx1", 0 )
5905   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5906   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5907   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5908   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5909 
5910   ROM_REGION( 0x200, "proms", 0 )
5911   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5912ROM_END
5913 
5914ROM_START( pex0225p ) /* Superboard : Dueces Joker Wild Poker 1-100 Coins (X000225P+XP000079) */
5915/*
5916                                         With  w/o  w/o  With
5917                                         Wild  JKR  Wild JKR
5918PayTable   3K   STR  FL  FH  4K  SF  5K   RF    4D   RF   4D  (Bonus)
5919---------------------------------------------------------------------
5920  P76N      1    1    3   3   3   6   9   12    25  800  1000  2000
5921  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 50.4%
5922     Programs Available: PP0431, PP0812, PP0813, X000225P & PP0225 - Non Double-up Only
5923*/
5924   ROM_REGION( 0x10000, "maincpu", 0 )
5925   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
5926 
5927   ROM_REGION( 0x10000, "user1", 0 )
5928   ROM_LOAD( "x000225p.u66",   0x00000, 0x10000, CRC(d965dd5e) SHA1(1f3e3acb9319e26fa8563f57d1c75940a4445959) ) /* Dueces Joker Wild Poker */
5929 
5930   ROM_REGION( 0x020000, "gfx1", 0 )
5931   ROM_LOAD( "mro-cg2242.u77",  0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) )
5932   ROM_LOAD( "mgo-cg2242.u78",  0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) )
5933   ROM_LOAD( "mbo-cg2242.u79",  0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) )
5934   ROM_LOAD( "mxo-cg2242.u80",  0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) )
5935 
5936   ROM_REGION( 0x200, "proms", 0 )
5937   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5938ROM_END
5939 
5940ROM_START( pex0242p ) /* Superboard : Deuces Wild Poker (X000242P+XP000053) */
5941/*
5942                                        w/D     w/oD
5943PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5944------------------------------------------------------------
5945  P56A      1    2    3   3   4   8  10  20 200 250    800
5946  % Range: 89.4-91.4%  Optimum: 93.4%  Hit Frequency: 45.1%
5947     Programs Available: PP0242, X000242P
5948*/
5949   ROM_REGION( 0x10000, "maincpu", 0 )
5950   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
5951 
5952   ROM_REGION( 0x10000, "user1", 0 )
5953   ROM_LOAD( "x000242p.u66",   0x00000, 0x10000, CRC(e0292d63) SHA1(8d8ec5dc1abaf8e8a8a7451d3a814023d8195fb5) ) /* Deuces Wild Poker */
5954 
5955   ROM_REGION( 0x020000, "gfx1", 0 )
5956   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5957   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5958   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5959   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5960 
5961   ROM_REGION( 0x200, "proms", 0 )
5962   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5963ROM_END
5964 
5965ROM_START( pex0265p ) /* Superboard : 4 of a Kind Bonus Poker (X000265P+XP000038) */
5966/*
5967                                       5-K 2-4
5968PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
5969------------------------------------------------------------------
5970 P101A      1    2    3    4    5   6  25  40  80  50 250    800
5971  % Range: 92.5-94.5%  Optimum: 96.9%  Hit Frequency: 45.5%
5972     Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only
5973*/
5974   ROM_REGION( 0x10000, "maincpu", 0 )
5975   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5976 
5977   ROM_REGION( 0x10000, "user1", 0 )
5978   ROM_LOAD( "x000265p.u66",   0x00000, 0x10000, CRC(70a7ab9b) SHA1(3574f89406da12e6a48e5e2c45cad0ba7ee4caf3) ) /* 4 of a Kind Bonus Poker */
5979 
5980   ROM_REGION( 0x020000, "gfx1", 0 )
5981   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
5982   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
5983   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
5984   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
5985 
5986   ROM_REGION( 0x200, "proms", 0 )
5987   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5988ROM_END
5989 
5990ROM_START( pex0291p ) /* Superboard : Deuces Wild Poker (X000291P+XP000053) */
5991/*
5992                                        w/D     w/oD
5993PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5994------------------------------------------------------------
5995  P62A      1    2    3   4   4   9  15  25 200 250    800
5996  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 44.4%
5997     Programs Available: PP0418, X000291P & PP0291 - Non Double-up Only
5998*/
5999   ROM_REGION( 0x10000, "maincpu", 0 )
6000   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
6001 
6002   ROM_REGION( 0x10000, "user1", 0 )
6003   ROM_LOAD( "x000291p.u66",   0x00000, 0x10000, CRC(7aa72bbd) SHA1(f754b85579720abd2efd57efa31091bca3c01425) ) /* Deuces Wild Poker */
6004 
6005   ROM_REGION( 0x020000, "gfx1", 0 )
6006   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6007   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6008   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6009   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6010 
6011   ROM_REGION( 0x200, "proms", 0 )
6012   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6013ROM_END
6014 
6015ROM_START( pex0417p ) /* Superboard : Deuces Wild Poker (X000417P+XP000053) */
6016/*
6017                                        w/D     w/oD
6018PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
6019-----------------------------------------------------------
6020  P57A      1    2    3   4   4   8  10  20 200 250    800
6021  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
6022     Programs Available: PP0417, X000417P & PP0190 - Non Double-up Only
6023*/
6024   ROM_REGION( 0x10000, "maincpu", 0 )
6025   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
6026 
6027   ROM_REGION( 0x10000, "user1", 0 )
6028   ROM_LOAD( "x000417p.u66",   0x00000, 0x10000, CRC(8c80433d) SHA1(508f49522fa391ca39523829c0dda6af7c99a5fe) ) /* Deuces Wild Poker */
6029 
6030   ROM_REGION( 0x020000, "gfx1", 0 )
6031   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6032   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6033   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6034   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6035 
6036   ROM_REGION( 0x200, "proms", 0 )
6037   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6038ROM_END
6039 
6040ROM_START( pex0430p ) /* Superboard : Dueces Joker Wild Poker (X000430P+XP000079) */
6041/*
6042                                         With  w/o  w/o  With
6043                                         Wild  JKR  Wild JKR
6044PayTable   3K   STR  FL  FH  4K  SF  5K   RF    4D   RF   4D  (Bonus)
6045---------------------------------------------------------------------
6046  P73N      1    2    3   3   3   5   8   10    25  800  1000  2000
6047  % Range: 93.2-95.2%  Optimum: 97.2%  Hit Frequency: 50.5%
6048     Programs Available: PP0430, X000430P
6049*/
6050   ROM_REGION( 0x10000, "maincpu", 0 )
6051   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
6052 
6053   ROM_REGION( 0x10000, "user1", 0 )
6054   ROM_LOAD( "x000430p.u66",   0x00000, 0x10000, CRC(905571e3) SHA1(fd506516fed22842df8e9dbb3683dcb4c459719b) ) /* Dueces Joker Wild Poker */
6055 
6056   ROM_REGION( 0x020000, "gfx1", 0 )
6057   ROM_LOAD( "mro-cg2242.u77",  0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) )
6058   ROM_LOAD( "mgo-cg2242.u78",  0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) )
6059   ROM_LOAD( "mbo-cg2242.u79",  0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) )
6060   ROM_LOAD( "mxo-cg2242.u80",  0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) )
6061 
6062   ROM_REGION( 0x200, "proms", 0 )
6063   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6064ROM_END
6065 
6066ROM_START( pex0434p ) /* Superboard : Bonus Poker Deluxe (X000434P+XP000038) */
6067/*
6068PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
6069----------------------------------------------------------
6070  P200A     1    1    3    4    6   8  80  50 250    800
6071  % Range: 94.5-96.5%  Optimum: 98.5%  Hit Frequency: 45.2%
6072     Programs Available: PP0434, X000434P & PP0713 - Non Double-up Only
6073*/
6074   ROM_REGION( 0x10000, "maincpu", 0 )
6075   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6076 
6077   ROM_REGION( 0x10000, "user1", 0 )
6078   ROM_LOAD( "x000434p.u66",   0x00000, 0x10000, CRC(5a3ad28b) SHA1(d4f103c7ce3c4f72728450ab015aca8ef10cd79c) ) /* Bonus Poker Deluxe */
6079 
6080   ROM_REGION( 0x020000, "gfx1", 0 )
6081   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6082   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6083   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6084   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6085 
6086   ROM_REGION( 0x200, "proms", 0 )
6087   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6088ROM_END
6089 
6090ROM_START( pex0447p ) /* Superboard : Standard Draw Poker (X000447P+XP000038) */
6091/*
6092PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
6093---------------------------------------------------------
6094  CA        1    2    3   4    6   9  25  50 250    800
6095  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 45.5%
6096     Programs Available: PP0447, X000447P
6097*/
6098   ROM_REGION( 0x10000, "maincpu", 0 )
6099   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6100 
6101   ROM_REGION( 0x10000, "user1", 0 )
6102   ROM_LOAD( "x000447p.u66",   0x00000, 0x10000, CRC(4d3ab095) SHA1(337255658242816dc552432aee328fa52e556793) ) /* Standard Draw Poker */
6103 
6104   ROM_REGION( 0x020000, "gfx1", 0 )
6105   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6106   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6107   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6108   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6109 
6110   ROM_REGION( 0x200, "proms", 0 )
6111   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6112ROM_END
6113 
6114ROM_START( pex0449p ) /* Superboard : Standard Draw Poker (X000449P+XP000038) */
6115/*
6116PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
6117----------------------------------------------------------
6118  P11A      1    2    3    4    5   9  25  50 250    800
6119  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
6120     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
6121*/
6122   ROM_REGION( 0x10000, "maincpu", 0 )
6123   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6124 
6125   ROM_REGION( 0x10000, "user1", 0 )
6126   ROM_LOAD( "x000449p.u66",   0x00000, 0x10000, CRC(6c22b0b3) SHA1(47cb1b8edb3e1d5d2055a7a31a1dfb46b4fd6391) ) /* Standard Draw Poker */
6127 
6128   ROM_REGION( 0x020000, "gfx1", 0 )
6129   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6130   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6131   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6132   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6133 
6134   ROM_REGION( 0x200, "proms", 0 )
6135   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6136ROM_END
6137 
6138ROM_START( pex0451p ) /* Superboard : Bonus Poker Deluxe (X000451P+XP000038) */
6139/*
6140PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
6141----------------------------------------------------------
6142  P253A     1    1    3    4    5   8  80  50 250    800
6143  % Range: 93.4-95.4%  Optimum: 97.4%  Hit Frequency: 45.2%
6144     Programs Available: PP0451, X000451P
6145*/
6146   ROM_REGION( 0x10000, "maincpu", 0 )
6147   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6148 
6149   ROM_REGION( 0x10000, "user1", 0 )
6150   ROM_LOAD( "x000451p.u66",   0x00000, 0x10000, CRC(4f11e26c) SHA1(6cea3cbef530ef4ece2a4351cbd9ead5b66bb359) ) /* Bonus Poker Deluxe */
6151 
6152   ROM_REGION( 0x020000, "gfx1", 0 )
6153   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6154   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6155   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6156   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6157 
6158   ROM_REGION( 0x200, "proms", 0 )
6159   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6160ROM_END
6161 
6162ROM_START( pex0452p ) /* Superboard : Double Deuces Wild Poker (X000452P+XP000038) */
6163/*
6164                                        w/D     wo/D
6165PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
6166------------------------------------------------------------
6167  P236A     1    2    2   3   4  11  16  25 400 250    800
6168  % Range: 95.6-97.6%  Optimum: 99.6%  Hit Frequency: 45.1%
6169     Programs Available: PP0452, X000452P
6170*/
6171   ROM_REGION( 0x10000, "maincpu", 0 )
6172   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6173 
6174   ROM_REGION( 0x10000, "user1", 0 )
6175   ROM_LOAD( "x000452p.u66",   0x00000, 0x10000, CRC(a96c7a71) SHA1(6be1012e68035fbc9aa5e0e6ea3a6c54c1864b1b) ) /* Double Deuces Wild Poker */
6176 
6177   ROM_REGION( 0x020000, "gfx1", 0 )
6178   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6179   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6180   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6181   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6182 
6183   ROM_REGION( 0x200, "proms", 0 )
6184   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6185ROM_END
6186 
6187ROM_START( pex0454p ) /* Superboard : Bonus Poker Deluxe (X000454P+XP000038) */
6188/*
6189PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
6190----------------------------------------------------------
6191  P253A     1    1    3    4    5   7  80  50 250    800
6192  % Range: 92.3-94.3%  Optimum: 96.3%  Hit Frequency: 45.2%
6193     Programs Available: PP0454, X000454P
6194*/
6195   ROM_REGION( 0x10000, "maincpu", 0 )
6196   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6197 
6198   ROM_REGION( 0x10000, "user1", 0 )
6199   ROM_LOAD( "x000454p.u66",   0x00000, 0x10000, CRC(93934ae4) SHA1(f243c66e23269e5509bf1306e9e37a579b08fda4) ) /* Bonus Poker Deluxe */
6200 
6201   ROM_REGION( 0x020000, "gfx1", 0 )
6202   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6203   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6204   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6205   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6206 
6207   ROM_REGION( 0x200, "proms", 0 )
6208   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6209ROM_END
6210 
6211ROM_START( pex0458p ) /* Superboard : Joker Poker (X000458P+XP000038) */
6212/*
6213                                            w/J     w/oJ
6214PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6215----------------------------------------------------------------
6216  P18A      1    1   2   3    5   6  20  50 100 200 500    800
6217  % Range: 89.8-91.8%  Optimum: 93.8%  Hit Frequency: 37.6%
6218     Programs Available: PP0458, X000458P & PP0429 - Non Double-up Only
6219*/
6220   ROM_REGION( 0x10000, "maincpu", 0 )
6221   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6222 
6223   ROM_REGION( 0x10000, "user1", 0 )
6224   ROM_LOAD( "x000458p.u66",   0x00000, 0x10000, CRC(dcd20558) SHA1(22c99a265431b0ef8199d3cb69fbbc4aff822dc0) ) /* Joker Poker */
6225 
6226   ROM_REGION( 0x020000, "gfx1", 0 )
6227   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6228   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6229   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6230   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6231 
6232   ROM_REGION( 0x200, "proms", 0 )
6233   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6234ROM_END
6235 
6236ROM_START( pex0459p ) /* Superboard : Joker Poker (X000459P+XP000038) */
6237/*
6238                                            w/J     w/oJ
6239PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6240----------------------------------------------------------------
6241  P17A      1    1   2   3    4   5  20  40 100 200 500    800
6242  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
6243     Programs Available: PP0459, X000459P & PP0428 - Non Double-up Only
6244*/
6245   ROM_REGION( 0x10000, "maincpu", 0 )
6246   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6247 
6248   ROM_REGION( 0x10000, "user1", 0 )
6249   ROM_LOAD( "x000459p.u66",   0x00000, 0x10000, CRC(03cef341) SHA1(3813c4781ca6d164880f6d06a7d6dbae29012e7d) ) /* Joker Poker */
6250 
6251   ROM_REGION( 0x020000, "gfx1", 0 )
6252   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6253   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6254   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6255   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6256 
6257   ROM_REGION( 0x200, "proms", 0 )
6258   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6259ROM_END
6260 
6261ROM_START( pex0459pa ) /* Superboard : Joker Poker (X000459P+XP000155) - Use SET038 to set Denomination for this game */
6262/*
6263                                            w/J     w/oJ
6264PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6265----------------------------------------------------------------
6266  P17A      1    1   2   3    4   5  20  40 100 200 500    800
6267  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
6268     Programs Available: PP0459, X000459P & PP0428 - Non Double-up Only
6269*/
6270   ROM_REGION( 0x10000, "maincpu", 0 )
6271   ROM_LOAD( "xp000155.u67",   0x00000, 0x10000, CRC(13d2cc01) SHA1(8d5a7d7a2e1e811d3f99a7eb4f662d02751d45a6) )
6272 
6273   ROM_REGION( 0x10000, "user1", 0 )
6274   ROM_LOAD( "x000459p.u66",   0x00000, 0x10000, CRC(03cef341) SHA1(3813c4781ca6d164880f6d06a7d6dbae29012e7d) ) /* Joker Poker */
6275 
6276   ROM_REGION( 0x020000, "gfx1", 0 )
6277   ROM_LOAD( "mro-cg2296.u77",  0x00000, 0x8000, CRC(d0d92665) SHA1(2c686ee28b69ff975951ccafd8e5030fde640773) ) /* Slovenia + XP000155 */
6278   ROM_LOAD( "mgo-cg2296.u78",  0x08000, 0x8000, CRC(d05fd16e) SHA1(f66b5ba8b4cf4f97ed46ec44cef43fed29bdd492) )
6279   ROM_LOAD( "mbo-cg2296.u79",  0x10000, 0x8000, CRC(6db6a435) SHA1(7ea0d6df1f7e0c4fe389437bf04d1f5a798c68ef) )
6280   ROM_LOAD( "mxo-cg2296.u80",  0x18000, 0x8000, CRC(4faeb79e) SHA1(f69277b729ba88860efc6b9a3d4956f245cc2943) )
6281 
6282   ROM_REGION( 0x200, "proms", 0 )
6283   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6284ROM_END
6285 
6286ROM_START( pex0508p ) /* Superboard : Loose Deuce Deuces Wild Poker (X000508P+XP000038) */
6287/*
6288                                       w/D     W/oD
6289PayTable   3K  STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
6290-----------------------------------------------------------
6291  P313A     1    2   2   3   4   8  12  25 500 250    800
6292  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.2%
6293     Programs Available: PP0508, X000508P
6294*/
6295   ROM_REGION( 0x10000, "maincpu", 0 )
6296   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6297 
6298   ROM_REGION( 0x10000, "user1", 0 )
6299   ROM_LOAD( "x000508p.u66",   0x00000, 0x10000, CRC(5efde4b4) SHA1(ead7448464aecc03748f04e4d6e9f346d262cd96) ) /* Loose Deuce Deuces Wild Poker */
6300 
6301   ROM_REGION( 0x020000, "gfx1", 0 )
6302   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6303   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6304   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6305   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6306 
6307   ROM_REGION( 0x200, "proms", 0 )
6308   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6309ROM_END
6310 
6311ROM_START( pex0514p ) /* Superboard : Double Double Bonus Poker (X000514P+XP000038) */
6312/*
6313                                      5-K 2-4
6314PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6315-----------------------------------------------------------------
6316  P323A     1    1    3   5    7   9  50  80 160  50 250    800
6317  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
6318     Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only
6319*/
6320   ROM_REGION( 0x10000, "maincpu", 0 )
6321   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6322 
6323   ROM_REGION( 0x10000, "user1", 0 )
6324   ROM_LOAD( "x000514p.u66",   0x00000, 0x10000, CRC(32cf8696) SHA1(83992695d3af4de10d0e53e01558faad18cdc221) ) /* Double Bonus Poker */
6325 
6326   ROM_REGION( 0x020000, "gfx1", 0 )
6327   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6328   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6329   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6330   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6331 
6332   ROM_REGION( 0x200, "proms", 0 )
6333   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6334ROM_END
6335 
6336ROM_START( pex0515p ) /* Superboard : Double Double Bonus Poker (X000515P+XP000038) */
6337/*
6338                                      5-K 2-4
6339PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6340-----------------------------------------------------------------
6341  P324A     1    1    3   5    7  10  50  80 160  50 250    800
6342  % Range: 96.2-98.2%  Optimum: 100.2%  Hit Frequency: 43.3%
6343     Programs Available: PP0515, X000515P & PP0539 - Non Double-up Only
6344*/
6345   ROM_REGION( 0x10000, "maincpu", 0 )
6346   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6347 
6348   ROM_REGION( 0x10000, "user1", 0 )
6349   ROM_LOAD( "x000515p.u66",   0x00000, 0x10000, CRC(4311224a) SHA1(69e6657dacd6e09c2d1514417994adc561f63a83) ) /* Double Bonus Poker */
6350 
6351   ROM_REGION( 0x020000, "gfx1", 0 )
6352   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6353   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6354   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6355   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6356 
6357   ROM_REGION( 0x200, "proms", 0 )
6358   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6359ROM_END
6360 
6361ROM_START( pex0516p ) /* Superboard : Double Double Bonus Poker (X000516P+XP000038) */
6362/*
6363                                      5-K 2-4
6364PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6365-----------------------------------------------------------------
6366  P325A     1    2    3   4    5   8  50  80 160  50 250    800
6367  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 44.5%
6368     Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only
6369*/
6370   ROM_REGION( 0x10000, "maincpu", 0 )
6371   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6372 
6373   ROM_REGION( 0x10000, "user1", 0 )
6374   ROM_LOAD( "x000516p.u66",   0x00000, 0x10000, CRC(37f84ce7) SHA1(2e5157d02febec0ff31eb5a23254f7c49a486cf5) ) /* Double Bonus Poker */
6375 
6376   ROM_REGION( 0x020000, "gfx1", 0 )
6377   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6378   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6379   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6380   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6381 
6382   ROM_REGION( 0x200, "proms", 0 )
6383   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6384ROM_END
6385 
6386ROM_START( pex0536p ) /* Superboard : Joker Poker (X000536P+XP000038) */
6387/*
6388                                            w/J     w/oJ
6389PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6390----------------------------------------------------------------
6391 P244D      1    1   2   3    5   7  17  50 100 200 400    940
6392  % Range: 94.4-96.4%  Optimum: 98.4%  Hit Frequency: 44.1%
6393     Programs Available: PP0536, X000536P
6394*/
6395   ROM_REGION( 0x10000, "maincpu", 0 )
6396   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6397 
6398   ROM_REGION( 0x10000, "user1", 0 )
6399   ROM_LOAD( "x000536p.u66",   0x00000, 0x10000, CRC(0b18dc1b) SHA1(07350fe258441f8565bfd875342823149b7757f1) ) /* Joker Poker */
6400 
6401   ROM_REGION( 0x020000, "gfx1", 0 )
6402   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6403   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6404   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6405   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6406 
6407   ROM_REGION( 0x200, "proms", 0 )
6408   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6409ROM_END
6410 
6411ROM_START( pex0537p ) /* Superboard : Standard Draw Poker (X000537P+XP000038) */
6412/*
6413PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
6414----------------------------------------------------------
6415 P259A      1    2    3    4    5   7  35  50 250    800
6416  % Range: 92.2-94.2%  Optimum: 96.2%  Hit Frequency: 45.5%
6417     Programs Available: PP0537, X000537P
6418 
6419Some call this a 4 of a Kind Bonus Poker with all 4K paying the same. Internally it's classified as Standard Draw Poker
6420 
6421*/
6422   ROM_REGION( 0x10000, "maincpu", 0 )
6423   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6424 
6425   ROM_REGION( 0x10000, "user1", 0 )
6426   ROM_LOAD( "x000537p.u66",   0x00000, 0x10000, CRC(a0c97fde) SHA1(a152b5e99a425127246b2200b7599c17e28479bd) ) /* Standard Draw Poker */
6427 
6428   ROM_REGION( 0x020000, "gfx1", 0 )
6429   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6430   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6431   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6432   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6433 
6434   ROM_REGION( 0x200, "proms", 0 )
6435   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6436ROM_END
6437 
6438ROM_START( pex0550p ) /* Superboard : Joker Poker (X000550P+XP000055) */
6439/*
6440                                       w/J     w/oJ
6441PayTable   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6442-----------------------------------------------------------
6443   NA       1   2   4    5   8  16 100 100 400 100    800
6444  % Range: 93.2-95.2%  Optimum: 97.2%  Hit Frequency: 30.1%
6445     Programs Available: X000550P
6446 
6447Internally the program erroneously reports a 95.50% return. Superseded by X002338P
6448 
6449*/
6450   ROM_REGION( 0x10000, "maincpu", 0 )
6451   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
6452 
6453   ROM_REGION( 0x10000, "user1", 0 )
6454   ROM_LOAD( "x000550p.u66",   0x00000, 0x10000, CRC(8a320403) SHA1(751a83ba25ffdae4b8d745bdec6ecdebf351efa0) ) /* Joker Poker */
6455 
6456   ROM_REGION( 0x020000, "gfx1", 0 )
6457   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6458   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6459   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6460   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6461 
6462   ROM_REGION( 0x200, "proms", 0 )
6463   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6464ROM_END
6465 
6466ROM_START( pex0568p ) /* Superboard : Joker Poker (X000568P+XP000038) */
6467/*
6468                                            w/J     w/oJ
6469PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6470----------------------------------------------------------------
6471   YD       1    1   1   3    5   7  15  50 100 200 400    940
6472  % Range: 92.7-94.7%  Optimum: 96.7%  Hit Frequency: 44.1%
6473     Programs Available: PP0568, X000568P & PP0426 - Non Double-up Only
6474*/
6475   ROM_REGION( 0x10000, "maincpu", 0 )
6476   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6477 
6478   ROM_REGION( 0x10000, "user1", 0 )
6479   ROM_LOAD( "x000568p.u66",   0x00000, 0x10000, CRC(570e941d) SHA1(db9227d044f55e8d038e3ea0ba72e42e68efcb30) ) /* Joker Poker */
6480 
6481   ROM_REGION( 0x020000, "gfx1", 0 )
6482   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6483   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6484   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6485   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6486 
6487   ROM_REGION( 0x200, "proms", 0 )
6488   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6489ROM_END
6490 
6491ROM_START( pex0581p ) /* Superboard : 4 of a Kind Bonus Poker (X000581P+XP000038) */
6492/*
6493                                      5-K 2-4
6494PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6495-----------------------------------------------------------------
6496  P373A     1    2    2   4    5   8  25  40  80  50 250    800
6497  % Range: 87.7-89.7%  Optimum: 91.7%  Hit Frequency: 45.2%
6498     Programs Available: X000581P, PP0581 - Non Double-up Only
6499*/
6500   ROM_REGION( 0x10000, "maincpu", 0 )
6501   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6502 
6503   ROM_REGION( 0x10000, "user1", 0 )
6504   ROM_LOAD( "x000581p.u66",   0x00000, 0x10000, CRC(a4cfecc3) SHA1(b2c805781ba43bda9e208d8c16578dc96b6f58f7) ) /* 4 of a Kind Bonus Poker */
6505 
6506   ROM_REGION( 0x020000, "gfx1", 0 )
6507   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6508   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6509   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6510   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6511 
6512   ROM_REGION( 0x200, "proms", 0 )
6513   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6514ROM_END
6515 
6516ROM_START( pex0588p ) /* Superboard : Joker Poker (X000588P+XP000038) */
6517/*
6518                                            w/J     w/oJ
6519PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6520----------------------------------------------------------------
6521   ZA       1    1   2   3    5   7  20  50 100 200 400    800
6522  % Range: 99.2-98.2%  Optimum: 100.2%  Hit Frequency: 44.2%
6523     Programs Available: PP0588, X000588
6524*/
6525   ROM_REGION( 0x10000, "maincpu", 0 )
6526   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6527 
6528   ROM_REGION( 0x10000, "user1", 0 )
6529   ROM_LOAD( "x000588p.u66",   0x00000, 0x10000, CRC(baa448cc) SHA1(0f1da407304f7dafbe06119d068f7caf99404cb4) ) /* Joker Poker */
6530 
6531   ROM_REGION( 0x020000, "gfx1", 0 )
6532   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6533   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6534   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6535   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6536 
6537   ROM_REGION( 0x200, "proms", 0 )
6538   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6539ROM_END
6540 
6541ROM_START( pex0725p ) /* Superboard : Double Bonus Poker (X000725P+XP000038) */
6542/*
6543                                      5-K 2-4
6544PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6545-----------------------------------------------------------------
6546  P434A     1    1    3   4    6   9  50  80 160  50 250    800
6547  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.9%
6548     Programs Available: PP0725, X000725P
6549*/
6550   ROM_REGION( 0x10000, "maincpu", 0 )
6551   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6552 
6553   ROM_REGION( 0x10000, "user1", 0 )
6554   ROM_LOAD( "x000725p.u66",   0x00000, 0x10000, CRC(a56f3910) SHA1(06d0d4a8722e033ff1fbe0947135952ce8274725) ) /* Double Bonus Poker */
6555 
6556   ROM_REGION( 0x020000, "gfx1", 0 )
6557   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6558   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6559   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6560   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6561 
6562   ROM_REGION( 0x200, "proms", 0 )
6563   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6564ROM_END
6565 
6566ROM_START( pex0726p ) /* Superboard : Double Bonus Poker (X000726P+XP000038) */
6567/*
6568                                      5-K 2-4
6569PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6570-----------------------------------------------------------------
6571  P435A     1    1    3   4    5   8  50  80 160  50 250    800
6572  % Range: 90.2-92.2%  Optimum: 94.2%  Hit Frequency: 45.1%
6573     Programs Available: PP0726, X000726P
6574*/
6575   ROM_REGION( 0x10000, "maincpu", 0 )
6576   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6577 
6578   ROM_REGION( 0x10000, "user1", 0 )
6579   ROM_LOAD( "x000726p.u66",   0x00000, 0x10000, CRC(800eb7e5) SHA1(cb4c2749d025ab093f26967909d5f366f1cc9cba) ) /* Double Bonus Poker */
6580 
6581   ROM_REGION( 0x020000, "gfx1", 0 )
6582   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6583   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6584   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6585   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6586 
6587   ROM_REGION( 0x200, "proms", 0 )
6588   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6589ROM_END
6590 
6591ROM_START( pex0727p ) /* Superboard : Double Bonus Poker (X000727P+XP000038) */
6592/*
6593                                      5-K 2-4
6594PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6595-----------------------------------------------------------------
6596  P436A     1    1    3   4    5   9  50  80 160  50 250    800
6597  % Range: 91.3-93.3%  Optimum: 95.3%  Hit Frequency: 45.0%
6598     Programs Available: PP0727, X000727P
6599*/
6600   ROM_REGION( 0x10000, "maincpu", 0 )
6601   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6602 
6603   ROM_REGION( 0x10000, "user1", 0 )
6604   ROM_LOAD( "x000727p.u66",   0x00000, 0x10000, CRC(4828474c) SHA1(9836b76113a71802df30ca15f7c9a5790e6f1c5b) ) /* Double Bonus Poker */
6605 
6606   ROM_REGION( 0x020000, "gfx1", 0 )
6607   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6608   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6609   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6610   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6611 
6612   ROM_REGION( 0x200, "proms", 0 )
6613   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6614ROM_END
6615 
6616ROM_START( pex0763p ) /* Superboard : 4 of a Kind Bonus Poker (X000763P+XP000038) */
6617/*
6618                                       5-K 2-4
6619PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6620------------------------------------------------------------------
6621 P597A      1    1    3    5    8  10  25  40  80  50 250    800
6622  % Range: 90.2-92.2%  Optimum: 94.2%  Hit Frequency: 42.7%
6623     Programs Available: PP0763, X000763P
6624*/
6625   ROM_REGION( 0x10000, "maincpu", 0 )
6626   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6627 
6628   ROM_REGION( 0x10000, "user1", 0 )
6629   ROM_LOAD( "x000763p.u66",   0x00000, 0x10000, CRC(bf7dda7d) SHA1(1a6089d1159c199199e608f3dd2ba7b45a29b31c) ) /* 4 of a Kind Bonus Poker */
6630 
6631   ROM_REGION( 0x020000, "gfx1", 0 )
6632   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6633   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6634   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6635   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6636 
6637   ROM_REGION( 0x200, "proms", 0 )
6638   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6639ROM_END
6640 
6641ROM_START( pex2018p ) /* Superboard : Fullhouse Bonus Poker (X002018P+XP000038) */
6642/*
6643                                      5-K 2-4
6644PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6645-----------------------------------------------------------------
6646  P532A     1    1    3   5    6  12  25  40 200 100 250    800
6647  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.1%
6648     Programs Available: X002018P
6649*/
6650   ROM_REGION( 0x10000, "maincpu", 0 )
6651   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6652 
6653   ROM_REGION( 0x10000, "user1", 0 )
6654   ROM_LOAD( "x002018p.u66",   0x00000, 0x10000, CRC(a7b79cfa) SHA1(89216fafffc64fda22a016a906483b76174c3f02) ) /* Full House Bonus Poker */
6655 
6656   ROM_REGION( 0x020000, "gfx1", 0 )
6657   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6658   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6659   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6660   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6661 
6662   ROM_REGION( 0x200, "proms", 0 )
6663   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6664ROM_END
6665 
6666ROM_START( pex2025p ) /* Superboard : Deuces Wild Bonus Poker (X002025P+XP000019) */
6667/*
6668                                   w/D 6-K 3-5         w/A w/oD
6669PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
6670-----------------------------------------------------------------------
6671  P552A     1   1    3   4   4   9  25  20  40  80 200 400 250    800
6672  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 41.1%
6673     Programs Available: X002025P
6674*/
6675   ROM_REGION( 0x10000, "maincpu", 0 )
6676   ROM_LOAD( "xp000019.u67",   0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) )
6677 
6678   ROM_REGION( 0x10000, "user1", 0 )
6679   ROM_LOAD( "x002025p.u66",   0x00000, 0x10000, CRC(f3dac423) SHA1(e9394d330deb3b8a1001e57e72a506cd9098f161) ) /* Deuces Wild Bonus Poker */
6680 
6681   ROM_REGION( 0x020000, "gfx1", 0 )
6682   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6683   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6684   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6685   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6686 
6687   ROM_REGION( 0x200, "proms", 0 )
6688   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6689ROM_END
6690 
6691ROM_START( pex2026p ) /* Superboard : Deuces Wild Bonus Poker (X002026P+XP000019) */
6692/*
6693                                   w/D 6-K 3-5         w/A w/oD
6694PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
6695-----------------------------------------------------------------------
6696  P553A     1   1    3   3   4  13  25  20  40  80 200 400 250    800
6697  % Range: 94.8-96.8%  Optimum: 98.8%  Hit Frequency: 44.6%
6698     Programs Available: X002026P
6699*/
6700   ROM_REGION( 0x10000, "maincpu", 0 )
6701   ROM_LOAD( "xp000019.u67",   0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) )
6702 
6703   ROM_REGION( 0x10000, "user1", 0 )
6704   ROM_LOAD( "x002026p.u66",   0x00000, 0x10000, CRC(7fcbc10a) SHA1(5d50b356ae1a3461a5916b469f85b690b086e675) ) /* Deuces Wild Bonus Poker */
6705 
6706   ROM_REGION( 0x020000, "gfx1", 0 )
6707   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6708   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6709   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6710   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6711 
6712   ROM_REGION( 0x200, "proms", 0 )
6713   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6714ROM_END
6715 
6716ROM_START( pex2027p ) /* Superboard : Deuces Wild Bonus Poker (X002027P+XP000019) */
6717/*
6718                                   w/D 6-K 3-5         w/A w/oD
6719PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
6720-----------------------------------------------------------------------
6721  P554A     1   1    3   3   4  10  25  20  40  80 200 400 250    800
6722  % Range: 93.4-95.4%  Optimum: 97.4%  Hit Frequency: 44.6%
6723     Programs Available: X002027P
6724*/
6725   ROM_REGION( 0x10000, "maincpu", 0 )
6726   ROM_LOAD( "xp000019.u67",   0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) )
6727 
6728   ROM_REGION( 0x10000, "user1", 0 )
6729   ROM_LOAD( "x002027p.u66",   0x00000, 0x10000, CRC(40dbc35a) SHA1(56bf79738e35a22d1f23d76cd6197c8949eba3fb) ) /* Deuces Wild Bonus Poker */
6730 
6731   ROM_REGION( 0x020000, "gfx1", 0 )
6732   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6733   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6734   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6735   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6736 
6737   ROM_REGION( 0x200, "proms", 0 )
6738   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6739ROM_END
6740 
6741ROM_START( pex2029p ) /* Superboard : Deuces Wild Bonus Poker (X002029P+XP000019) */
6742/*
6743                                   w/D 6-K 3-5         w/A w/oD
6744PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
6745-----------------------------------------------------------------------
6746  P556A     1   1    2   3   4  10  25  20  40  80 200 400 250    800
6747  % Range: 91.3-93.3%  Optimum: 95.3%  Hit Frequency: 45.0%
6748     Programs Available: X002029P
6749*/
6750   ROM_REGION( 0x10000, "maincpu", 0 )
6751   ROM_LOAD( "xp000019.u67",   0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) )
6752 
6753   ROM_REGION( 0x10000, "user1", 0 )
6754   ROM_LOAD( "x002029p.u66",   0x00000, 0x10000, CRC(e2f6fb89) SHA1(4b60b580b00b4268d1cb9065ffe0d21f8fa6a931) ) /* Deuces Wild Bonus Poker */
6755 
6756   ROM_REGION( 0x020000, "gfx1", 0 )
6757   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6758   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6759   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6760   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6761 
6762   ROM_REGION( 0x200, "proms", 0 )
6763   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6764ROM_END
6765 
6766ROM_START( pex2031p ) /* Superboard : Lucky Deal Poker (X002031P+XP000112) */
6767/*
6768                                      5-K 2-4
6769PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6770-----------------------------------------------------------------
6771  P566AL    1    1    3   5    7   9  25  40  80  50 250    800
6772  % Range: 93.0-95.0%  Optimum: 97.0%  Hit Frequency: 42.9%
6773     Programs Available: X002031P
6774 
6775Straights or Better on the initial deal PAY DOUBLE!
6776 
6777*/
6778   ROM_REGION( 0x10000, "maincpu", 0 )
6779   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
6780 
6781   ROM_REGION( 0x10000, "user1", 0 )
6782   ROM_LOAD( "x002031p.u66",   0x00000, 0x10000, CRC(c883fbdd) SHA1(c0444ffdac1ffe542d0d6a65f3c810346e2b2e05) ) /* Lucky Deal Poker */
6783 
6784   ROM_REGION( 0x020000, "gfx1", 0 )
6785   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
6786   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
6787   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
6788   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
6789 
6790   ROM_REGION( 0x200, "proms", 0 )
6791   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6792ROM_END
6793 
6794ROM_START( pex2035p ) /* Superboard : White Hot Aces Poker (X002035P+XP000112) */
6795/*
6796                                      5-K 2-4
6797PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6798-----------------------------------------------------------------
6799  P581A     1    1    3   4    5   7  50 120 240  80 250    800
6800  % Range: 93.4-95.4%  Optimum: 97.4%  Hit Frequency: 44.7%
6801     Programs Available: X002035P
6802*/
6803   ROM_REGION( 0x10000, "maincpu", 0 )
6804   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
6805 
6806   ROM_REGION( 0x10000, "user1", 0 )
6807   ROM_LOAD( "x002035p.u66",   0x00000, 0x10000, CRC(dc3f0742) SHA1(d57cf3353b81f41895458019e47203f98645f17a) ) /* White Hot Aces Poker */
6808 
6809   ROM_REGION( 0x020000, "gfx1", 0 )
6810   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
6811   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
6812   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
6813   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
6814 
6815   ROM_REGION( 0x200, "proms", 0 )
6816   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6817ROM_END
6818 
6819ROM_START( pex2036p ) /* Superboard : White Hot Aces Poker (X002036P+XP000112) */
6820/*
6821                                      5-K 2-4
6822PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6823-----------------------------------------------------------------
6824  P582A     1    1    3   4    5   6  50 120 240  80 250    800
6825  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.7%
6826     Programs Available: X002036P
6827*/
6828   ROM_REGION( 0x10000, "maincpu", 0 )
6829   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
6830 
6831   ROM_REGION( 0x10000, "user1", 0 )
6832   ROM_LOAD( "x002036p.u66",   0x00000, 0x10000, CRC(69207baf) SHA1(fe038b969106ae5cdc8dde1c06497be9c7b5b8bf) ) /* White Hot Aces Poker */
6833 
6834   ROM_REGION( 0x020000, "gfx1", 0 )
6835   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
6836   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
6837   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
6838   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
6839 
6840   ROM_REGION( 0x200, "proms", 0 )
6841   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6842ROM_END
6843 
6844ROM_START( pex2038p ) /* Superboard : Nevada Bonus Poker (X002038P+XP000038) */
6845/*
6846                                         2-K
6847PayTable   Js+  2PR  3K  3A  STR  FL  FH  4K  4A  SF  RF  (Bonus)
6848-----------------------------------------------------------------
6849  P576A     1    1    3   6   5    7  10  25 200 100 250    800
6850  % Range: 93.2-95.2%  Optimum: 97.2%  Hit Frequency: 43.4%
6851     Programs Available: X002038P
6852*/
6853   ROM_REGION( 0x10000, "maincpu", 0 )
6854   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6855 
6856   ROM_REGION( 0x10000, "user1", 0 )
6857   ROM_LOAD( "x002038p.u66",   0x00000, 0x10000, CRC(58d01ba5) SHA1(6d4cde9c9e55967db2b661c7123cce9958a00639) ) /* Nevada Bonus Poker */
6858 
6859   ROM_REGION( 0x020000, "gfx1", 0 )
6860   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6861   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6862   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6863   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6864 
6865   ROM_REGION( 0x200, "proms", 0 )
6866   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6867ROM_END
6868 
6869ROM_START( pex2040p ) /* Superboard : Nevada Bonus Poker (X002040P+XP000038) */
6870/*
6871                                         2-K
6872PayTable   Js+  2PR  3K  3A  STR  FL  FH  4K  4A  SF  RF  (Bonus)
6873-----------------------------------------------------------------
6874  P578A     1    1    3   6   5    6   9  25 200 100 250    800
6875  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 44.2%
6876     Programs Available: X002040P
6877*/
6878   ROM_REGION( 0x10000, "maincpu", 0 )
6879   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6880 
6881   ROM_REGION( 0x10000, "user1", 0 )
6882   ROM_LOAD( "x002040p.u66",   0x00000, 0x10000, CRC(38acb477) SHA1(894f5861ac84323e50e8972602251f2873988e6c) ) /* Nevada Bonus Poker */
6883 
6884   ROM_REGION( 0x020000, "gfx1", 0 )
6885   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6886   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6887   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6888   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6889 
6890   ROM_REGION( 0x200, "proms", 0 )
6891   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6892ROM_END
6893 
6894ROM_START( pex2042p ) /* Superboard : Triple Bonus Poker (X002042P+XP000038) */
6895/*
6896                                      5-K 2-4
6897PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6898-----------------------------------------------------------------
6899  P604A     1    1    3   4    7  11  75 120 240  50 250    800
6900  % Range: 95.6-97.6%  Optimum: 99.6%  Hit Frequency: 34.7%
6901     Programs Available: X002042P
6902*/
6903   ROM_REGION( 0x10000, "maincpu", 0 )
6904   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6905 
6906   ROM_REGION( 0x10000, "user1", 0 )
6907   ROM_LOAD( "x002042p.u66",   0x00000, 0x10000, CRC(12787a36) SHA1(4ef478cc5c23694ffa6733e2fc47c2b6f545c30a) ) /* Triple Bonus Poker */
6908 
6909   ROM_REGION( 0x020000, "gfx1", 0 )
6910   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6911   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6912   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6913   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6914 
6915   ROM_REGION( 0x200, "proms", 0 )
6916   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6917ROM_END
6918 
6919ROM_START( pex2043p ) /* Superboard : Triple Bonus Poker (X002043P+XP000038) */
6920/*
6921                                      5-K 2-4
6922PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6923-----------------------------------------------------------------
6924  P605A     1    1    3   4    7  10  75 120 240  50 250    800
6925  % Range: 94.5-96.5%  Optimum: 98.5%  Hit Frequency: 34.7%
6926     Programs Available: X002043P
6927*/
6928   ROM_REGION( 0x10000, "maincpu", 0 )
6929   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6930 
6931   ROM_REGION( 0x10000, "user1", 0 )
6932   ROM_LOAD( "x002043p.u66",   0x00000, 0x10000, CRC(2cec81ab) SHA1(d28fa9075c63e49d34c463f19e7741609b0b3343) ) /* Triple Bonus Poker */
6933 
6934   ROM_REGION( 0x020000, "gfx1", 0 )
6935   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6936   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6937   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6938   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6939 
6940   ROM_REGION( 0x200, "proms", 0 )
6941   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6942ROM_END
6943 
6944ROM_START( pex2044p ) /* Superboard : Triple Bonus Poker (X002044P+XP000038) */
6945/*
6946                                      5-K 2-4
6947PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6948-----------------------------------------------------------------
6949  P606A     1    1    3   4    7   9  75 120 240  50 250    800
6950  % Range: 93.5-95.5%  Optimum: 97.5%  Hit Frequency: 34.7%
6951     Programs Available: X002044P
6952*/
6953   ROM_REGION( 0x10000, "maincpu", 0 )
6954   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6955 
6956   ROM_REGION( 0x10000, "user1", 0 )
6957   ROM_LOAD( "x002044p.u66",   0x00000, 0x10000, CRC(158af97f) SHA1(452247d981f1202da8c44a31f0d3343184d3db41) ) /* Triple Bonus Poker */
6958 
6959   ROM_REGION( 0x020000, "gfx1", 0 )
6960   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6961   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6962   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6963   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6964 
6965   ROM_REGION( 0x200, "proms", 0 )
6966   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6967ROM_END
6968 
6969ROM_START( pex2045p ) /* Superboard : Triple Bonus Poker (X002045P+XP000038) */
6970/*
6971                                      5-K 2-4
6972PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6973-----------------------------------------------------------------
6974  P607A     1    1    3   4    6   9  75 120 240  50 250    800
6975  % Range: 91.9-93.9%  Optimum: 95.9%  Hit Frequency: 32.5%
6976     Programs Available: X002045P
6977*/
6978   ROM_REGION( 0x10000, "maincpu", 0 )
6979   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6980 
6981   ROM_REGION( 0x10000, "user1", 0 )
6982   ROM_LOAD( "x002045p.u66",   0x00000, 0x10000, CRC(75fe81db) SHA1(980bcc06b54a1ef78e3beac1db83b73e17a04818) ) /* Triple Bonus Poker */
6983 
6984   ROM_REGION( 0x020000, "gfx1", 0 )
6985   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6986   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6987   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6988   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6989 
6990   ROM_REGION( 0x200, "proms", 0 )
6991   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6992ROM_END
6993 
6994ROM_START( pex2066p ) /* Superboard : Double Double Bonus Poker (X002066P+XP000038) */
6995/*
6996                                                  2-4
6997                                                   4K    4A
6998                                      5-K 2-4     with   with
6999PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7000-----------------------------------------------------------------------------
7001  P505A     1    1    3   4    6   9  50  80 160   160   400  50 250    800
7002  % Range: 95.0-97.0%  Optimum: 99.0%  Hit Frequency: 44.7%
7003     Programs Available: X002066P
7004*/
7005   ROM_REGION( 0x10000, "maincpu", 0 )
7006   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7007 
7008   ROM_REGION( 0x10000, "user1", 0 )
7009   ROM_LOAD( "x002066p.u66",   0x00000, 0x10000, CRC(01236011) SHA1(3edfee014705b3540386c5e42026ab93628b2597) ) /* Double Double Bonus Poker */
7010 
7011   ROM_REGION( 0x020000, "gfx1", 0 )
7012   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7013   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7014   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7015   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7016 
7017   ROM_REGION( 0x200, "proms", 0 )
7018   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7019ROM_END
7020 
7021ROM_START( pex2067p ) /* Superboard : Double Double Bonus Poker (X002067P+XP000038) */
7022/*
7023                                                  2-4
7024                                                   4K    4A
7025                                      5-K 2-4     with   with
7026PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7027-----------------------------------------------------------------------------
7028  P505A     1    1    3   4    5   9  50  80 160   160   400  50 250    800
7029  % Range: 93.9-95.9%  Optimum: 97.9%  Hit Frequency: 44.8%
7030     Programs Available: X002067P
7031*/
7032   ROM_REGION( 0x10000, "maincpu", 0 )
7033   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7034 
7035   ROM_REGION( 0x10000, "user1", 0 )
7036   ROM_LOAD( "x002067p.u66",   0x00000, 0x10000, CRC(c62adf21) SHA1(25e037f91ef1860d1d45cae12f21bdd1c39ba264) ) /* Double Double Bonus Poker */
7037 
7038   ROM_REGION( 0x020000, "gfx1", 0 )
7039   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7040   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7041   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7042   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7043 
7044   ROM_REGION( 0x200, "proms", 0 )
7045   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7046ROM_END
7047 
7048ROM_START( pex2068p ) /* Superboard : Double Double Bonus Poker (X002068P+XP000038) */
7049/*
7050                                                   2-4    4A
7051                                      5-K 2-4      4K    with
7052PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  with A  2-4  SF  RF  (Bonus)
7053------------------------------------------------------------------------------
7054  P506A     1    1    3   4    5   8  50  80 160   160    400  50 250    800
7055  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.8%
7056     Programs Available: X002068P
7057*/
7058   ROM_REGION( 0x10000, "maincpu", 0 )
7059   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7060 
7061   ROM_REGION( 0x10000, "user1", 0 )
7062   ROM_LOAD( "x002068p.u66",   0x00000, 0x10000, CRC(a5e4279d) SHA1(c4dfd1e77a03a94d9911d1754b5874200bfe6c71) ) /* Double Double Bonus Poker */
7063 
7064   ROM_REGION( 0x020000, "gfx1", 0 )
7065   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7066   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7067   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7068   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7069 
7070   ROM_REGION( 0x200, "proms", 0 )
7071   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7072ROM_END
7073 
7074ROM_START( pex2069p ) /* Superboard : Double Double Bonus Poker (X002069P+XP000038) */
7075/*
7076                                                  2-4
7077                                                   4K    4A
7078                                      5-K 2-4     with   with
7079PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7080-----------------------------------------------------------------------------
7081  P507A     1    1    3   4    5   7  50  80 160   160   400  50 250    800
7082  % Range: 91.6-93.6%  Optimum: 95.6%  Hit Frequency: 45.0%
7083     Programs Available: X002069P
7084*/
7085   ROM_REGION( 0x10000, "maincpu", 0 )
7086   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7087 
7088   ROM_REGION( 0x10000, "user1", 0 )
7089   ROM_LOAD( "x002069p.u66",   0x00000, 0x10000, CRC(875ecfcf) SHA1(80472cb43b36e518216e60a9b4883a81163718a2) ) /* Double Double Bonus Poker - 08/17/95   @ IGT  L95-2088 */
7090 
7091   ROM_REGION( 0x020000, "gfx1", 0 )
7092   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7093   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7094   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7095   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7096 
7097   ROM_REGION( 0x200, "proms", 0 )
7098   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7099ROM_END
7100 
7101ROM_START( pex2070p ) /* Superboard : Double Double Bonus Poker (X002070P+XP000038) */
7102/*
7103                                                  2-4
7104                                                   4K    4A
7105                                      5-K 2-4     with   with
7106PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7107-----------------------------------------------------------------------------
7108  P508A     1    1    3   4    5   6  50  80 160   160   400  50 250    800
7109  % Range: 90.5-92.5%  Optimum: 94.5%  Hit Frequency: 45.0%
7110     Programs Available: X002070P
7111*/
7112   ROM_REGION( 0x10000, "maincpu", 0 )
7113   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7114 
7115   ROM_REGION( 0x10000, "user1", 0 )
7116   ROM_LOAD( "x002070p.u66",   0x00000, 0x10000, CRC(e7732ff9) SHA1(de1a68040d46e78831a6c806f26f253b4ab014b5) ) /* Double Double Bonus Poker */
7117 
7118   ROM_REGION( 0x020000, "gfx1", 0 )
7119   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7120   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7121   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7122   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7123 
7124   ROM_REGION( 0x200, "proms", 0 )
7125   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7126ROM_END
7127 
7128ROM_START( pex2121p ) /* Superboard : Standard Draw Poker (X002121P+XP000038) */
7129/*
7130PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7131----------------------------------------------------------
7132   PE       1    2    3    4    6   9  25  50 300    900
7133  % Range: 95.8-97.8%  Optimum: 99.8%  Hit Frequency: 45.4%
7134     Programs Available: PP0038, X002121P
7135*/
7136   ROM_REGION( 0x10000, "maincpu", 0 )
7137   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7138 
7139   ROM_REGION( 0x10000, "user1", 0 )
7140   ROM_LOAD( "x002121p.u66",   0x00000, 0x10000, CRC(53e5853b) SHA1(a66dc531ac762d8acd2ac5d4228c9c04fc9758df) ) /* Standard Draw Poker */
7141 
7142   ROM_REGION( 0x020000, "gfx1", 0 )
7143   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7144   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7145   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7146   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7147 
7148   ROM_REGION( 0x200, "proms", 0 )
7149   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7150ROM_END
7151 
7152ROM_START( pex2121pa ) /* Superboard : Standard Draw Poker (X002121P+XP000037) */
7153/*
7154PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7155----------------------------------------------------------
7156   PE       1    2    3    4    6   9  25  50 300    900
7157  % Range: 95.8-97.8%  Optimum: 99.8%  Hit Frequency: 45.4%
7158     Programs Available: PP0038, X002121P
7159*/
7160   ROM_REGION( 0x10000, "maincpu", 0 )
7161   ROM_LOAD( "xp000037.u67",   0x00000, 0x10000, CRC(9ee67f20) SHA1(8f23a5593efbd21894b99196889cd560871c4615) ) /* Monaco Region */
7162 
7163   ROM_REGION( 0x10000, "user1", 0 )
7164   ROM_LOAD( "x002121p.u66",   0x00000, 0x10000, CRC(53e5853b) SHA1(a66dc531ac762d8acd2ac5d4228c9c04fc9758df) ) /* Standard Draw Poker */
7165 
7166   ROM_REGION( 0x020000, "gfx1", 0 )
7167   ROM_LOAD( "mro-cg2201.u77",  0x00000, 0x8000, CRC(8f82a114) SHA1(dc4aaaa12442a66386d9bef969afa60a7e2e386b) ) /* Monaco Region */
7168   ROM_LOAD( "mgo-cg2201.u78",  0x08000, 0x8000, CRC(71797c5b) SHA1(15dff00aad8006855af98a2ad39fe1a6e87d7d24) )
7169   ROM_LOAD( "mbo-cg2201.u79",  0x10000, 0x8000, CRC(27201cbf) SHA1(9d197e04c36e94ff08bd76c7200ea4e8f345b8ab) )
7170   ROM_LOAD( "mxo-cg2201.u80",  0x18000, 0x8000, CRC(b79b6d11) SHA1(dcc30465e4de104c54b19e95e7216023576d90c7) )
7171 
7172   ROM_REGION( 0x200, "proms", 0 )
7173   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7174ROM_END
7175 
7176ROM_START( pex2150p ) /* Superboard : 4 of a Kind Bonus Poker (X002105P+XP000038) - $1 Denominations Only */
7177/*
7178                                      5-K 2-4
7179PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7180-----------------------------------------------------------------
7181 P769BA     1    1    3   4    6   9  75 120 240  50 250    800
7182  % Range: 91.9-93.9%  Optimum: 95.9%  Hit Frequency: 32.5%
7183     Programs Available: X002150P
7184*/
7185   ROM_REGION( 0x10000, "maincpu", 0 )
7186   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7187 
7188   ROM_REGION( 0x10000, "user1", 0 )
7189   ROM_LOAD( "x002150p.u66",   0x00000, 0x10000, CRC(b4b531c4) SHA1(f5fa988d963cb0fe00aebc4eb99043d1b70f9516) ) /* 4 of a Kind Bonus Poker */
7190 
7191   ROM_REGION( 0x020000, "gfx1", 0 )
7192   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
7193   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
7194   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
7195   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
7196 
7197   ROM_REGION( 0x200, "proms", 0 )
7198   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7199ROM_END
7200 
7201ROM_START( pex2172p ) /* Superboard : Ace$ Bonus Poker (X002172P+XP000112) */
7202/*
7203                                      5-K 2-4
7204PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SA$  SF  RF  (Bonus)
7205----------------------------------------------------------------------
7206  P789AM    1    2    3   4    5   7  25  40  80  250  50 250    800
7207  % Range: 94.3-96.3%  Optimum: 98.3%  Hit Frequency: 45.5%
7208     Programs Available: X002172P
7209 
7210SA$ - Sequential ACE$ pays the same as RF
7211 
7212*/
7213   ROM_REGION( 0x10000, "maincpu", 0 )
7214   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7215 
7216   ROM_REGION( 0x10000, "user1", 0 )
7217   ROM_LOAD( "x002172p.u66",   0x00000, 0x10000, CRC(d4c44409) SHA1(8082b76a51fa131751b8c2c446cb29fb04f531dc) ) /* Ace$ Bonus Poker - 05/09/96   @ IGT  L96-1119 */
7218 
7219   ROM_REGION( 0x020000, "gfx1", 0 )
7220   ROM_LOAD( "mro-cg2172.u77",  0x00000, 0x8000, CRC(45c84d0b) SHA1(796b6ff14adacf1cbca6acd9b4903d7420519f2b) ) /*  06/05/95   @ IGT  L95-1494  */
7221   ROM_LOAD( "mgo-cg2172.u78",  0x08000, 0x8000, CRC(fff049bc) SHA1(d4b340e0c932db767cade56a55b649c80750fee4) )
7222   ROM_LOAD( "mbo-cg2172.u79",  0x10000, 0x8000, CRC(1665c6be) SHA1(4650b9d8336434ce531c31b63e7780b47ef4e985) )
7223   ROM_LOAD( "mxo-cg2172.u80",  0x18000, 0x8000, CRC(cc9d64e4) SHA1(4bf78e49150ca6fb4a05f3320f712bbbabcacf56) )
7224 
7225   ROM_REGION( 0x200, "proms", 0 )
7226   ROM_LOAD( "capx2172.u43", 0x0000, 0x0200, CRC(c9b4f1da) SHA1(c911da564cfb33218441de0f91e67a02191d76c2) ) /* Philips N82S147N */
7227ROM_END
7228 
7229ROM_START( pex2173p ) /* Superboard : Ace$ Bonus Poker (X002173P+XP000038) */
7230/*
7231                                      5-K 2-4
7232PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SA$  SF  RF  (Bonus)
7233----------------------------------------------------------------------
7234  P790AM    1    2    3   4    5   6  25  40  80  250  50 250    800
7235  % Range: 93.1-95.1%  Optimum: 97.1%  Hit Frequency: 45.5%
7236     Programs Available: X002173P
7237 
7238SA$ - Sequential ACE$ pays the same as RF
7239 
7240*/
7241   ROM_REGION( 0x10000, "maincpu", 0 )
7242   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7243 
7244   ROM_REGION( 0x10000, "user1", 0 )
7245   ROM_LOAD( "x002173p.u66",   0x00000, 0x10000, CRC(509e50e1) SHA1(db4ee11f29107ff48ee5f5410c9d0e1a6a6fd567) ) /* Ace$ Bonus Poker */
7246 
7247   ROM_REGION( 0x020000, "gfx1", 0 )
7248   ROM_LOAD( "mro-cg2172.u77",  0x00000, 0x8000, CRC(45c84d0b) SHA1(796b6ff14adacf1cbca6acd9b4903d7420519f2b) ) /*  06/05/95   @ IGT  L95-1494  */
7249   ROM_LOAD( "mgo-cg2172.u78",  0x08000, 0x8000, CRC(fff049bc) SHA1(d4b340e0c932db767cade56a55b649c80750fee4) )
7250   ROM_LOAD( "mbo-cg2172.u79",  0x10000, 0x8000, CRC(1665c6be) SHA1(4650b9d8336434ce531c31b63e7780b47ef4e985) )
7251   ROM_LOAD( "mxo-cg2172.u80",  0x18000, 0x8000, CRC(cc9d64e4) SHA1(4bf78e49150ca6fb4a05f3320f712bbbabcacf56) )
7252 
7253   ROM_REGION( 0x200, "proms", 0 )
7254   ROM_LOAD( "capx2172.u43", 0x0000, 0x0200, CRC(c9b4f1da) SHA1(c911da564cfb33218441de0f91e67a02191d76c2) ) /* Philips N82S147N */
7255ROM_END
7256 
7257ROM_START( pex2180p ) /* Superboard : Double Bonus Poker (X002180P+XP000038) */
7258/*
7259                                      5-K 2-4
7260PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7261-----------------------------------------------------------------
7262  P437A     1    1    3   4    5   6  50  80 160  50 250    800
7263  % Range: 88.0-90.0%  Optimum: 92.0%  Hit Frequency: 45.1%
7264     Programs Available: X002180P
7265*/
7266   ROM_REGION( 0x10000, "maincpu", 0 )
7267   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7268 
7269   ROM_REGION( 0x10000, "user1", 0 )
7270   ROM_LOAD( "x002180p.u66",   0x00000, 0x10000, CRC(c929b3a5) SHA1(6b47c67275f6894bfcd52640aa32fbe1270dba9c) ) /* Double Bonus Poker */
7271 
7272   ROM_REGION( 0x020000, "gfx1", 0 )
7273   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7274   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7275   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7276   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7277 
7278   ROM_REGION( 0x200, "proms", 0 )
7279   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7280ROM_END
7281 
7282ROM_START( pex2241p ) /* Superboard : 4 of a Kind Bonus Poker 1-100 Coins (X002241P+XP000079) */
7283/*
7284                                       5-K 2-4
7285PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7286------------------------------------------------------------------
7287  ????      1    2    3    4    5   8  25  40  80  50 800    800
7288  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
7289*/
7290   ROM_REGION( 0x10000, "maincpu", 0 )
7291   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
7292 
7293   ROM_REGION( 0x10000, "user1", 0 )
7294   ROM_LOAD( "x002241p.u66",   0x00000, 0x10000, CRC(c6b45cf4) SHA1(3d47e8ff5c915c4b35e4a2ffe20fcc950e838454) ) /* 4 of a Kind Bonus Poker */
7295 
7296   ROM_REGION( 0x020000, "gfx1", 0 )
7297   ROM_LOAD( "mro-cg2242.u77",  0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) )
7298   ROM_LOAD( "mgo-cg2242.u78",  0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) )
7299   ROM_LOAD( "mbo-cg2242.u79",  0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) )
7300   ROM_LOAD( "mxo-cg2242.u80",  0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) )
7301 
7302   ROM_REGION( 0x200, "proms", 0 )
7303   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7304ROM_END
7305 
7306ROM_START( pex2244p ) /* Superboard : Double Bonus Poker 1-100 Coins (X002244P+XP000079) */
7307/*
7308                                       5-K 2-4
7309PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7310------------------------------------------------------------------
7311  ????      1    1    3    5    7   9  50  80 160  50 800    800
7312  % Range: 91.2-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
7313*/
7314   ROM_REGION( 0x10000, "maincpu", 0 )
7315   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
7316 
7317   ROM_REGION( 0x10000, "user1", 0 )
7318   ROM_LOAD( "x002244p.u66",   0x00000, 0x10000, CRC(06a3e60d) SHA1(8abeafab589406ff68898e8f90431c1a5f8d2de5) ) /* Double Bonus Poker */
7319 
7320   ROM_REGION( 0x020000, "gfx1", 0 )
7321   ROM_LOAD( "mro-cg2242.u77",  0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) )
7322   ROM_LOAD( "mgo-cg2242.u78",  0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) )
7323   ROM_LOAD( "mbo-cg2242.u79",  0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) )
7324   ROM_LOAD( "mxo-cg2242.u80",  0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) )
7325 
7326   ROM_REGION( 0x200, "proms", 0 )
7327   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7328ROM_END
7329 
7330ROM_START( pex2245p ) /* Superboard : Standard Draw Poker (X002245P+XP000055) */
7331/*
7332PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7333----------------------------------------------------------
7334  ????      1    2    3    4    5   6  25  50 800    800
7335  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
7336     Programs Available: X002245P
7337*/
7338   ROM_REGION( 0x10000, "maincpu", 0 )
7339   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
7340 
7341   ROM_REGION( 0x10000, "user1", 0 )
7342   ROM_LOAD( "x002245p.u66",   0x00000, 0x10000, CRC(df49a54c) SHA1(1c89d0a114e27e27117120c9e2fc36b124fe7761) ) /* Standard Draw Poker */
7343 
7344   ROM_REGION( 0x020000, "gfx1", 0 )
7345   ROM_LOAD( "mro-cg2242.u77",  0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) )
7346   ROM_LOAD( "mgo-cg2242.u78",  0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) )
7347   ROM_LOAD( "mbo-cg2242.u79",  0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) )
7348   ROM_LOAD( "mxo-cg2242.u80",  0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) )
7349 
7350   ROM_REGION( 0x200, "proms", 0 )
7351   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7352ROM_END
7353 
7354ROM_START( pex2245pa ) /* Superboard : Standard Draw Poker (X002245P+XP000079) */
7355/*
7356PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7357----------------------------------------------------------
7358  ????      1    2    3    4    5   6  25  50 800    800
7359  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
7360     Programs Available: X002245P
7361*/
7362   ROM_REGION( 0x10000, "maincpu", 0 )
7363   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
7364 
7365   ROM_REGION( 0x10000, "user1", 0 )
7366   ROM_LOAD( "x002245p.u66",   0x00000, 0x10000, CRC(df49a54c) SHA1(1c89d0a114e27e27117120c9e2fc36b124fe7761) ) /* Standard Draw Poker */
7367 
7368   ROM_REGION( 0x020000, "gfx1", 0 )
7369   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
7370   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
7371   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
7372   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
7373 
7374   ROM_REGION( 0x200, "proms", 0 )
7375   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7376ROM_END
7377 
7378ROM_START( pex2250p ) /* Superboard : Shockwave Poker (X002250P+XP000050) */
7379/*
7380PayTable   Js+  2PR  3K  STR  FL  FH  4K* SF  RF  (Bonus)
7381---------------------------------------------------------
7382 P598BA     1    1    3   5    8  11  25 100 250    800
7383  % Range: 94.5-96.5%  Optimum: 98.5%  Hit Frequency: 42.6%
7384     Programs Available: X002250P
7385 
73864K* - Getting a 4K hand sets the game in "Shockwave" mode for the next 10 dealt hands.
7387      While in shockwave mode, 4K pays the same as RF
7388 
7389*/
7390   ROM_REGION( 0x10000, "maincpu", 0 )
7391   ROM_LOAD( "xp000050.u67",   0x00000, 0x10000, CRC(cf9e72d6) SHA1(fc5c679aae43df0bd563fbcc3e00a3274af1ed11) )
7392 
7393   ROM_REGION( 0x10000, "user1", 0 )
7394   ROM_LOAD( "x002250p.u66",   0x00000, 0x10000, CRC(8d8810f9) SHA1(14262d83cf5f2511c3de7777336ac9df7270dab2) ) /* Shockwave Poker */
7395 
7396   ROM_REGION( 0x020000, "gfx1", 0 )
7397   ROM_LOAD( "mro-cg2309.u77",  0x00000, 0x8000, CRC(fdef322c) SHA1(8024cb6fcba18b56168e853173b9856c4d011831) )
7398   ROM_LOAD( "mgo-cg2309.u78",  0x08000, 0x8000, CRC(f70b30c0) SHA1(e4acd0060b3d68b9f385cb60ed43a0988fca66a8) )
7399   ROM_LOAD( "mbo-cg2309.u79",  0x10000, 0x8000, CRC(1843eec7) SHA1(0d0b80cd4d458081394c2943023b2440c2c2e42c) )
7400   ROM_LOAD( "mxo-cg2309.u80",  0x18000, 0x8000, CRC(5c73d095) SHA1(078c6c815e8c48988f631d9d37018ea0b4bbfa19) )
7401 
7402   ROM_REGION( 0x200, "proms", 0 )
7403   ROM_LOAD( "capx2309.u43", 0x0000, 0x0200, CRC(5da912cc) SHA1(6294f8be682e70e9052c9ae5f6865467e9dba2e3) )
7404ROM_END
7405 
7406ROM_START( pex2251p ) /* Superboard : Shockwave Poker (X002251P+XP000050) */
7407/*
7408PayTable   Js+  2PR  3K  STR  FL  FH  4K* SF  RF  (Bonus)
7409---------------------------------------------------------
7410  P719A     1    1    3   5    8  12  25 100 250    800
7411  % Range: 95.6-97.6%  Optimum: 99.6%  Hit Frequency: 42.6%
7412     Programs Available: X002251P
7413 
74144K* - Getting a 4K hand sets the game in "Shockwave" mode for the next 10 dealt hands.
7415      While in shockwave mode, 4K pays the same as RF
7416 
7417*/
7418   ROM_REGION( 0x10000, "maincpu", 0 )
7419   ROM_LOAD( "xp000050.u67",   0x00000, 0x10000, CRC(cf9e72d6) SHA1(fc5c679aae43df0bd563fbcc3e00a3274af1ed11) )
7420 
7421   ROM_REGION( 0x10000, "user1", 0 )
7422   ROM_LOAD( "x002251p.u66",   0x00000, 0x10000, CRC(9069aa23) SHA1(299d5befce817e8334d4ac53470ff678775546ff) ) /* Shockwave Poker */
7423 
7424   ROM_REGION( 0x020000, "gfx1", 0 )
7425   ROM_LOAD( "mro-cg2309.u77",  0x00000, 0x8000, CRC(fdef322c) SHA1(8024cb6fcba18b56168e853173b9856c4d011831) )
7426   ROM_LOAD( "mgo-cg2309.u78",  0x08000, 0x8000, CRC(f70b30c0) SHA1(e4acd0060b3d68b9f385cb60ed43a0988fca66a8) )
7427   ROM_LOAD( "mbo-cg2309.u79",  0x10000, 0x8000, CRC(1843eec7) SHA1(0d0b80cd4d458081394c2943023b2440c2c2e42c) )
7428   ROM_LOAD( "mxo-cg2309.u80",  0x18000, 0x8000, CRC(5c73d095) SHA1(078c6c815e8c48988f631d9d37018ea0b4bbfa19) )
7429 
7430   ROM_REGION( 0x200, "proms", 0 )
7431   ROM_LOAD( "capx2309.u43", 0x0000, 0x0200, CRC(5da912cc) SHA1(6294f8be682e70e9052c9ae5f6865467e9dba2e3) )
7432ROM_END
7433 
7434ROM_START( pex2272p ) /* Superboard : Black Jack Bonus Poker (X002272P+XP000055) */
7435/*
7436Black Jack as in Jack of Spades/Clubs, not 21       With With
7437                                                     BJ   BJ  With
7438                                        5-K 2-4     5-K  2-4   BJ
7439PayTable   Js+ 2PR  STR  FL  FH  4K  SF  4K  4K  4A  4K   4K   4A  RF (Bonus)
7440-----------------------------------------------------------------------------
7441 P870BB     1   1    3    4   7   9  50  25  80 160 160  400  400 400   800
7442  % Range: 95.4-97.4%  Optimum: 99.4%  Hit Frequency: ???%
7443     Programs Available: X002272P
7444*/
7445   ROM_REGION( 0x10000, "maincpu", 0 )
7446   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
7447 
7448   ROM_REGION( 0x10000, "user1", 0 )
7449   ROM_LOAD( "x002272p.u66",   0x00000, 0x10000, CRC(ee4f27b9) SHA1(1ee105430358ea27badd943bb6b18663e4029388) ) /* Black Jack Bonus Poker */
7450 
7451   ROM_REGION( 0x020000, "gfx1", 0 )
7452   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7453   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7454   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7455   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7456 
7457   ROM_REGION( 0x200, "proms", 0 )
7458   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7459ROM_END
7460 
7461ROM_START( pex2275p ) /* Superboard : Black Jack Bonus Poker (X002275P+XP000055) */
7462/*
7463Black Jack as in Jack of Spades/Clubs, not 21       With With
7464                                                     BJ   BJ  With
7465                                        5-K 2-4     5-K  2-4   BJ
7466PayTable   Js+ 2PR  STR  FL  FH  4K  SF  4K  4K  4A  4K   4K   4A  RF (Bonus)
7467-----------------------------------------------------------------------------
7468 P873BB     1   1    3    4   5   8  50  25  80 160 160  400  400 400   800
7469  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: ???%
7470     Programs Available: X002275P
7471*/
7472   ROM_REGION( 0x10000, "maincpu", 0 )
7473   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
7474 
7475   ROM_REGION( 0x10000, "user1", 0 )
7476   ROM_LOAD( "x002275p.u66",   0x00000, 0x10000, CRC(5ba4f5ab) SHA1(def069025ec4aa340646dfd7cfacc8ce836a210c) ) /* Black Jack Bonus Poker */
7477 
7478   ROM_REGION( 0x020000, "gfx1", 0 )
7479   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7480   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7481   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7482   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7483 
7484   ROM_REGION( 0x200, "proms", 0 )
7485   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7486ROM_END
7487 
7488ROM_START( pex2276p ) /* Superboard : Black Jack Bonus Poker (X002276P+XP000055) */
7489/*
7490Black Jack as in Jack of Spades/Clubs, not 21       With With
7491                                                     BJ   BJ  With
7492                                        5-K 2-4     5-K  2-4   BJ
7493PayTable   Js+ 2PR  STR  FL  FH  4K  SF  4K  4K  4A  4K   4K   4A  RF (Bonus)
7494-----------------------------------------------------------------------------
7495 P874BB     1   1    3    4   5   7  50  25  80 160 160  400  400 400   800
7496  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: ???%
7497     Programs Available: X002276P
7498*/
7499   ROM_REGION( 0x10000, "maincpu", 0 )
7500   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
7501 
7502   ROM_REGION( 0x10000, "user1", 0 )
7503   ROM_LOAD( "x002276p.u66",   0x00000, 0x10000, CRC(7a660f24) SHA1(d0b621a779bfc00668492cfb3dea65d1583fa4f1) ) /* Black Jack Bonus Poker */
7504 
7505   ROM_REGION( 0x020000, "gfx1", 0 )
7506   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7507   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7508   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7509   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7510 
7511   ROM_REGION( 0x200, "proms", 0 )
7512   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7513ROM_END
7514 
7515ROM_START( pex2283p ) /* Superboard : Dealt Deuces Wild Bonus (X002283P+XP000057) */
7516/*
7517                                   w/D 6-K 3-5         w/A w/oD
7518PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
7519-----------------------------------------------------------------------
7520  ????      1   1    3   3   4  10  25  20  40  80 200 400 250    800
7521  % Range: 94.6-96.6%  Optimum: 98.6%  Hit Frequency: ??.?%
7522     Programs Available: X002283P
7523 
7524Bonus "Dealt" payouts at MAX BET are:
7525 Dealt 3 Deuces .....   15
7526 Dealt 4 Deuces ..... 1500
7527 Dealt 4 Deuces + Ace 8000
7528 
7529Designed and co-created by Best Bet Products
7530 
7531*/
7532   ROM_REGION( 0x10000, "maincpu", 0 )
7533   ROM_LOAD( "xp000057.u67",   0x00000, 0x10000, CRC(a1186020) SHA1(d42823aac1cb16521ecc0a09cba694374642cff7) )
7534 
7535   ROM_REGION( 0x10000, "user1", 0 )
7536   ROM_LOAD( "x002283p.u66",   0x00000, 0x10000, CRC(90f7f7b3) SHA1(0c8460391303ed16f20c41472840d798950bb2c0) ) /* Dealt Deuces Wild Bonus */
7537 
7538   ROM_REGION( 0x020000, "gfx1", 0 )
7539   ROM_LOAD( "mro-cg2325.u77",  0x00000, 0x8000, CRC(ae53d1f6) SHA1(bf28b8f784d6683bb352944b88d0b646d7313efd) )
7540   ROM_LOAD( "mgo-cg2325.u78",  0x08000, 0x8000, CRC(a637679e) SHA1(4cb24f1f907ae482419981cac49af19ca1cdbc99) )
7541   ROM_LOAD( "mbo-cg2325.u79",  0x10000, 0x8000, CRC(4a179b6d) SHA1(2ed51ed85444b939bbd48344f18fa97c146438ff) )
7542   ROM_LOAD( "mxo-cg2325.u80",  0x18000, 0x8000, CRC(afae8fd5) SHA1(7c6380f21fe8444234ada8d88a46d3a4f1623b29) )
7543 
7544   ROM_REGION( 0x200, "proms", 0 )
7545   ROM_LOAD( "capx2325.u43", 0x0000, 0x0200, NO_DUMP )
7546   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7547ROM_END
7548 
7549ROM_START( pex2284p ) /* Superboard : Barbaric Decues Wild Bonus (X002284P+XP000057) */
7550/*
7551                                   w/D 6-K 3-5         w/A w/oD
7552PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
7553-----------------------------------------------------------------------
7554  ????      1   1    2   3   4  12  25  20  40  80 200 400 250    800
7555  % Range: 93.5-95.5%  Optimum: 97.5%  Hit Frequency: ??.?%
7556     Programs Available: X002284P
7557 
7558Bonus "Dealt" payouts at MAX BET are:
7559 Dealt 3 Deuces .....   15
7560 Dealt 4 Deuces ..... 1500
7561 Dealt 4 Deuces + Ace 8000
7562 
7563Designed and co-created by Best Bet Products
7564 
7565*/
7566   ROM_REGION( 0x10000, "maincpu", 0 )
7567   ROM_LOAD( "xp000057.u67",   0x00000, 0x10000, CRC(a1186020) SHA1(d42823aac1cb16521ecc0a09cba694374642cff7) )
7568 
7569   ROM_REGION( 0x10000, "user1", 0 )
7570   ROM_LOAD( "x002284p.u66",   0x00000, 0x10000, CRC(2a3cb2a9) SHA1(76bfbf9a25913604454142716e1433ec73f0f0c9) ) /* Barbaric Decues Wild Bonus */
7571 
7572   ROM_REGION( 0x020000, "gfx1", 0 )
7573   ROM_LOAD( "mro-cg2325.u77",  0x00000, 0x8000, CRC(ae53d1f6) SHA1(bf28b8f784d6683bb352944b88d0b646d7313efd) )
7574   ROM_LOAD( "mgo-cg2325.u78",  0x08000, 0x8000, CRC(a637679e) SHA1(4cb24f1f907ae482419981cac49af19ca1cdbc99) )
7575   ROM_LOAD( "mbo-cg2325.u79",  0x10000, 0x8000, CRC(4a179b6d) SHA1(2ed51ed85444b939bbd48344f18fa97c146438ff) )
7576   ROM_LOAD( "mxo-cg2325.u80",  0x18000, 0x8000, CRC(afae8fd5) SHA1(7c6380f21fe8444234ada8d88a46d3a4f1623b29) )
7577 
7578   ROM_REGION( 0x200, "proms", 0 )
7579   ROM_LOAD( "capx2325.u43", 0x0000, 0x0200, NO_DUMP )
7580   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7581ROM_END
7582 
7583ROM_START( pex2302p ) /* Superboard : Bonus Poker Deluxe (X002302P+XP000038) */
7584/*
7585PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
7586---------------------------------------------------------
7587  P902A     1    1    3   4    5   6  80  50 250    800
7588  % Range: 91.4-93.4%  Optimum: 95.4%  Hit Frequency: 45.2%
7589     Programs Available: X002302P
7590*/
7591   ROM_REGION( 0x10000, "maincpu", 0 )
7592   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7593 
7594   ROM_REGION( 0x10000, "user1", 0 )
7595   ROM_LOAD( "x002302p.u66",   0x00000, 0x10000, CRC(8e52646e) SHA1(f6722778eb7e2981a00f8e4e5ea32f71a35e20e5) ) /* Bonus Poker Deluxe */
7596 
7597   ROM_REGION( 0x020000, "gfx1", 0 )
7598   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7599   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7600   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7601   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7602 
7603   ROM_REGION( 0x200, "proms", 0 )
7604   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7605ROM_END
7606 
7607ROM_START( pex2303p ) /* Superboard : White Hot Aces Poker (X002303P+XP000112) */
7608/*
7609                                      5-K 2-4
7610PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7611-----------------------------------------------------------------
7612  P903A     1    1    3   4    5   5  50 120 240  80 250    800
7613  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
7614     Programs Available: X002303P
7615*/
7616   ROM_REGION( 0x10000, "maincpu", 0 )
7617   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7618 
7619   ROM_REGION( 0x10000, "user1", 0 )
7620   ROM_LOAD( "x002303p.u66",   0x00000, 0x10000, CRC(81cfd71b) SHA1(485a45412cad705d050b369c4cd1472a438374e8) ) /* White Hot Aces Poker */
7621 
7622   ROM_REGION( 0x020000, "gfx1", 0 )
7623   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7624   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7625   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7626   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7627 
7628   ROM_REGION( 0x200, "proms", 0 )
7629   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7630ROM_END
7631 
7632ROM_START( pex2306p ) /* Superboard : Triple Double Bonus Poker (X002306P+XP000112) */
7633/*
7634                                                  2-4
7635                                                   4K    4A
7636                                      5-K 2-4     with   with
7637PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7638-----------------------------------------------------------------------------
7639 P908BM     1    1    2   4    7   9  50  80 160   400   400  50 400    800
7640  % Range: 95.6-97.6%  Optimum: 99.6%  Hit Frequency: 43.3%
7641     Programs Available: X002306P
7642*/
7643   ROM_REGION( 0x10000, "maincpu", 0 )
7644   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7645 
7646   ROM_REGION( 0x10000, "user1", 0 )
7647   ROM_LOAD( "x002306p.u66",   0x00000, 0x10000, CRC(ef36ea67) SHA1(8914ad20526fd63e14d9fa1901e9c779a11eb29d) ) /* Triple Double Bonus Poker */
7648 
7649   ROM_REGION( 0x020000, "gfx1", 0 )
7650   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7651   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7652   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7653   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7654 
7655   ROM_REGION( 0x200, "proms", 0 )
7656   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7657ROM_END
7658 
7659ROM_START( pex2307p ) /* Superboard : Triple Double Bonus Poker (X002307P+XP000112) */
7660/*
7661                                                  2-4
7662                                                   4K    4A
7663                                      5-K 2-4     with   with
7664PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7665-----------------------------------------------------------------------------
7666 P908BM     1    1    3   4    6   9  50  80 160   400   400  50 400    800
7667  % Range: 94.2-96.2%  Optimum: 98.2%  Hit Frequency: 44.1%
7668     Programs Available: X002307P
7669*/
7670   ROM_REGION( 0x10000, "maincpu", 0 )
7671   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7672 
7673   ROM_REGION( 0x10000, "user1", 0 )
7674   ROM_LOAD( "x002307p.u66",   0x00000, 0x10000, CRC(c6d5db70) SHA1(017e1e382fb789e4cd8b410362ad5e82b61f61db) ) /* Triple Double Bonus Poker */
7675 
7676   ROM_REGION( 0x020000, "gfx1", 0 )
7677   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7678   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7679   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7680   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7681 
7682   ROM_REGION( 0x200, "proms", 0 )
7683   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7684ROM_END
7685 
7686ROM_START( pex2308p ) /* Superboard : Triple Double Bonus Poker (X002308P+XP000112) */
7687/*
7688                                                  2-4
7689                                                   4K    4A
7690                                      5-K 2-4     with   with
7691PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7692-----------------------------------------------------------------------------
7693 P909BM     1    1    2   4    5   9  50  80 160   400   400  50 400    800
7694  % Range: 93.0-95.0%  Optimum: 97.0%  Hit Frequency: 44.6%
7695     Programs Available: X002308P
7696*/
7697   ROM_REGION( 0x10000, "maincpu", 0 )
7698   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7699 
7700   ROM_REGION( 0x10000, "user1", 0 )
7701   ROM_LOAD( "x002308p.u66",   0x00000, 0x10000, CRC(632fe9e4) SHA1(bb99a610f42aa32ad4729bb2bb4b99b4070977cf) ) /* Triple Double Bonus Poker */
7702 
7703   ROM_REGION( 0x020000, "gfx1", 0 )
7704   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7705   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7706   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7707   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7708 
7709   ROM_REGION( 0x200, "proms", 0 )
7710   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7711ROM_END
7712 
7713ROM_START( pex2310p ) /* Superboard : Triple Double Bonus Poker (X002310P+XP000112) */
7714/*
7715                                                  2-4
7716                                                   4K    4A
7717                                      5-K 2-4     with   with
7718PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7719-----------------------------------------------------------------------------
7720 P911BM     1    1    2   4    5   7  50  80 160   400   400  50 400    800
7721  % Range: 90.9-92.9%  Optimum: 94.9%  Hit Frequency: 44.5%
7722     Programs Available: X002310P
7723*/
7724   ROM_REGION( 0x10000, "maincpu", 0 )
7725   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7726 
7727   ROM_REGION( 0x10000, "user1", 0 )
7728   ROM_LOAD( "x002310p.u66",   0x00000, 0x10000, CRC(c006c3f1) SHA1(45c87a2f882147d1d132237cfa12ae47b202264f) ) /* Triple Double Bonus Poker */
7729 
7730   ROM_REGION( 0x020000, "gfx1", 0 )
7731   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7732   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7733   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7734   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7735 
7736   ROM_REGION( 0x200, "proms", 0 )
7737   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7738ROM_END
7739 
7740ROM_START( pex2314p ) /* Superboard : Triple Bonus Poker Plus (X002314P+XP000112) */
7741/*
7742                                      5-K 2-4
7743PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7744-----------------------------------------------------------------
7745  P903A     1    1    3   4    5   6  50 120 240 100 250    800
7746  % Range: 92.6-94.6%  Optimum: 96.6%  Hit Frequency: 44.7%
7747     Programs Available: X002314P
7748*/
7749   ROM_REGION( 0x10000, "maincpu", 0 )
7750   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7751 
7752   ROM_REGION( 0x10000, "user1", 0 )
7753   ROM_LOAD( "x002314p.u66",   0x00000, 0x10000, CRC(bfc0acf0) SHA1(a6b7c228a84d0ea224ad945964c53de2d44e4a8d) ) /* Triple Bonus Poker Plus */
7754 
7755   ROM_REGION( 0x020000, "gfx1", 0 )
7756   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7757   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7758   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7759   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7760 
7761   ROM_REGION( 0x200, "proms", 0 )
7762   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7763ROM_END
7764 
7765ROM_START( pex2374p ) /* Superboard : Super Aces Poker (X002374P+XP000112) */
7766/*
7767                                      5-K 2-4
7768PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7769-----------------------------------------------------------------
7770 P956A      1    1    3   4    5   6  50  80 400  60 250    800
7771  % Range: 93.7-95.7%  Optimum: 97.8%  Hit Frequency: 44.8%
7772     Programs Available: X002374P
7773*/
7774   ROM_REGION( 0x10000, "maincpu", 0 )
7775   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7776 
7777   ROM_REGION( 0x10000, "user1", 0 )
7778   ROM_LOAD( "x002374p.u66",   0x00000, 0x10000, CRC(fc4b6c8d) SHA1(b101f9042bd54dbfdeed4c7a3acf3798096f6857) ) /* Super Aces Poker */
7779 
7780   ROM_REGION( 0x020000, "gfx1", 0 )
7781   ROM_LOAD( "mro-cg2374.u72",  0x00000, 0x8000, CRC(ceeb714d) SHA1(6de908d04bcaa243195943affa9ad0d725de5c81) ) /* Custom Horseshoe Casino card backs */
7782   ROM_LOAD( "mgo-cg2374.u73",  0x08000, 0x8000, CRC(d0fabad5) SHA1(438ebe074fa3eaa3073ef042f481449f416d0665) )
7783   ROM_LOAD( "mbo-cg2374.u74",  0x10000, 0x8000, CRC(9a0fbc8d) SHA1(aa39f47cbeaf8218fd2d753c9a350e9eab5df5d3) )
7784   ROM_LOAD( "mxo-cg2374.u75",  0x18000, 0x8000, CRC(99814562) SHA1(2d8e132f4cc4edd06332c0327927219513b22832) )
7785 
7786   ROM_REGION( 0x200, "proms", 0 )
7787   ROM_LOAD( "cap2374.u43", 0x0000, 0x0200, CRC(f922e1b8) SHA1(4aa5291c59431c022dc0561a6e3b38209f60286a) )
7788ROM_END
7789 
7790ROM_START( pex2377p ) /* Superboard : Super Double Bonus Poker (X002377P+XP000112) */
7791/*
7792                                          2-4 J-K
7793PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4K  4A  SF  RF  (Bonus)
7794---------------------------------------------------------------------
7795 P977A      1    1    3   4    5   6  50  80 120 160  80 250    800
7796  % Range: 92.9-94.9%  Optimum: 96.9%  Hit Frequency: 45.2%
7797     Programs Available: X002377P
7798*/
7799   ROM_REGION( 0x10000, "maincpu", 0 )
7800   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7801 
7802   ROM_REGION( 0x10000, "user1", 0 )
7803   ROM_LOAD( "x002377p.u66",   0x00000, 0x10000, CRC(541320d2) SHA1(670b17432e994fe1937091e5e96e1d58b9afbf29) ) /* Super Double Bonus Poker */
7804 
7805   ROM_REGION( 0x020000, "gfx1", 0 )
7806   ROM_LOAD( "mro-cg2244.u72",  0x00000, 0x8000, CRC(25561458) SHA1(fe5d624e0e16956df589f3682bad9181bdc99956) ) /*  */
7807   ROM_LOAD( "mgo-cg2244.u73",  0x08000, 0x8000, CRC(b2de0a7a) SHA1(34f0ef951560f6f71e14c822baa4ccb1028b5028) )
7808   ROM_LOAD( "mbo-cg2244.u74",  0x10000, 0x8000, CRC(d2c12418) SHA1(dfb1aebaac23ff6e2cf556f228dbdb7c272a1b30) )
7809   ROM_LOAD( "mxo-cg2244.u75",  0x18000, 0x8000, CRC(8dc10a99) SHA1(92edb31f44e52609ed1ba2a53577048d424c6238) )
7810 
7811   ROM_REGION( 0x200, "proms", 0 )
7812   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7813ROM_END
7814 
7815ROM_START( pex2419p ) /* Superboard : Deuces Wild Bonus Poker - French (X002419P+XP000064) */
7816/*
7817   Same payouts as X002027P English Deuces Wild Bonus Poker:
7818 
7819                                   w/D 6-K 3-5         w/A w/oD
7820PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
7821-----------------------------------------------------------------------
7822 PI554A     1   1    3   3   4  13  25  20  40  80 200 400 250    800
7823  % Range: 93.4-95.4%  Optimum: 97.4%  Hit Frequency: 44.6%
7824     Programs Available: X002419P
7825*/
7826   ROM_REGION( 0x10000, "maincpu", 0 )
7827   ROM_LOAD( "xp000064.u67",   0x00000, 0x10000, CRC(bb958158) SHA1(5d171ba71f70c668c70e4afd59ef7a0283798bbd) )
7828 
7829   ROM_REGION( 0x10000, "user1", 0 )
7830   ROM_LOAD( "x002419p.u66",   0x00000, 0x10000, CRC(a9a686c2) SHA1(40b8e2f4a4fab58161f161292024cecd046cc206) ) /* Deuces Wild Bonus Poker - French */
7831 
7832   ROM_REGION( 0x020000, "gfx1", 0 )
7833   ROM_LOAD( "mro-cg2353.u77",  0x00000, 0x8000, CRC(7ed7f7cd) SHA1(406b124b3db5335acf8f8987afbfa10d90e04351) )
7834   ROM_LOAD( "mgo-cg2353.u78",  0x08000, 0x8000, CRC(aab4e5fb) SHA1(7d6e048dc1a9d01900ba71fc23c884637f5850f2) )
7835   ROM_LOAD( "mbo-cg2353.u79",  0x10000, 0x8000, CRC(119f59cd) SHA1(52283feb21b880960efef06c780d4e22b31ea18c) )
7836   ROM_LOAD( "mxo-cg2353.u80",  0x18000, 0x8000, CRC(3bb871c1) SHA1(0b9439fd6565c742c1c7dda23a80bdd1d91d7293) )
7837 
7838   ROM_REGION( 0x200, "proms", 0 )
7839   ROM_LOAD( "capx2307.u43", 0x0000, 0x0200, CRC(58d81338) SHA1(f0044ebbd0128d6fb74d850528ef02730c180f00) )
7840ROM_END
7841 
7842ROM_START( pex2420p ) /* Superboard : Deuces Wild Bonus Poker - French (X002420P+XP000064) */
7843/*
7844   Same payouts as X002028P English Deuces Wild Bonus Poker:
7845 
7846                                   w/D 6-K 3-5         w/A w/oD
7847PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
7848-----------------------------------------------------------------------
7849 PI555A     1   1    2   3   4  12  25  20  40  80 200 400 250    800
7850  % Range: 92.2-94.2%  Optimum: 96.2%  Hit Frequency: 44.9%
7851     Programs Available: X002420P
7852*/
7853   ROM_REGION( 0x10000, "maincpu", 0 )
7854   ROM_LOAD( "xp000064.u67",   0x00000, 0x10000, CRC(bb958158) SHA1(5d171ba71f70c668c70e4afd59ef7a0283798bbd) )
7855 
7856   ROM_REGION( 0x10000, "user1", 0 )
7857   ROM_LOAD( "x002420p.u66",   0x00000, 0x10000, CRC(8ed6595a) SHA1(2250cc1a75074640443a1aded7cef041e61f0016) ) /* Deuces Wild Bonus Poker - French */
7858 
7859   ROM_REGION( 0x020000, "gfx1", 0 )
7860   ROM_LOAD( "mro-cg2353.u77",  0x00000, 0x8000, CRC(7ed7f7cd) SHA1(406b124b3db5335acf8f8987afbfa10d90e04351) )
7861   ROM_LOAD( "mgo-cg2353.u78",  0x08000, 0x8000, CRC(aab4e5fb) SHA1(7d6e048dc1a9d01900ba71fc23c884637f5850f2) )
7862   ROM_LOAD( "mbo-cg2353.u79",  0x10000, 0x8000, CRC(119f59cd) SHA1(52283feb21b880960efef06c780d4e22b31ea18c) )
7863   ROM_LOAD( "mxo-cg2353.u80",  0x18000, 0x8000, CRC(3bb871c1) SHA1(0b9439fd6565c742c1c7dda23a80bdd1d91d7293) )
7864 
7865   ROM_REGION( 0x200, "proms", 0 )
7866   ROM_LOAD( "capx2307.u43", 0x0000, 0x0200, CRC(58d81338) SHA1(f0044ebbd0128d6fb74d850528ef02730c180f00) )
7867ROM_END
7868 
7869ROM_START( pex2421p ) /* Superboard : Deuces Wild Bonus Poker - French (X002421P+XP000064) */
7870/*
7871   Same payouts as X002029P English Deuces Wild Bonus Poker:
7872 
7873                                   w/D 6-K 3-5         w/A w/oD
7874PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
7875-----------------------------------------------------------------------
7876 PI556A     1   1    2   3   4  10  25  20  40  80 200 400 250    800
7877  % Range: 91.3-93.3%  Optimum: 95.3%  Hit Frequency: 45.0%
7878     Programs Available: X002421P
7879*/
7880   ROM_REGION( 0x10000, "maincpu", 0 )
7881   ROM_LOAD( "xp000064.u67",   0x00000, 0x10000, CRC(bb958158) SHA1(5d171ba71f70c668c70e4afd59ef7a0283798bbd) )
7882 
7883   ROM_REGION( 0x10000, "user1", 0 )
7884   ROM_LOAD( "x002421p.u66",   0x00000, 0x10000, CRC(ee6a2bb8) SHA1(7916a8cbe08cd66e5d3b4b1c5b4aaff108e79f59) ) /* Deuces Wild Bonus Poker - French */
7885 
7886   ROM_REGION( 0x020000, "gfx1", 0 )
7887   ROM_LOAD( "mro-cg2353.u77",  0x00000, 0x8000, CRC(7ed7f7cd) SHA1(406b124b3db5335acf8f8987afbfa10d90e04351) )
7888   ROM_LOAD( "mgo-cg2353.u78",  0x08000, 0x8000, CRC(aab4e5fb) SHA1(7d6e048dc1a9d01900ba71fc23c884637f5850f2) )
7889   ROM_LOAD( "mbo-cg2353.u79",  0x10000, 0x8000, CRC(119f59cd) SHA1(52283feb21b880960efef06c780d4e22b31ea18c) )
7890   ROM_LOAD( "mxo-cg2353.u80",  0x18000, 0x8000, CRC(3bb871c1) SHA1(0b9439fd6565c742c1c7dda23a80bdd1d91d7293) )
7891 
7892   ROM_REGION( 0x200, "proms", 0 )
7893   ROM_LOAD( "capx2307.u43", 0x0000, 0x0200, CRC(58d81338) SHA1(f0044ebbd0128d6fb74d850528ef02730c180f00) )
7894ROM_END
7895 
7896ROM_START( pex2440p ) /* Superboard : Deuces Wild Poker (X002440P+XP000053) */
7897/*
7898                                        w/D     w/oD
7899PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
7900------------------------------------------------------------
7901 P129A      1    2    3   4   4  10  16  25 200 250    800
7902  % Range: 95.7-97.7%  Optimum: 99.7%  Hit Frequency: 44.3%
7903     Programs Available: PP0469, X002440P
7904*/
7905   ROM_REGION( 0x10000, "maincpu", 0 )
7906   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
7907 
7908   ROM_REGION( 0x10000, "user1", 0 )
7909   ROM_LOAD( "x002440p.u66",   0x00000, 0x10000, CRC(2ecb28cc) SHA1(a7b902bdfbf8f5ceedc778b8408c39ee279a1a1d) ) /* Deuces Wild Poker */
7910 
7911   ROM_REGION( 0x020000, "gfx1", 0 )
7912   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7913   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7914   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7915   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7916 
7917   ROM_REGION( 0x200, "proms", 0 )
7918   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7919ROM_END
7920 
7921ROM_START( pex2461p ) /* Superboard : Joker Poker (X002461P+XP000055) */
7922/*
7923                                       w/J     w/oJ
7924PayTable   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
7925-----------------------------------------------------------
7926  NCJ       1   2   4    5   8  16 100 100 400 100    800
7927  % Range: 93.2-95.2%  Optimum: 97.2%  Hit Frequency: 30.1%
7928     Programs Available: X002461P
7929*/
7930   ROM_REGION( 0x10000, "maincpu", 0 )
7931   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
7932 
7933   ROM_REGION( 0x10000, "user1", 0 )
7934   ROM_LOAD( "x002461p.u66",   0x00000, 0x10000, CRC(9eb7b3ac) SHA1(162353e0914bf86d36b653719fc71b56c265cca0) ) /* Joker Poker */
7935 
7936   ROM_REGION( 0x020000, "gfx1", 0 )
7937   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7938   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7939   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7940   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7941 
7942   ROM_REGION( 0x200, "proms", 0 )
7943   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7944ROM_END
7945 
7946ROM_START( pekoc766 ) /* Superboard : Standard Draw Poker (PP0766) English / Spanish - Key On Credit */
7947/*
7948PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7949----------------------------------------------------------
7950  ????      1    2    3    4    5   8  25  50 300    400
7951  % Range: 92.6-94.6%  Optimum: 96.4%  Hit Frequency: 45.6%
7952     Programs Available: PP0766 A5W-A6F
7953 
7954Same as US paytable QJ
7955*/
7956   ROM_REGION( 0x10000, "maincpu", 0 )
7957   ROM_LOAD( "pp0766_a5w-a6f.u67",   0x00000, 0x10000, CRC(e6bfa03b) SHA1(c4a281ab441747db4fefb09f0f07d3718855a9ca) )
7958 
7959   ROM_REGION( 0x10000, "user1", 0 )
7960   ROM_LOAD( "pp0766_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
7961 
7962   ROM_REGION( 0x020000, "gfx1", 0 )
7963   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
7964   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
7965   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
7966   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
7967 
7968   ROM_REGION( 0x200, "proms", 0 )
7969   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
7970ROM_END
7971 
7972ROM_START( pekoc801 ) /* Superboard : 10's or Better (PP0801) English / Spanish - Key On Credit */
7973/*
7974PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7975----------------------------------------------------------
7976  ????     1     1    3    4    5   8  25  50 300   1000
7977  % Range: 85.2-87.2%  Optimum: 89.2%  Hit Frequency: 49.0%
7978     Programs Available: PP0801 A5W-A6F
7979 
7980Same as US paytable P8B
7981*/
7982   ROM_REGION( 0x10000, "maincpu", 0 )
7983   ROM_LOAD( "pp0801_a5w-a6f.u67",   0x00000, 0x10000, CRC(d026b27a) SHA1(fb54699444b1e1950288881d4c7950980535c0f6) )
7984 
7985   ROM_REGION( 0x10000, "user1", 0 )
7986   ROM_LOAD( "pp0801_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
7987 
7988   ROM_REGION( 0x020000, "gfx1", 0 )
7989   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
7990   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
7991   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
7992   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
7993 
7994   ROM_REGION( 0x200, "proms", 0 )
7995   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
7996ROM_END
7997 
7998ROM_START( pekoc802 ) /* Superboard : Standard Draw Poker (PP0802) English / Spanish - Key On Credit */
7999/*
8000PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
8001----------------------------------------------------------
8002  ????      1    2    3    4    5   6  25  50 250   1000
8003  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
8004     Programs Available: PP0802 A5W-A6F
8005 
8006Same as US paytable GA
8007*/
8008   ROM_REGION( 0x10000, "maincpu", 0 )
8009   ROM_LOAD( "pp0803_a5w-a6f.u67",   0x00000, 0x10000, CRC(93ea790c) SHA1(ec331565c058b173e343a0d3f6c28bab7f0b10d8) )
8010 
8011   ROM_REGION( 0x10000, "user1", 0 )
8012   ROM_LOAD( "pp0802_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8013 
8014   ROM_REGION( 0x020000, "gfx1", 0 )
8015   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8016   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8017   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8018   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8019 
8020   ROM_REGION( 0x200, "proms", 0 )
8021   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8022ROM_END
8023 
8024ROM_START( pekoc803 ) /* Superboard : Joker Poker (PP0830) English / Spanish - Key On Credit */
8025/*
8026                                            w/J     w/oJ
8027PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
8028----------------------------------------------------------------
8029  ????      1    1   2   3    4   5  20  40 100 200 500    800
8030  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
8031     Programs Available: PP0803 A5W-A6F, PP0803 A50-A6N
8032 
8033Same as US paytable P17A
8034*/
8035   ROM_REGION( 0x10000, "maincpu", 0 )
8036   ROM_LOAD( "pp0803_a5w-a6f.u67",   0x00000, 0x10000, CRC(26ec73b3) SHA1(0f592d21e83b73f37943b80ded6e83ee7b9c3edf) )
8037 
8038   ROM_REGION( 0x10000, "user1", 0 )
8039   ROM_LOAD( "pp0803_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8040 
8041   ROM_REGION( 0x020000, "gfx1", 0 )
8042   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8043   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8044   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8045   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8046 
8047   ROM_REGION( 0x200, "proms", 0 )
8048   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8049ROM_END
8050 
8051ROM_START( pekoc803a ) /* Superboard : Joker Poker (PP0803) English / Spanish - Key On Credit */
8052/*
8053                                            w/J     w/oJ
8054PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
8055----------------------------------------------------------------
8056  ????      1    1   2   3    4   5  20  40 100 200 500    800
8057  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
8058     Programs Available: PP0803 A5W-A6F, PP0803 A50-A6N
8059 
8060Same as US paytable P17A
8061*/
8062   ROM_REGION( 0x10000, "maincpu", 0 )
8063   ROM_LOAD( "pp0803_a50-a6n.u67",   0x00000, 0x10000, CRC(40c18868) SHA1(d0e899fd09c1b49e2b93671770e4981c0a3a3501) )
8064 
8065   ROM_REGION( 0x10000, "user1", 0 )
8066   ROM_LOAD( "pp0803_data_a50-a6n.u66",   0x00000, 0x10000, CRC(eea95084) SHA1(fddf0d645437f606a31f72a56183d9a879b29418) )
8067 
8068   ROM_REGION( 0x020000, "gfx1", 0 )
8069   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8070   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8071   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8072   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8073 
8074   ROM_REGION( 0x200, "proms", 0 )
8075   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8076ROM_END
8077 
8078ROM_START( pekoc804 ) /* Superboard : Bonus poker Deluxe - Key On Credit */
8079/*
8080PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
8081----------------------------------------------------------
8082  ????      1    1    3    4    5   7  80  50 250    800
8083  % Range: 92.3-94.3%  Optimum: 96.3%  Hit Frequency: 45.2%
8084     Programs Available: PP0804 A5W-A6F
8085 
8086Same as US paytable P253A
8087*/
8088   ROM_REGION( 0x10000, "maincpu", 0 )
8089   ROM_LOAD( "pp0804_a5w-a6f.u67",   0x00000, 0x10000, CRC(86a1a37b) SHA1(37c29120870e7ac613e4c06999cc52febb3dd3b0) )
8090 
8091   ROM_REGION( 0x10000, "user1", 0 )
8092   ROM_LOAD( "pp0804_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8093 
8094   ROM_REGION( 0x020000, "gfx1", 0 )
8095   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8096   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8097   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8098   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8099 
8100   ROM_REGION( 0x200, "proms", 0 )
8101   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8102ROM_END
8103 
8104ROM_START( pekoc806 ) /* Superboard : Standard Draw Poker - Key On Credit */
8105/*
8106PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
8107----------------------------------------------------------
8108  ????      1    2    3    4    5   6  25  50 250   1000
8109  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 45.3%
8110     Programs Available: PP0806 A5W-A6F
8111 
8112Same as US paytable GB
8113*/
8114   ROM_REGION( 0x10000, "maincpu", 0 )
8115   ROM_LOAD( "pp0806_a5w-a6f.u67",   0x00000, 0x10000, CRC(299b2f73) SHA1(c0adc3a4b7f3c5a0e99d85be7f77a42fd6fb5160) )
8116 
8117   ROM_REGION( 0x10000, "user1", 0 )
8118   ROM_LOAD( "pp0806_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8119 
8120   ROM_REGION( 0x020000, "gfx1", 0 )
8121   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8122   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8123   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8124   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8125 
8126   ROM_REGION( 0x200, "proms", 0 )
8127   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8128ROM_END
8129 
8130ROM_START( pekoc818 ) /* Superboard : Joker Poker (Aces or Better) - Key On Credit */
8131/*
8132                                            w/J     w/oJ
8133PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
8134----------------------------------------------------------------
8135  ????      1    1   2   3    4   6  15  50  80 200 500    800
8136  % Range: 83.6-85.6%  Optimum: 87.6%  Hit Frequency: ??.?%
8137     Programs Available: PP0818 A5W-A6F
8138*/
8139   ROM_REGION( 0x10000, "maincpu", 0 )
8140   ROM_LOAD( "pp0818_a5w-a6f.u67",   0x00000, 0x10000, CRC(38b1f3ca) SHA1(d869fbacdd918b146072ca820530cc041aa54568) )
8141 
8142   ROM_REGION( 0x10000, "user1", 0 )
8143   ROM_LOAD( "pp0818_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8144 
8145   ROM_REGION( 0x020000, "gfx1", 0 )
8146   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8147   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8148   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8149   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8150 
8151   ROM_REGION( 0x200, "proms", 0 )
8152   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8153ROM_END
8154 
8155ROM_START( pekoc819 ) /* Superboard : Bonus poker Deluxe - Key On Credit */
8156/*
8157PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
8158----------------------------------------------------------
8159  ????      1    1    2    4    6   9  60  50 250    800
8160  % Range: 83.6-85.6%  Optimum: 87.6%  Hit Frequency: ??.?%
8161     Programs Available: PP0818 A5W-A6F
8162*/
8163   ROM_REGION( 0x10000, "maincpu", 0 )
8164   ROM_LOAD( "pp0819_a5w-a6f.u67",   0x00000, 0x10000, CRC(f84a0415) SHA1(b501cf3a165b65f8ad2d908c6cb70ea86c0c41e7) )
8165 
8166   ROM_REGION( 0x10000, "user1", 0 )
8167   ROM_LOAD( "pp0819_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8168 
8169   ROM_REGION( 0x020000, "gfx1", 0 )
8170   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8171   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8172   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8173   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8174 
8175   ROM_REGION( 0x200, "proms", 0 )
8176   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8177ROM_END
8178 
8179ROM_START( pekoc825 ) /* Superboard : White Hot Aces - Key On Credit */
8180/*
8181                                      5-K 2-4
8182PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
8183-----------------------------------------------------------------
8184  ????      1    1    2   4    7  10  50 120 240  50 250    800
8185  % Range: 91.4-93.4%  Optimum: 95.4%  Hit Frequency: 44.7%
8186     Programs Available: PP0825 A59-A7C
8187*/
8188   ROM_REGION( 0x10000, "maincpu", 0 )
8189   ROM_LOAD( "pp0825_a59-a7c.u67",   0x00000, 0x10000, CRC(f1b7b2e0) SHA1(afa2236541230f546ae55093b4f0389691467c97) )
8190 
8191   ROM_REGION( 0x10000, "user1", 0 )
8192   ROM_LOAD( "pp0825_data_a59-a7c.u66",   0x00000, 0x10000, CRC(f343c99b) SHA1(9cf14c6f281d77485ef7244bd5bd64042cf5a85c) )
8193 
8194   ROM_REGION( 0x020000, "gfx1", 0 )
8195   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8196   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8197   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8198   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8199 
8200   ROM_REGION( 0x200, "proms", 0 )
8201   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8202ROM_END
8203 
8204ROM_START( pex0838s ) /* Superboard : Five Times Pay Slots (X000835S+XS000002) - Payout 90.01% */
8205   ROM_REGION( 0x10000, "maincpu", 0 )
8206   ROM_LOAD( "xs000002.u67",   0x00000, 0x10000, CRC(f25725e8) SHA1(a7a0022162f6aa3303f072b6fab3713bdc6b57ad) )
8207 
8208   ROM_REGION( 0x10000, "user1", 0 )
8209   ROM_LOAD( "x000838s.u66",   0x00000, 0x10000, CRC(913d17ac) SHA1(37162ac4384954165d9cfe04811ff5fa2cdde71e) ) /* Five Times Pay Slots - 2 Coins Max / 1 Pay Line */
8210 
8211   ROM_REGION( 0x020000, "gfx1", 0 )
8212   ROM_LOAD( "mro-cg2351.u77",  0x00000, 0x8000, CRC(d861f650) SHA1(7b483c5241e6704e8a2c70edb5a315ed6b1ae85d) )
8213   ROM_LOAD( "mgo-cg2351.u78",  0x08000, 0x8000, CRC(3a853984) SHA1(7af217f85f3168a6f2b50a11450d2fa3ff1e0386) )
8214   ROM_LOAD( "mbo-cg2351.u79",  0x10000, 0x8000, CRC(d1dc724e) SHA1(3fa2e9f363b2984cf17eb96b294343613e0e610a) )
8215   ROM_LOAD( "mxo-cg2351.u80",  0x18000, 0x8000, CRC(7888aab5) SHA1(237feae404314c7e394e403e4385bd01b6ac61d7) )
8216 
8217   ROM_REGION( 0x200, "proms", 0 )
8218   ROM_LOAD( "capx2351.u43", 0x0000, 0x0200, CRC(34c59e88) SHA1(bf4d7a54c964b1b723ec65a4ede40ad900dd0f08) )
8219ROM_END
8220 
8221ROM_START( pex0841s ) /* Superboard : Five Times Pay Slots (X000841S+XS000002) - Payout 92.51% */
8222   ROM_REGION( 0x10000, "maincpu", 0 )
8223   ROM_LOAD( "xs000002.u67",   0x00000, 0x10000, CRC(f25725e8) SHA1(a7a0022162f6aa3303f072b6fab3713bdc6b57ad) )
8224 
8225   ROM_REGION( 0x10000, "user1", 0 )
8226   ROM_LOAD( "x000841s.u66",   0x00000, 0x10000, CRC(430cc466) SHA1(3cd4a942274930db260567344008880027d5538c) ) /* Five Times Pay Slots - 3 Coins Max / 1 Pay Line */
8227 
8228   ROM_REGION( 0x020000, "gfx1", 0 )
8229   ROM_LOAD( "mro-cg2351.u77",  0x00000, 0x8000, CRC(d861f650) SHA1(7b483c5241e6704e8a2c70edb5a315ed6b1ae85d) )
8230   ROM_LOAD( "mgo-cg2351.u78",  0x08000, 0x8000, CRC(3a853984) SHA1(7af217f85f3168a6f2b50a11450d2fa3ff1e0386) )
8231   ROM_LOAD( "mbo-cg2351.u79",  0x10000, 0x8000, CRC(d1dc724e) SHA1(3fa2e9f363b2984cf17eb96b294343613e0e610a) )
8232   ROM_LOAD( "mxo-cg2351.u80",  0x18000, 0x8000, CRC(7888aab5) SHA1(237feae404314c7e394e403e4385bd01b6ac61d7) )
8233 
8234   ROM_REGION( 0x200, "proms", 0 )
8235   ROM_LOAD( "capx2351.u43", 0x0000, 0x0200, CRC(34c59e88) SHA1(bf4d7a54c964b1b723ec65a4ede40ad900dd0f08) )
8236ROM_END
8237 
8238ROM_START( pex0998s ) /* Superboard : Triple Triple Diamond Slots (X000998S+XS000006) - Payout 92.47% */
8239   ROM_REGION( 0x10000, "maincpu", 0 )
8240   ROM_LOAD( "xs000006.u67",   0x00000, 0x10000, CRC(4b11ca18) SHA1(f64a1fbd089c01bc35a5484e60b8834a2db4a79f) )
8241 
8242   ROM_REGION( 0x10000, "user1", 0 )
8243   ROM_LOAD( "x000998s.u66",   0x00000, 0x10000, CRC(e29d4346) SHA1(93901ff65c8973e34ac1f0dd68bb4c4973da5621) ) /* Triple Triple Diamonds Slots - 2 Coins Max / 1 Pay Line */
8244 
8245   ROM_REGION( 0x020000, "gfx1", 0 )
8246   ROM_LOAD( "mro-cg2361.u77",  0x00000, 0x8000, CRC(c0eba866) SHA1(8f217aeb3e8028a5633d95e5612f1b55e601650f) )
8247   ROM_LOAD( "mgo-cg2361.u78",  0x08000, 0x8000, CRC(345eaea2) SHA1(18ebb94a323e1cf671201db8b9f85d4f30d8b5ec) )
8248   ROM_LOAD( "mbo-cg2361.u79",  0x10000, 0x8000, CRC(fa130af6) SHA1(aca5e52e00bc75a4801fd3f6c564e62ed4251d8e) )
8249   ROM_LOAD( "mxo-cg2361.u80",  0x18000, 0x8000, CRC(7de1812c) SHA1(c7e23a10f20fc8b618df21dd33ac456e1d2cfe33) )
8250 
8251   ROM_REGION( 0x200, "proms", 0 )
8252   ROM_LOAD( "capx2361.u43", 0x0000, 0x0200, CRC(93057296) SHA1(534bbf8ee80a22822d577f6685501f4c929987ef) )
8253ROM_END
8254 
8255ROM_START( pex1087s ) /* Superboard : Double Double Diamond Slots (X001087S+XS000006) - Payout 94.95% */
8256   ROM_REGION( 0x10000, "maincpu", 0 )
8257   ROM_LOAD( "xs000006.u67",   0x00000, 0x10000, CRC(4b11ca18) SHA1(f64a1fbd089c01bc35a5484e60b8834a2db4a79f) )
8258 
8259   ROM_REGION( 0x10000, "user1", 0 )
8260   ROM_LOAD( "x001087s.u66",   0x00000, 0x10000, CRC(f811cff6) SHA1(3bdb77774387602ba4d699e009afa8591559c33e) ) /* Double Double Diamonds Slots - 3 Coins Max / 1 Pay Line */
8261 
8262   ROM_REGION( 0x020000, "gfx1", 0 )
8263   ROM_LOAD( "mro-cg2415.u77",  0x00000, 0x8000, CRC(f135a9c1) SHA1(366f93ce14da86c237da62f0b252bd26d662c8b1) )
8264   ROM_LOAD( "mgo-cg2415.u78",  0x08000, 0x8000, CRC(3b1f5f13) SHA1(a12b8268f51cce4f71b1e451274f7e5e97bc4f3d) )
8265   ROM_LOAD( "mbo-cg2415.u79",  0x10000, 0x8000, CRC(f14c3a06) SHA1(4132c15323cf2c2cf001c8cdcebdadb533b07312) )
8266   ROM_LOAD( "mxo-cg2415.u80",  0x18000, 0x8000, CRC(c427fff8) SHA1(5f41ff4d4598609a753c2e986f2a8cd63aa87d30) )
8267 
8268   ROM_REGION( 0x200, "proms", 0 )
8269   ROM_LOAD( "capx2415.u43", 0x0000, 0x0200, NO_DUMP ) /* Should be CAPX2415(?) */
8270   ROM_LOAD( "capx2361.u43", 0x0000, 0x0200, CRC(93057296) SHA1(534bbf8ee80a22822d577f6685501f4c929987ef) ) /* Wrong!! Should be CAPX2415(?) */
8271ROM_END
8272 
8273ROM_START( pexm001p ) /* Superboard : Multi-Poker (XM00001P) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */
8274/*
8275Combined average payout percent: 99.64%
8276 
8277Game Type           PayTable   Payout
8278-------------------------------------
8279Bonus Poker          P77A      99.20%
8280Bonus Poker Deluxe   P200A     98.50%
8281Deuces Wild Poker    P34A     100.80%
8282Jacks or Better      CA        99.50%
8283Double Bonus Poker   P324A    100.20%
8284*/
8285   ROM_REGION( 0x10000, "maincpu", 0 )
8286   ROM_LOAD( "xmp00003.u67",   0x00000, 0x10000, CRC(41e33b3e) SHA1(cd5debfb59c4f0cc5d700a1c592a0dc203abcb66) ) /* Linkable Progressive, No Double Up */
8287   /* Known to be found with XMP00003, XMP00006 or XMP00024 programs */
8288 
8289   ROM_REGION( 0x10000, "user1", 0 )
8290   ROM_LOAD( "xm00001p.u66",   0x00000, 0x10000, CRC(b1569f05) SHA1(c94409ad74c4585288780cc2f96957592554a250) ) /*  07/18/95   @ IGT  L95-1613  */
8291 
8292   ROM_REGION( 0x020000, "gfx1", 0 )
8293   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8294   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) )
8295   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8296   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8297 
8298   ROM_REGION( 0x200, "proms", 0 )
8299   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8300ROM_END
8301 
8302ROM_START( pexm002p ) /* Superboard : Multi-Poker (XM00002P) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */
8303/*
8304Combined average payout percent: 98.14%
8305 
8306Game Type           PayTable   Payout
8307-------------------------------------
8308Bonus Poker          P90A      98.00%
8309Bonus Poker Deluxe   P251A     97.40%
8310Deuces Wild Poker    P62A      98.90%
8311Jacks or Better      BA        97.30%
8312Double Bonus Poker   P323A     99.10%
8313*/
8314   ROM_REGION( 0x10000, "maincpu", 0 )
8315   ROM_LOAD( "xmp00006.u67",   0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /*  07/25/96   @ IGT L96-2041  - Linkable Progressive */
8316   /* Known to be found with XMP00003, XMP00006 or XMP00024 programs */
8317 
8318   ROM_REGION( 0x10000, "user1", 0 )
8319   ROM_LOAD( "xm00002p.u66",   0x00000, 0x10000, CRC(96cf471c) SHA1(9597bf6a80c392ee22dc4606db610fdaf032377f) ) /*  07/18/95   @ IGT  L95-1614  */
8320 
8321   ROM_REGION( 0x020000, "gfx1", 0 )
8322   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8323   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) )
8324   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8325   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8326 
8327   ROM_REGION( 0x200, "proms", 0 )
8328   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8329ROM_END
8330 
8331ROM_START( pexm003p ) /* Superboard : Multi-Poker (XM00003P) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */
8332/*
8333Combined average payout percent: 96.78%
8334 
8335Game Type           PayTable   Payout
8336-------------------------------------
8337Bonus Poker          P101A     96.90%
8338Bonus Poker Deluxe   P253A     96.30%
8339Deuces Wild Poker    P47A      96.80%
8340Jacks or Better      P11A      96.10%
8341Double Bonus Poker   P325A     97.80%
8342*/
8343   ROM_REGION( 0x10000, "maincpu", 0 )
8344   ROM_LOAD( "xmp00024.u67",   0x00000, 0x10000, CRC(f2df8870) SHA1(bc7fa1d79da07093cf3d3508e226a9c490990e04) ) /* Standalone Progressive */
8345   /* Known to be found with XMP00003, XMP00006 or XMP00024 programs */
8346 
8347   ROM_REGION( 0x10000, "user1", 0 )
8348   ROM_LOAD( "xm00003p.u66",   0x00000, 0x10000, CRC(55b44732) SHA1(8e0bbad3aaa7deca85ae641c444be3a513bdce50) ) /*  07/18/95   @ IGT  L95-1615  */
8349 
8350   ROM_REGION( 0x020000, "gfx1", 0 )
8351   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8352   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) )
8353   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8354   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8355 
8356   ROM_REGION( 0x200, "proms", 0 )
8357   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8358ROM_END
8359 
8360ROM_START( pexm004p ) /* Superboard : Multi-Poker (XM00004P) - Dbl Dbl Bonus Poker, Nevada Bonus Poker, Joker Poker, Dbl Bonus Poker & Dbl Deuces Poker */
8361/*
8362Combined average payout percent: 99.22%
8363 
8364Game Type           PayTable   Payout
8365-------------------------------------
8366Double Double Bonus  P505A     97.80%
8367Nevada Bonus Poker   P503A     98.80%
8368Joker Poker          ZA       100.20%
8369Double Bonus Poker   P324A    100.20%
8370Double Deuce Poker   P236A     99.60%
8371*/
8372   ROM_REGION( 0x10000, "maincpu", 0 )
8373   ROM_LOAD( "xmp00002.u67",   0x00000, 0x10000, CRC(d5624ac8) SHA1(6b778b0e7ddb81123c6038920b3447e05a0556b2) ) /* Linkable Progressive */
8374 
8375   ROM_REGION( 0x10000, "user1", 0 )
8376   ROM_LOAD( "xm00004p.u66",   0x00000, 0x10000, CRC(bafd160f) SHA1(7454fbf992d4d0668ef375b76ce2cae3324a5f75) )
8377 
8378   ROM_REGION( 0x020000, "gfx1", 0 )
8379   ROM_LOAD( "mro-cg2196.u77",  0x00000, 0x8000, CRC(f2f95ad9) SHA1(92c105147d4cdcebb4c784d771b9cebc982a742f) )
8380   ROM_LOAD( "mgo-cg2196.u78",  0x08000, 0x8000, CRC(95980a94) SHA1(40b84b2f3b77584739f2eb8df49b64533c60e1e7) )
8381   ROM_LOAD( "mbo-cg2196.u79",  0x10000, 0x8000, CRC(38151131) SHA1(7730a342bcfab2c2acd84f93ce280eb5dc9666f3) )
8382   ROM_LOAD( "mxo-cg2196.u80",  0x18000, 0x8000, CRC(60f748b8) SHA1(61af0bac1d6c23f8e1aa3f0094fd56185aa6ae86) )
8383 
8384   ROM_REGION( 0x200, "proms", 0 )
8385   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8386ROM_END
8387 
8388ROM_START( pexm005p ) /* Superboard : Multi-Poker (XM00005P) - Bonus Poker, Dbl Dbl Bonus Poker, Joker Poker, Dbl Joker Poker & Dbl Bonus Poker */
8389/*
8390Combined average payout percent: 97.06%
8391 
8392Game Type           PayTable   Payout
8393-------------------------------------
8394Bonus Poker          P101A     96.90%
8395Double Double Bonus  P506A     96.70%
8396Joker Poker          NA        97.20%
8397Double Joker Poker   ?????     98.10%
8398Double Bonus Poker   P434A     96.40%
8399*/
8400   ROM_REGION( 0x10000, "maincpu", 0 )
8401   ROM_LOAD( "xmp00004.u67",   0x00000, 0x10000, CRC(83184999) SHA1(b8483917b338be4fd3641b3990eea37072d36885) ) /* Linkable Progressive */
8402   /* Also known to be found with XMP00024 programs */
8403 
8404   ROM_REGION( 0x10000, "user1", 0 )
8405   ROM_LOAD( "xm00005p.u66",   0x00000, 0x10000, CRC(c832eac7) SHA1(747d57de602b44ae1276fe1009db1b6de0d2c64c) )
8406 
8407   ROM_REGION( 0x020000, "gfx1", 0 )
8408   ROM_LOAD( "mro-cg2240.u77",  0x00000, 0x8000, CRC(eedef2d4) SHA1(419a90e1f4a840625e6ac7afc2c24d13c908156d) )
8409   ROM_LOAD( "mgo-cg2240.u78",  0x08000, 0x8000, CRC(c596b058) SHA1(d53824f869bceeda482e434cba9a77ba8ce2015f) )
8410   ROM_LOAD( "mbo-cg2240.u79",  0x10000, 0x8000, CRC(ab1a58ee) SHA1(44963f27d5f5d8f9415d88c12b2d40f0ef55c559) )
8411   ROM_LOAD( "mxo-cg2240.u80",  0x18000, 0x8000, CRC(75488ff7) SHA1(a34ae53847b5643b8c4dc182dc59b1fccf22d557) )
8412 
8413   ROM_REGION( 0x200, "proms", 0 )
8414   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8415ROM_END
8416 
8417ROM_START( pexm006p ) /* Superboard : Multi-Poker (XM00006P) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */
8418/*
8419Combined average payout percent: 99.04%
8420 
8421Game Type           PayTable   Payout
8422-------------------------------------
8423Bonus Poker          P77A      99.20%
8424Bonus Poker Deluxe   P200A     98.50%
8425Deuces Wild Poker    P62A      98.90%
8426Jacks or Better      CA        99.50%
8427Double Bonus Poker   P323A     99.10%
8428*/
8429   ROM_REGION( 0x10000, "maincpu", 0 )
8430   ROM_LOAD( "xmp00006.u67",   0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /*  07/25/96   @ IGT L96-2041  - Linkable Progressive */
8431   /* Known to be found with XMP00003, XMP00006 or XMP00024 programs */
8432 
8433   ROM_REGION( 0x10000, "user1", 0 )
8434   ROM_LOAD( "xm00006p.u66",   0x00000, 0x10000, CRC(b464ee79) SHA1(8768e52c66881c8f327055124ff31bcad79fd027) ) /*  03/08/96   @ IGT  NV  */
8435 
8436   ROM_REGION( 0x020000, "gfx1", 0 )
8437   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8438   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) )
8439   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8440   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8441 
8442   ROM_REGION( 0x200, "proms", 0 )
8443   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8444ROM_END
8445 
8446ROM_START( pexm007p ) /* Superboard : Multi-Poker (XM00007P) - Bonus Poker, Dbl Dbl Bonus Poker, Deuces Wild Poker, Dbl Bonus Poker & Jacks or Better */
8447/*
8448Combined average payout percent: 97.38%
8449 
8450Game Type           PayTable   Payout
8451-------------------------------------
8452Bonus Poker          P90A      98.00%
8453Double Double Bonus  P506A     96.70%
8454Deuces Wild Poker    P59A      97.10%
8455Jacks or Better      BA        97.30%
8456Double Bonus Poker   P325A     97.80%
8457*/
8458   ROM_REGION( 0x10000, "maincpu", 0 )
8459   ROM_LOAD( "xmp00006.u67",   0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /*  07/25/96   @ IGT L96-2041  - Linkable Progressive */
8460 
8461   ROM_REGION( 0x10000, "user1", 0 )
8462   ROM_LOAD( "xm00007p.u66",   0x00000, 0x10000, CRC(85a76416) SHA1(1bc3b9c2f687e68a085bfc5cf86d99fbd18cb9c7) )
8463 
8464   ROM_REGION( 0x020000, "gfx1", 0 )
8465   ROM_LOAD( "mro-cg2233.u77",  0x00000, 0x8000, CRC(8758866a) SHA1(49146560a7e79593a2ac0378dc3b300b96ef1015) )
8466   ROM_LOAD( "mgo-cg2233.u78",  0x08000, 0x8000, CRC(45ac6cfd) SHA1(25ff276320fe51c56aea0cff099be17e4ce8f404) )
8467   ROM_LOAD( "mbo-cg2233.u79",  0x10000, 0x8000, CRC(9e9d702f) SHA1(75bb9adb49095b7cb87d2615bcf725e4a4774e25) )
8468   ROM_LOAD( "mxo-cg2233.u80",  0x18000, 0x8000, CRC(2f05ebcb) SHA1(90d00ee4ce2dcbfbe33e221efe4db45a4e484baa) )
8469 
8470   ROM_REGION( 0x200, "proms", 0 )
8471   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8472ROM_END
8473 
8474ROM_START( pexm008p ) /* Superboard : Multi-Poker (XM00008P) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */
8475/*
8476Combined average payout percent: 99.30%
8477 
8478Game Type           PayTable   Payout
8479-------------------------------------
8480Bonus Poker          P77A      99.20%
8481Bonus Poker Deluxe   P200A     98.50%
8482Deuces Wild Poker    P34A     100.80%
8483Double Bonus Poker   P324A    100.20%
8484Double Double Bonus  P505A     97.80%
8485*/
8486   ROM_REGION( 0x10000, "maincpu", 0 )
8487   ROM_LOAD( "xmp00006.u67",   0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /*  07/25/96   @ IGT L96-2041  - Linkable Progressive */
8488 
8489   ROM_REGION( 0x10000, "user1", 0 )
8490   ROM_LOAD( "xm00008p.u66",   0x00000, 0x10000, CRC(37ff1a79) SHA1(5b15245e79d8f1b984d254f4307f1a2219ce3ed2) )
8491 
8492   ROM_REGION( 0x020000, "gfx1", 0 )
8493   ROM_LOAD( "mro-cg2228.u77",  0x00000, 0x8000, NO_DUMP ) /* This set requires CG2228 for the correct banners on the MENU page */
8494   ROM_LOAD( "mgo-cg2228.u78",  0x08000, 0x8000, NO_DUMP )
8495   ROM_LOAD( "mbo-cg2228.u79",  0x10000, 0x8000, NO_DUMP )
8496   ROM_LOAD( "mxo-cg2228.u80",  0x18000, 0x8000, NO_DUMP )
8497   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8498   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) ) /* Close but banners on MEMU WRONG!! */
8499   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8500   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8501 
8502   ROM_REGION( 0x200, "proms", 0 )
8503   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8504ROM_END
8505 
8506ROM_START( pexm009p ) /* Superboard : Multi-Poker (XM00009P) - Aces & Faces, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Aces & Faces Poker */
8507/*
8508Combined average payout percent: 98.47%
8509 
8510Game Type           PayTable   Payout
8511-------------------------------------
8512Aces & Faces         ?????     99.20%
8513Bonus Poker Deluxe   P200A     98.50%
8514Deuces Wild Poker    P62A      98.90%
8515Jacks or Better      BB        97.80%
8516Double Aces & Faces  ?????     99.30%
8517*/
8518   ROM_REGION( 0x10000, "maincpu", 0 )
8519   ROM_LOAD( "xmp00002.u67",   0x00000, 0x10000, CRC(d5624ac8) SHA1(6b778b0e7ddb81123c6038920b3447e05a0556b2) ) /* Linkable Progressive */
8520 
8521   ROM_REGION( 0x10000, "user1", 0 )
8522   ROM_LOAD( "xm00009p.u66",   0x00000, 0x10000, CRC(e133d0bb) SHA1(7ed4fa335e230c28e6fc66f0c990bc7ead2b279d) )
8523 
8524   ROM_REGION( 0x020000, "gfx1", 0 )
8525   ROM_LOAD( "mro-cg2xxx.u77",  0x00000, 0x8000, NO_DUMP ) /* This set requires an unknown CG graphics set for the correct banners on the MENU page */
8526   ROM_LOAD( "mgo-cg2xxx.u78",  0x08000, 0x8000, NO_DUMP ) /* Most likely CG2227, CG2229 or CG2239 */
8527   ROM_LOAD( "mbo-cg2xxx.u79",  0x10000, 0x8000, NO_DUMP )
8528   ROM_LOAD( "mxo-cg2xxx.u80",  0x18000, 0x8000, NO_DUMP )
8529   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8530   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) ) /* Close but banners on MEMU WRONG!! */
8531   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8532   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8533 
8534   ROM_REGION( 0x200, "proms", 0 )
8535   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8536ROM_END
8537 
8538ROM_START( pexm013p ) /* Superboard : Multi-Poker (XM00013P) - Bonus Poker, Dbl Dbl Bonus Poker, Deuces Wild Poker, Jacks or Better & Joker Poker  */
8539/*
8540Combined average payout percent: 95.80%
8541 
8542Game Type           PayTable   Payout
8543-------------------------------------
8544Bonus Poker          P596A     95.80%
8545Double Double Bonus  P507A     95.60%
8546Deuces Wild Poker    P57A      96.00%
8547Jacks or Better      P11A      96.10%
8548Joker Poker          P17A      95.50%
8549*/
8550   ROM_REGION( 0x10000, "maincpu", 0 )
8551   ROM_LOAD( "xmp00025.u67",   0x00000, 0x10000, CRC(5d39ff71) SHA1(0a5f67e61ae0e8a08cc551ab4271ffc97c343ae3) )
8552 
8553   ROM_REGION( 0x10000, "user1", 0 )
8554   ROM_LOAD( "xm00013p.u66",   0x00000, 0x10000, CRC(4fde73f9) SHA1(f8eb6fb0585e8df9a7eb2ddc65bb20b120753d7a) )
8555 
8556   ROM_REGION( 0x020000, "gfx1", 0 )
8557   ROM_LOAD( "mro-cg2296.u77",  0x00000, 0x8000, CRC(d0d92665) SHA1(2c686ee28b69ff975951ccafd8e5030fde640773) )
8558   ROM_LOAD( "mgo-cg2296.u78",  0x08000, 0x8000, CRC(d05fd16e) SHA1(f66b5ba8b4cf4f97ed46ec44cef43fed29bdd492) )
8559   ROM_LOAD( "mbo-cg2296.u79",  0x10000, 0x8000, CRC(6db6a435) SHA1(7ea0d6df1f7e0c4fe389437bf04d1f5a798c68ef) )
8560   ROM_LOAD( "mxo-cg2296.u80",  0x18000, 0x8000, CRC(4faeb79e) SHA1(f69277b729ba88860efc6b9a3d4956f245cc2943) )
8561 
8562   ROM_REGION( 0x200, "proms", 0 )
8563   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8564ROM_END
8565 
8566ROM_START( pexmp013 ) /* Superboard : 5-in-1 Wingboard (XMP00013) Program in Spanish, Requires Spanish Wingboard CG rom set */
8567/*
8568 
8569Known Wingboard compatible program roms:
8570   XMP00013 - Spanish
8571   XMP00014 (not dumped)
8572   XMP00017
8573   XMP00022 - Spanish (not dumped)
8574   XMP00026 - Spanish
8575   XMP00030
8576 
8577The CG2346 set seems to support all games supported in CG2298 as well as graphics support for the following XnnnnnnP Data game types:
8578  Triple Double Bonus
8579  Black Jack Bonus (comes up as Back Jack Poker)
8580 
8581*/
8582   ROM_REGION( 0x10000, "maincpu", 0 )
8583   ROM_LOAD( "xmp00013.u67",   0x00000, 0x10000, CRC(76ca7c2b) SHA1(cdcbfc648d007362bb50541e6415354c07815d66) )
8584 
8585   ROM_REGION( 0x10000, "user1", 0 )
8586   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
8587 
8588   ROM_REGION( 0x10000, "user2", 0 )
8589   ROM_LOAD( "x000188p.u66",   0x00000, 0x10000, CRC(3eb7580e) SHA1(86f2280542fb8a55767efd391d0fb04a12ed9408) ) /* Standard Draw Poker */
8590 
8591   ROM_REGION( 0x10000, "user3", 0 )
8592   ROM_LOAD( "x000516p.u66",   0x00000, 0x10000, CRC(37f84ce7) SHA1(2e5157d02febec0ff31eb5a23254f7c49a486cf5) ) /* Double Bonus Poker */
8593 
8594   ROM_REGION( 0x10000, "user4", 0 )
8595   ROM_LOAD( "x002275p.u66",   0x00000, 0x10000, CRC(5ba4f5ab) SHA1(def069025ec4aa340646dfd7cfacc8ce836a210c) ) /* Black Jack Bonus Poker */
8596 
8597   ROM_REGION( 0x10000, "user5", 0 )
8598   ROM_LOAD( "x002310p.u66",   0x00000, 0x10000, CRC(c006c3f1) SHA1(45c87a2f882147d1d132237cfa12ae47b202264f) ) /* Triple Double Bonus Poker */
8599 
8600   ROM_REGION( 0x040000, "gfx1", 0 )
8601   ROM_LOAD( "mro-cg2346.u77",  0x00000, 0x10000, CRC(3d721779) SHA1(01ac540eddeab5ecdba9b543c69fe7f4b53151a4) ) /* Game titles in English */
8602   ROM_LOAD( "mgo-cg2346.u78",  0x10000, 0x10000, CRC(a4a4856b) SHA1(db0e7528a63c80fab02b463dfb366d32061a93bb) ) /* Poker hands in Spanish */
8603   ROM_LOAD( "mbo-cg2346.u79",  0x20000, 0x10000, CRC(15253b57) SHA1(503b5cb514d9552ed7cf09f236aec63c81cfd828) )
8604   ROM_LOAD( "mxo-cg2346.u80",  0x30000, 0x10000, CRC(68ffb37e) SHA1(b6de07452e52a8c6f8657fbefef081aa9d86dbf0) )
8605 
8606   ROM_REGION( 0x200, "proms", 0 )
8607   ROM_LOAD( "capx2346.u43", 0x0000, 0x0200, CRC(8df8ad29) SHA1(2d6a598fdc4290abe83a3d95c0ec8da6eb0f0e84) )
8608ROM_END
8609 
8610ROM_START( pexmp017 ) /* Superboard : 5-in-1 Wingboard (XMP00017) */
8611/*
8612 
8613Known Wingboard compatible program roms:
8614   XMP00013 - Spanish
8615   XMP00014 (not dumped)
8616   XMP00017
8617   XMP00022 - Spanish (not dumped)
8618   XMP00026 - Spanish
8619   XMP00030
8620 
8621Wingboard programs are not compatible with:
8622 Lucky Deal Poker, Shockwave Poker, Ace$ Bonus Poker, Dealt Deuces Bonus, Barbaric Deuces, Pay the Ace (No Face)
8623 and many other "specialty" poker games.
8624 
8625The CG2298 graphics can support the following XnnnnnnP Data game types:
8626 
8627  Bonus Poker, Bonus Poker Deluxe, Double Bonus Poker, Double Double Bonus Poker, Triple Bonus Poker
8628  Deuces Wild Poker, Deluxe Deuces Wild, Loose Deuces, Deuces Bonus, Double Deuces, Royal Deuces Poker
8629  Joker Poker, Double Joker Poker, Deuces Joker Wild Poker, Sevens or Better, Tens or Better, Jacks or Better
8630  Nevada Draw Poker, Nevada Bonus Poker, White Hot Aces, Double Double Aces & Faces, Odds & Ends Poker
8631  Two Pair, Crazy Eights and Full House Bonus
8632 
8633  Super Aces shows as just Bonus Poker
8634  Triple Bonus Poker Plus shows as just Triple Bonus
8635 
8636*/
8637   ROM_REGION( 0x10000, "maincpu", 0 )
8638   ROM_LOAD( "xmp00017.u67",   0x00000, 0x10000, CRC(129e6eaa) SHA1(1dd2b83a672a618f338b553a6cbd598b6d4ce672) )
8639 
8640   ROM_REGION( 0x10000, "user1", 0 )
8641   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
8642 
8643   ROM_REGION( 0x10000, "user2", 0 )
8644   ROM_LOAD( "x000188p.u66",   0x00000, 0x10000, CRC(3eb7580e) SHA1(86f2280542fb8a55767efd391d0fb04a12ed9408) ) /* Standard Draw Poker */
8645 
8646   ROM_REGION( 0x10000, "user3", 0 )
8647   ROM_LOAD( "x000581p.u66",   0x00000, 0x10000, CRC(a4cfecc3) SHA1(b2c805781ba43bda9e208d8c16578dc96b6f58f7) ) /* Four of a Kind Bonus Poker */
8648 
8649   ROM_REGION( 0x10000, "user4", 0 )
8650   ROM_LOAD( "x000727p.u66",   0x00000, 0x10000, CRC(4828474c) SHA1(9836b76113a71802df30ca15f7c9a5790e6f1c5b) ) /* Double Bonus Poker */
8651 
8652   ROM_REGION( 0x10000, "user5", 0 )
8653   ROM_LOAD( "x002036p.u66",   0x00000, 0x10000, CRC(69207baf) SHA1(fe038b969106ae5cdc8dde1c06497be9c7b5b8bf) ) /* White Hot Aces */
8654 
8655   ROM_REGION( 0x040000, "gfx1", 0 )
8656   ROM_LOAD( "mro-cg2298.u77",  0x00000, 0x10000, CRC(8c35dc7f) SHA1(90e9566e816287e6248d7cab318dee3ad6fac871) )
8657   ROM_LOAD( "mgo-cg2298.u78",  0x10000, 0x10000, CRC(3663174a) SHA1(c203a4a59f6bc1625d47f35426ffc5b4d279251a) )
8658   ROM_LOAD( "mbo-cg2298.u79",  0x20000, 0x10000, CRC(9088cdbe) SHA1(dc62951c584463a1e795a774f5752f890d8e3f65) )
8659   ROM_LOAD( "mxo-cg2298.u80",  0x30000, 0x10000, CRC(8d3aafc8) SHA1(931bc82398b94c63ed9f6f1bd95723aa801894cc) )
8660 
8661   ROM_REGION( 0x200, "proms", 0 )
8662   ROM_LOAD( "capx2298.u43", 0x0000, 0x0200, CRC(77856036) SHA1(820487c8494965408402ddee6a54511906218e66) )
8663ROM_END
8664 
8665ROM_START( pexmp017a ) /* Superboard : 5-in-1 Wingboard (XMP00017) */
8666/*
8667 
8668The CG2352 set supersedes CG2298. It's currently not known what has changed between the two sets.
8669 
8670*/
8671   ROM_REGION( 0x10000, "maincpu", 0 )
8672   ROM_LOAD( "xmp00017.u67",   0x00000, 0x10000, CRC(129e6eaa) SHA1(1dd2b83a672a618f338b553a6cbd598b6d4ce672) )
8673 
8674   ROM_REGION( 0x10000, "user1", 0 )
8675   ROM_LOAD( "x000430p.u66",   0x00000, 0x10000, CRC(905571e3) SHA1(fd506516fed22842df8e9dbb3683dcb4c459719b) ) /* Dueces Joker Wild Poker */
8676 
8677   ROM_REGION( 0x10000, "user2", 0 )
8678   ROM_LOAD( "x000451p.u66",   0x00000, 0x10000, CRC(4f11e26c) SHA1(6cea3cbef530ef4ece2a4351cbd9ead5b66bb359) ) /* Bonus Poker Deluxe */
8679 
8680   ROM_REGION( 0x10000, "user3", 0 )
8681   ROM_LOAD( "x000508p.u66",   0x00000, 0x10000, CRC(5efde4b4) SHA1(ead7448464aecc03748f04e4d6e9f346d262cd96) ) /* Loose Deuce Deuces Wild Poker */
8682 
8683   ROM_REGION( 0x10000, "user4", 0 )
8684   ROM_LOAD( "x000458p.u66",   0x00000, 0x10000, CRC(dcd20558) SHA1(22c99a265431b0ef8199d3cb69fbbc4aff822dc0) ) /* Joker Poker */
8685 
8686   ROM_REGION( 0x10000, "user5", 0 )
8687   ROM_LOAD( "x002045p.u66",   0x00000, 0x10000, CRC(75fe81db) SHA1(980bcc06b54a1ef78e3beac1db83b73e17a04818) ) /* Triple Bonus Poker */
8688 
8689   ROM_REGION( 0x040000, "gfx1", 0 )
8690   ROM_LOAD( "mro-cg2352.u77",  0x00000, 0x10000, CRC(ef87fccb) SHA1(8ac04626f1bcab68e930e954d92594e981fd22d6) )
8691   ROM_LOAD( "mgo-cg2352.u78",  0x10000, 0x10000, CRC(fb3144a2) SHA1(a4dc3d7175915ceb99e0faeb8928148b2b3996ea) )
8692   ROM_LOAD( "mbo-cg2352.u79",  0x20000, 0x10000, CRC(28f422d6) SHA1(db1fa033e109749acfe7bacb85fe717858a25904) )
8693   ROM_LOAD( "mxo-cg2352.u80",  0x30000, 0x10000, CRC(b13b46c3) SHA1(7400037bbf56f67bf2d58b35589d62d94dea4b9f) )
8694 
8695   ROM_REGION( 0x200, "proms", 0 )
8696   ROM_LOAD( "capx2298.u43", 0x0000, 0x0200, CRC(77856036) SHA1(820487c8494965408402ddee6a54511906218e66) )
8697ROM_END
8698 
8699ROM_START( pexmp017b ) /* Superboard : 5-in-1 Wingboard (XMP00017) */
8700/*
8701 
8702The CG2426 set supersedes both CG2298 & CG2352 and adds graphics support for the following XnnnnnnP Data game types:
8703  Black Jack Bonus
8704  Super Double Bonus
8705  Triple Double Bonus
8706 
8707*/
8708   ROM_REGION( 0x10000, "maincpu", 0 )
8709   ROM_LOAD( "xmp00017.u67",   0x00000, 0x10000, CRC(129e6eaa) SHA1(1dd2b83a672a618f338b553a6cbd598b6d4ce672) )
8710 
8711   ROM_REGION( 0x10000, "user1", 0 )
8712   ROM_LOAD( "x002272p.u66",   0x00000, 0x10000, CRC(ee4f27b9) SHA1(1ee105430358ea27badd943bb6b18663e4029388) ) /* Black Jack Bonus Poker */
8713 
8714   ROM_REGION( 0x10000, "user2", 0 )
8715   ROM_LOAD( "x002029p.u66",   0x00000, 0x10000, CRC(e2f6fb89) SHA1(4b60b580b00b4268d1cb9065ffe0d21f8fa6a931) ) /* Deuces Wild Bonus Poker */
8716 
8717   ROM_REGION( 0x10000, "user3", 0 )
8718   ROM_LOAD( "x002040p.u66",   0x00000, 0x10000, CRC(38acb477) SHA1(894f5861ac84323e50e8972602251f2873988e6c) ) /* Nevada Bonus Poker */
8719 
8720   ROM_REGION( 0x10000, "user4", 0 )
8721   ROM_LOAD( "x002018p.u66",   0x00000, 0x10000, CRC(a7b79cfa) SHA1(89216fafffc64fda22a016a906483b76174c3f02) ) /* Full House Bonus Poker */
8722 
8723   ROM_REGION( 0x10000, "user5", 0 )
8724   ROM_LOAD( "x002307p.u66",   0x00000, 0x10000, CRC(c6d5db70) SHA1(017e1e382fb789e4cd8b410362ad5e82b61f61db) ) /* Triple Double Bonus Poker */
8725 
8726   ROM_REGION( 0x040000, "gfx1", 0 )
8727   ROM_LOAD( "mro-cg2426.u77",  0x00000, 0x10000, CRC(e7622901) SHA1(f653aaf02de840aef56d3efd7680572356e94da7) )
8728   ROM_LOAD( "mgo-cg2426.u78",  0x10000, 0x10000, CRC(5c8388a0) SHA1(c883bf7969850d07f37fa0fd58f82cda4cf15654) )
8729   ROM_LOAD( "mbo-cg2426.u79",  0x20000, 0x10000, CRC(dc6e39aa) SHA1(7a7188757f5be25521a023d1315cfd7c395b6c25) )
8730   ROM_LOAD( "mxo-cg2426.u80",  0x30000, 0x10000, CRC(a32f42a2) SHA1(87ddc4dda7c198ed62a2a065507efe4d3a016236) )
8731 
8732   ROM_REGION( 0x200, "proms", 0 )
8733   ROM_LOAD( "capx2298.u43", 0x0000, 0x0200, CRC(77856036) SHA1(820487c8494965408402ddee6a54511906218e66) )
8734ROM_END
8735 
8736ROM_START( pexmp026 ) /* Superboard : 5-in-1 Wingboard (XMP00026) Program in Spanish, Requires Spanish Wingboard CG rom set */
8737   ROM_REGION( 0x10000, "maincpu", 0 )
8738   ROM_LOAD( "xmp00026.u67",   0x00000, 0x10000, CRC(0b82387f) SHA1(8348c586cf692c5cbecfe7b52a4271e5aec55027) )
8739 
8740   ROM_REGION( 0x10000, "user1", 0 )
8741   ROM_LOAD( "x000242p.u66",   0x00000, 0x10000, CRC(e0292d63) SHA1(8d8ec5dc1abaf8e8a8a7451d3a814023d8195fb5) ) /* Deuces Wild Poker */
8742 
8743   ROM_REGION( 0x10000, "user2", 0 )
8744   ROM_LOAD( "x000150p.u66",   0x00000, 0x10000, CRC(d10759fa) SHA1(eae633d03ac9db86520a70825ac0a59ee9ebc819) ) /* Standard Draw Poker */
8745 
8746   ROM_REGION( 0x10000, "user3", 0 )
8747   ROM_LOAD( "x002044p.u66",   0x00000, 0x10000, CRC(158af97f) SHA1(452247d981f1202da8c44a31f0d3343184d3db41) ) /* Triple Bonus Poker */
8748 
8749   ROM_REGION( 0x10000, "user4", 0 )
8750   ROM_LOAD( "x002038p.u66",   0x00000, 0x10000, CRC(58d01ba5) SHA1(6d4cde9c9e55967db2b661c7123cce9958a00639) ) /* Nevada Bonus Poker */
8751 
8752   ROM_REGION( 0x10000, "user5", 0 )
8753   ROM_LOAD( "x002306p.u66",   0x00000, 0x10000, CRC(ef36ea67) SHA1(8914ad20526fd63e14d9fa1901e9c779a11eb29d) ) /* Triple Double Bonus Poker */
8754 
8755   ROM_REGION( 0x040000, "gfx1", 0 )
8756   ROM_LOAD( "mro-cg2346.u77",  0x00000, 0x10000, CRC(3d721779) SHA1(01ac540eddeab5ecdba9b543c69fe7f4b53151a4) ) /* Game titles in English */
8757   ROM_LOAD( "mgo-cg2346.u78",  0x10000, 0x10000, CRC(a4a4856b) SHA1(db0e7528a63c80fab02b463dfb366d32061a93bb) ) /* Poker hands in Spanish */
8758   ROM_LOAD( "mbo-cg2346.u79",  0x20000, 0x10000, CRC(15253b57) SHA1(503b5cb514d9552ed7cf09f236aec63c81cfd828) )
8759   ROM_LOAD( "mxo-cg2346.u80",  0x30000, 0x10000, CRC(68ffb37e) SHA1(b6de07452e52a8c6f8657fbefef081aa9d86dbf0) )
8760 
8761   ROM_REGION( 0x200, "proms", 0 )
8762   ROM_LOAD( "capx2346.u43", 0x0000, 0x0200, CRC(8df8ad29) SHA1(2d6a598fdc4290abe83a3d95c0ec8da6eb0f0e84) )
8763ROM_END
8764 
8765ROM_START( pexmp030 ) /* Superboard : 5-in-1 Wingboard (XMP00030) */
8766   ROM_REGION( 0x10000, "maincpu", 0 )
8767   ROM_LOAD( "xmp00030.u67",   0x00000, 0x10000, CRC(da3fcb6f) SHA1(114e581e5ebb5c40c3f3da2784122d3281f269ee) ) /*  11/12/00   @ IGT  L01-0197  */
8768 
8769   ROM_REGION( 0x10000, "user1", 0 )
8770   ROM_LOAD( "x002066p.u66",   0x00000, 0x10000, CRC(01236011) SHA1(3edfee014705b3540386c5e42026ab93628b2597) ) /* Double Double Bonus Poker */
8771 
8772   ROM_REGION( 0x10000, "user2", 0 )
8773   ROM_LOAD( "x000002p.u66",   0x00000, 0x10000, CRC(17cee391) SHA1(173e5775c3e887e16b4f0330d21873331dfb7c33) ) /* Standard Draw Poker */
8774 
8775   ROM_REGION( 0x10000, "user3", 0 )
8776   ROM_LOAD( "x000536p.u66",   0x00000, 0x10000, CRC(0b18dc1b) SHA1(07350fe258441f8565bfd875342823149b7757f1) ) /* Joker Poker */
8777 
8778   ROM_REGION( 0x10000, "user4", 0 )
8779   ROM_LOAD( "x002377p.u66",   0x00000, 0x10000, CRC(541320d2) SHA1(670b17432e994fe1937091e5e96e1d58b9afbf29) ) /* Super Double Bonus Poker */
8780 
8781   ROM_REGION( 0x10000, "user5", 0 )
8782   ROM_LOAD( "x002440p.u66",   0x00000, 0x10000, CRC(2ecb28cc) SHA1(a7b902bdfbf8f5ceedc778b8408c39ee279a1a1d) ) /* Deuces Wild Poker */
8783 
8784   ROM_REGION( 0x040000, "gfx1", 0 )
8785   ROM_LOAD( "mro-cg2426.u77",  0x00000, 0x10000, CRC(e7622901) SHA1(f653aaf02de840aef56d3efd7680572356e94da7) )
8786   ROM_LOAD( "mgo-cg2426.u78",  0x10000, 0x10000, CRC(5c8388a0) SHA1(c883bf7969850d07f37fa0fd58f82cda4cf15654) )
8787   ROM_LOAD( "mbo-cg2426.u79",  0x20000, 0x10000, CRC(dc6e39aa) SHA1(7a7188757f5be25521a023d1315cfd7c395b6c25) )
8788   ROM_LOAD( "mxo-cg2426.u80",  0x30000, 0x10000, CRC(a32f42a2) SHA1(87ddc4dda7c198ed62a2a065507efe4d3a016236) )
8789 
8790   ROM_REGION( 0x200, "proms", 0 )
8791   ROM_LOAD( "capx2298.u43", 0x0000, 0x0200, CRC(77856036) SHA1(820487c8494965408402ddee6a54511906218e66) )
8792ROM_END
8793 
8794 
8795/*************************
8796*      Game Drivers      *
8797*************************/
8798 
8799/*    YEAR  NAME      PARENT  MACHINE   INPUT         INIT      ROT    COMPANY                                  FULLNAME                                                  FLAGS   LAYOUT */
8800 
8801/* Set chips */
8802GAMEL(1987, peset001, 0,      peplus,  peplus_schip, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (Set001) Set Chip",                      0,   layout_pe_schip )
8803GAMEL(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 )
8804 
8805/* Normal (non-plus) board : Poker */
8806GAMEL(1987, pepk1024,  0,        peplus, nonplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge (PK1024) Aces and Faces Bonus Poker",         0, layout_pe_poker )
8807 
8808/* Normal board : Poker */
8809GAMEL(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 )
8810GAMEL(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 )
8811GAMEL(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 )
8812GAMEL(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 )
8813GAMEL(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 )
8814GAMEL(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 )
8815GAMEL(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 )
8816GAMEL(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 )
8817GAMEL(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 )
8818GAMEL(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 )
8819GAMEL(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 )
8820GAMEL(1987, pepp0043a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0043) 10's or Better (International)", 0, layout_pe_poker )
8821GAMEL(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 )
8822GAMEL(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 )
8823GAMEL(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 )
8824GAMEL(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 )
8825GAMEL(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 )
8826GAMEL(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 )
8827GAMEL(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 )
8828GAMEL(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 )
8829GAMEL(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 )
8830GAMEL(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 )
8831GAMEL(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 )
8832GAMEL(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 )
8833GAMEL(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 )
8834GAMEL(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 )
8835GAMEL(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 )
8836GAMEL(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 )
8837GAMEL(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 )
8838GAMEL(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 )
8839GAMEL(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 )
8840GAMEL(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 )
8841GAMEL(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 )
8842GAMEL(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 )
8843GAMEL(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 )
8844GAMEL(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 )
8845GAMEL(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 )
8846GAMEL(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 )
8847GAMEL(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 )
8848GAMEL(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 )
8849GAMEL(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 )
8850GAMEL(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 )
8851GAMEL(1987, pepp0158c, pepp0158, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0158) 4 of a Kind Bonus Poker (set 4)",  0, layout_pe_poker )
8852GAMEL(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 )
8853GAMEL(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 )
8854GAMEL(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 )
8855GAMEL(1987, pepp0178,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0178) 4 of a Kind Bonus Poker (Operator selectable special 4 of a Kind)", 0, layout_pe_poker )
8856GAMEL(1987, pepp0188,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0188) Standard Draw Poker (set 1)",   0, layout_pe_poker )
8857GAMEL(1987, pepp0188a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0188) Standard Draw Poker (set 2)",   0, layout_pe_poker )
8858GAMEL(1987, pepp0190,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0190) Deuces Wild Poker",             0, layout_pe_poker )
8859GAMEL(1987, pepp0190a, pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0190) Deuces Wild Poker (International)", 0, layout_pe_poker )
8860GAMEL(1987, pepp0197,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0197) Standard Draw Poker (set 1)",   0, layout_pe_poker )
8861GAMEL(1987, pepp0197a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0197) Standard Draw Poker (set 2)",   0, layout_pe_poker )
8862GAMEL(1987, pepp0197b, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0197) Standard Draw Poker (set 3)",   0, layout_pe_poker )
8863GAMEL(1987, pepp0203,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0203) 4 of a Kind Bonus Poker (set 1)", 0, layout_pe_poker )
8864GAMEL(1987, pepp0203a, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0203) 4 of a Kind Bonus Poker (set 2)", 0, layout_pe_poker )
8865GAMEL(1987, pepp0203b, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0203) 4 of a Kind Bonus Poker (set 3)", 0, layout_pe_poker )
8866GAMEL(1987, pepp0203c, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0203) 4 of a Kind Bonus Poker (International)", 0, layout_pe_poker )
8867GAMEL(1987, pepp0219,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0219) Standard Draw Poker",           0, layout_pe_poker )
8868GAMEL(1987, pepp0221,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0221) Standard Draw Poker (set 1)",   0, layout_pe_poker )
8869GAMEL(1987, pepp0221a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0221) Standard Draw Poker (set 2)",   0, layout_pe_poker )
8870GAMEL(1987, pepp0224,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0224) Deuces Wild Poker (set 1)",     0, layout_pe_poker )
8871GAMEL(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 )
8872GAMEL(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 )
8873GAMEL(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 )
8874GAMEL(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 )
8875GAMEL(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 )
8876GAMEL(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 )
8877GAMEL(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 )
8878GAMEL(1987, pepp0265b, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0265) 4 of a Kind Bonus Poker (International)", 0, layout_pe_poker )
8879GAMEL(1987, pepp0274,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0274) Standard Draw Poker",           0, layout_pe_poker )
8880GAMEL(1987, pepp0288,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0288) Standard Draw Poker (Spanish)", 0, layout_pe_poker )
8881GAMEL(1987, pepp0290,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0290) Deuces Wild Poker",             0, layout_pe_poker )
8882GAMEL(1987, pepp0291,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0291) Deuces Wild Poker",             0, layout_pe_poker )
8883GAMEL(1987, pepp0409,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0409) 4 of a Kind Bonus Poker",       0, layout_pe_poker )
8884GAMEL(1987, pepp0410,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0410) 4 of a Kind Bonus Poker",       0, layout_pe_poker )
8885GAMEL(1987, pepp0417,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0417) Deuces Wild Poker (set 1)",     0, layout_pe_poker )
8886GAMEL(1987, pepp0417a, pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0417) Deuces Wild Poker (set 2)",     0, layout_pe_poker )
8887GAMEL(1987, pepp0419,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0419) Standard Draw Poker",           0, layout_pe_poker )
8888GAMEL(1987, pepp0420,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0420) Standard Draw Poker",           0, layout_pe_poker )
8889GAMEL(1987, pepp0423,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0423) Standard Draw Poker",           0, layout_pe_poker )
8890GAMEL(1987, pepp0426,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0426) Joker Poker",                   0, layout_pe_poker )
8891GAMEL(1987, pepp0428,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0428) Joker Poker",                   0, layout_pe_poker )
8892GAMEL(1987, pepp0429,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0429) Joker Poker (Aces or Better)",  0, layout_pe_poker )
8893GAMEL(1987, pepp0431,  pepp0127, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0431) Deuces Joker Wild Poker (International)", 0, layout_pe_poker )
8894GAMEL(1987, pepp0434,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0434) Bonus Poker Deluxe",            0, layout_pe_poker )
8895GAMEL(1987, pepp0447,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0447) Standard Draw Poker (set 1)",   0, layout_pe_poker )
8896GAMEL(1987, pepp0447a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0447) Standard Draw Poker (set 2)",   0, layout_pe_poker )
8897GAMEL(1987, pepp0449,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0449) Standard Draw Poker",           0, layout_pe_poker )
8898GAMEL(1987, pepp0449a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0449) Standard Draw Poker (International English/Spanish)", 0, layout_pe_poker )
8899GAMEL(1987, pepp0452,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0452) Double Deuces Wild Poker",      0, layout_pe_poker )
8900GAMEL(1987, pepp0454,  pepp0434, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0454) Bonus Poker Deluxe",            0, layout_pe_poker )
8901GAMEL(1987, pepp0455,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0455) Joker Poker",                   0, layout_pe_poker )
8902GAMEL(1987, pepp0458,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0458) Joker Poker (Aces or Better)",  0, layout_pe_poker )
8903GAMEL(1985, pepp0488,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0488) Standard Draw Poker (Arizona Charlie's)", 0, layout_pe_poker )
8904GAMEL(1987, pepp0508,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0508) Loose Deuce Deuces Wild! Poker", 0, layout_pe_poker )
8905GAMEL(1987, pepp0509,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0509) Standard Draw Poker",           0, layout_pe_poker )
8906GAMEL(1987, pepp0510,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0510) Standard Draw Poker",           0, layout_pe_poker )
8907GAMEL(1987, pepp0514,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0514) Double Bonus Poker (set 1)",    0, layout_pe_poker )
8908GAMEL(1987, pepp0514a, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0514) Double Bonus Poker (set 2)",    0, layout_pe_poker )
8909GAMEL(1987, pepp0514b, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0514) Double Bonus Poker (set 3)",    0, layout_pe_poker )
8910GAMEL(1987, pepp0515,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0515) Double Bonus Poker (set 1)",    0, layout_pe_poker )
8911GAMEL(1987, pepp0515a, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0515) Double Bonus Poker (set 2)",    0, layout_pe_poker )
8912GAMEL(1987, pepp0516,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0516) Double Bonus Poker (set 1)",    0, layout_pe_poker )
8913GAMEL(1987, pepp0516a, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0516) Double Bonus Poker (set 2)",    0, layout_pe_poker )
8914GAMEL(1987, pepp0516b, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0516) Double Bonus Poker (International)", 0, layout_pe_poker )
8915GAMEL(1987, pepp0531,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0531) Joker Poker",                   0, layout_pe_poker )
8916GAMEL(1987, pepp0536,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0536) Joker Poker",                   0, layout_pe_poker )
8917GAMEL(1987, pepp0538,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0538) Double Bonus Poker",            0, layout_pe_poker )
8918GAMEL(1987, pepp0540,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0540) Double Bonus Poker",            0, layout_pe_poker )
8919GAMEL(1987, pepp0542,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0542) One Eyed Jacks Wild Poker",     0, layout_pe_poker )
8920GAMEL(1987, pepp0568,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0568) Joker Poker",                   0, layout_pe_poker )
8921GAMEL(1987, pepp0585,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0585) Standard Draw Poker",           0, layout_pe_poker )
8922GAMEL(1987, pepp0713,  pepp0434, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0713) Bonus Poker Deluxe",            0, layout_pe_poker )
8923GAMEL(1987, pepp0725,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0725) Double Bonus Poker (set 1)",    0, layout_pe_poker )
8924GAMEL(1987, pepp0725a, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0725) Double Bonus Poker (set 2)",    0, layout_pe_poker )
8925GAMEL(1987, pepp0726,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0726) Double Bonus Poker",            0, layout_pe_poker )
8926GAMEL(1987, pepp0728,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0728) Double Bonus Poker",            0, layout_pe_poker )
8927GAMEL(1987, pepp0760,  pepp0250, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0760) Double Down Stud Poker",        0, layout_pe_poker )
8928GAMEL(1987, pepp0763,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0763) 4 of a Kind Bonus Poker",       0, layout_pe_poker )
8929GAMEL(1987, pepp0775,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0775) Royal Deuces Poker??",          GAME_IMPERFECT_GRAPHICS, layout_pe_poker ) /* Wrong CG graphics & CAP */
8930GAMEL(1987, pepp0816,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0816) Treasure Chest Poker",          GAME_IMPERFECT_GRAPHICS, layout_pe_poker ) /* Wrong CG graphics & CAP - Missing "Bonus" at MAX Bet for 4 of a Kind & Treasure Chest graphics */
8931 
8932/* Normal board : International Poker */
8933GAMEL(1987, peip0028,  0,        peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0028) Joker Poker - French",          0, layout_pe_poker )
8934GAMEL(1987, peip0029,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0029) Joker Poker - French",          0, layout_pe_poker )
8935GAMEL(1987, peip0031,  0,        peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0031) Standard Draw Poker - French",  0, layout_pe_poker )
8936GAMEL(1987, peip0041,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0041) Double Deuces Wild Poker - French",   0, layout_pe_poker )
8937GAMEL(1987, peip0051,  peip0028, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0051) Joker Poker - French",          0, layout_pe_poker )
8938GAMEL(1987, peip0058,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0058) Standard Draw Poker - French",  0, layout_pe_poker )
8939GAMEL(1987, peip0062,  peip0028, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0062) Joker Poker - French",          0, layout_pe_poker )
8940GAMEL(1987, peip0074,  peip0028, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0074) Joker Poker - French",          0, layout_pe_poker )
8941GAMEL(1987, peip0079,  peip0031, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0079) Standard Draw Poker - French",  0, layout_pe_poker )
8942GAMEL(1987, peip0101,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0101) Joker Poker - French",          0, layout_pe_poker )
8943GAMEL(1987, peip0103,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0103) Joker Poker - French",          0, layout_pe_poker )
8944GAMEL(1987, peip0105,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0105) Joker Poker - French",          0, layout_pe_poker )
8945GAMEL(1987, peip0108,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0108) Standard Draw Poker - French",  0, layout_pe_poker )
8946GAMEL(1987, peip0111,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0111) Joker Poker - French",          0, layout_pe_poker )
8947GAMEL(1987, peip0112,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0112) Standard Draw Poker - French",  0, layout_pe_poker )
8948GAMEL(1987, peip0114,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0114) Standard Draw Poker - French",  0, layout_pe_poker )
8949GAMEL(1987, peip0115,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0115) Joker Poker - French",          0, layout_pe_poker )
8950GAMEL(1987, peip0116,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0116) Standard Draw Poker - French",  0, layout_pe_poker )
8951GAMEL(1987, peip0118,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0118) Standard Draw Poker - French",  0, layout_pe_poker )
8952GAMEL(1987, peip0120,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0120) Standard Draw Poker - French",  0, layout_pe_poker )
8953 
8954/* Normal board : Blackjack */
8955GAMEL(1994, pebe0014, 0,      peplus,  peplus_bjack, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (BE0014) Blackjack",                        0,   layout_pe_bjack )
8956 
8957/* Normal board : Keno */
8958GAMEL(1994, peke1012,  0,        peplus, peplus_keno, peplus_state, peplus, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (KE1012) Keno",                              0, layout_pe_keno )
8959GAMEL(1994, peke1013,  peke1012, peplus, peplus_keno, peplus_state, peplus, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (KE1013) Keno",                              0, layout_pe_keno )
8960 
8961/* Normal board : Slots machine */
8962GAMEL(1996, peps0014, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0014) Super Joker Slots",             0, layout_pe_slots )
8963GAMEL(1996, peps0021, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0021) Red White & Blue Slots",        0, layout_pe_slots )
8964GAMEL(1996, peps0022, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0022) Red White & Blue Slots",        0, layout_pe_slots )
8965GAMEL(1996, peps0042, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0042) Double Diamond Slots",          0, layout_pe_slots )
8966GAMEL(1996, peps0043, peps0042, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0043) Double Diamond Slots",          0, layout_pe_slots )
8967GAMEL(1996, peps0045, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0045) Red White & Blue Slots",        0, layout_pe_slots )
8968GAMEL(1996, peps0047, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0047) Wild Cherry Slots",             GAME_NOT_WORKING, layout_pe_slots ) /* Needs MxO-CG1004.Uxx graphics roms redumped */
8969GAMEL(1996, peps0092, peps0047, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0092) Wild Cherry Slots",             GAME_NOT_WORKING, layout_pe_slots ) /* Needs MxO-CG1004.Uxx graphics roms redumped */
8970GAMEL(1996, peps0206, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0206) Red White & Blue Slots",        0, layout_pe_slots )
8971GAMEL(1996, peps0207, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0207) Red White & Blue Slots",        0, layout_pe_slots )
8972GAMEL(1996, peps0296, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0296) Haywire Slots",                 0, layout_pe_slots )
8973GAMEL(1996, peps0298, peps0042, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0298) Double Diamond Slots",          0, layout_pe_slots )
8974GAMEL(1996, peps0308, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0308) Double Jackpot Slots",          0, layout_pe_slots )
8975GAMEL(1996, peps0364, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0364) Red White & Blue Slots",        0, layout_pe_slots )
8976GAMEL(1996, peps0426, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0426) Sizzling Sevens Slots",         0, layout_pe_slots )
8977GAMEL(1996, peps0581, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0581) Red White & Blue Slots",        0, layout_pe_slots )
8978GAMEL(1996, peps0615, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0615) Chaos Slots",                   0, layout_pe_slots )
8979GAMEL(1996, peps0631, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0631) Red White & Blue Slots",        0, layout_pe_slots )
8980GAMEL(1996, peps0716, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0716) River Gambler Slots",           0, layout_pe_slots )
8981 
8982/* Superboard : Poker */
8983GAMEL(1995, pex0002p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000002P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
8984GAMEL(1995, pex0002pa, pex0002p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000002P+XP000109) Standard Draw Poker", 0, layout_pe_poker )
8985GAMEL(1995, pex0040p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000040P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
8986GAMEL(1995, pex0045p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000045P+XP000038) 10's or Better",     0, layout_pe_poker )
8987GAMEL(1995, pex0046p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000046P+XP000038) 10's or Better",     0, layout_pe_poker )
8988GAMEL(1995, pex0053p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000053P+XP000038) Joker Poker (Aces or Better)", 0, layout_pe_poker )
8989GAMEL(1995, pex0054p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000054P+XP000038) Deuces Wild Poker",  0, layout_pe_poker )
8990GAMEL(1995, pex0055p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000019) Deuces Wild Poker",  0, layout_pe_poker )
8991GAMEL(1995, pex0055pa, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000022) Deuces Wild Poker (The Orleans)", 0, layout_pe_poker )
8992GAMEL(1995, pex0055pb, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000023) Deuces Wild Poker (The Fun Ships)", 0, layout_pe_poker )
8993GAMEL(1995, pex0055pc, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000028) Deuces Wild Poker",  0, layout_pe_poker )
8994GAMEL(1995, pex0055pd, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000035) Deuces Wild Poker",  0, layout_pe_poker )
8995GAMEL(1995, pex0055pe, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000038) Deuces Wild Poker",  0, layout_pe_poker )
8996GAMEL(1995, pex0055pf, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000040) Deuces Wild Poker",  0, layout_pe_poker )
8997GAMEL(1995, pex0055pg, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
8998GAMEL(1995, pex0055ph, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000055) Deuces Wild Poker",  0, layout_pe_poker )
8999GAMEL(1995, pex0055pi, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000063) Deuces Wild Poker",  0, layout_pe_poker )
9000GAMEL(1995, pex0055pj, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000075) Deuces Wild Poker",  0, layout_pe_poker )
9001GAMEL(1995, pex0055pk, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000079) Deuces Wild Poker",  0, layout_pe_poker )
9002GAMEL(1995, pex0055pl, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000094) Deuces Wild Poker",  0, layout_pe_poker )
9003GAMEL(1995, pex0055pm, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000095) Deuces Wild Poker",  0, layout_pe_poker )
9004GAMEL(1995, pex0055pn, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000098) Deuces Wild Poker",  0, layout_pe_poker )
9005GAMEL(1995, pex0055po, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000102) Deuces Wild Poker",  0, layout_pe_poker )
9006GAMEL(1995, pex0055pp, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000104) Deuces Wild Poker",  0, layout_pe_poker )
9007GAMEL(1995, pex0055pq, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000112) Deuces Wild Poker",  0, layout_pe_poker )
9008GAMEL(1995, pex0055pr, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000126) Deuces Wild Poker",  0, layout_pe_poker )
9009GAMEL(1995, pex0060p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000060P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9010GAMEL(1995, pex0124p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000124P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9011GAMEL(1995, pex0150p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000150P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9012GAMEL(1995, pex0158p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000158P+XP000038) 4 of a Kind Bonus Poker", 0, layout_pe_poker )
9013GAMEL(1995, pex0171p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000171P+XP000038) Joker Poker",        0, layout_pe_poker )
9014GAMEL(1995, pex0188p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000188P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9015GAMEL(1995, pex0190p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000190P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9016GAMEL(1995, pex0197p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000197P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9017GAMEL(1995, pex0203p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000203P+XP000038) 4 of a Kind Bonus Poker", 0, layout_pe_poker )
9018GAMEL(1995, pex0224p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000224P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9019GAMEL(1995, pex0225p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000225P+XP000079) Dueces Joker Wild Poker", 0,layout_pe_poker )
9020GAMEL(1995, pex0242p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000242P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9021GAMEL(1995, pex0265p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000265P+XP000038) 4 of a Kind Bonus Poker", 0, layout_pe_poker )
9022GAMEL(1995, pex0291p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000291P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9023GAMEL(1995, pex0417p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000417P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9024GAMEL(1995, pex0430p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000430P+XP000079) Dueces Joker Wild Poker", 0,layout_pe_poker )
9025GAMEL(1995, pex0434p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000434P+XP000038) Bonus Poker Deluxe", 0, layout_pe_poker )
9026GAMEL(1995, pex0447p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000447P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9027GAMEL(1995, pex0449p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000449P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9028GAMEL(1995, pex0451p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000451P+XP000038) Bonus Poker Deluxe", 0, layout_pe_poker )
9029GAMEL(1995, pex0452p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000452P+XP000038) Double Deuces Wild Poker", 0, layout_pe_poker )
9030GAMEL(1995, pex0454p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000454P+XP000038) Bonus Poker Deluxe", 0, layout_pe_poker )
9031GAMEL(1995, pex0458p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000458P+XP000038) Joker Poker (Aces or Better)", 0, layout_pe_poker )
9032GAMEL(1995, pex0459p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000459P+XP000038) Joker Poker",        0, layout_pe_poker )
9033GAMEL(1995, pex0459pa, pex0459p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000459P+XP000155) Joker Poker",        0, layout_pe_poker )
9034GAMEL(1995, pex0508p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000508P+XP000038) Loose Deuce Deuces Wild! Poker", 0, layout_pe_poker )
9035GAMEL(1995, pex0514p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000514P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9036GAMEL(1995, pex0515p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000515P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9037GAMEL(1995, pex0516p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000516P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9038GAMEL(1995, pex0536p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000536P+XP000038) Joker Poker",        0, layout_pe_poker )
9039GAMEL(1995, pex0537p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000537P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9040GAMEL(1995, pex0550p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000550P+XP000055) Joker Poker (Two Pair or Better)", 0, layout_pe_poker )
9041GAMEL(1995, pex0568p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000568P+XP000038) Joker Poker",        0, layout_pe_poker )
9042GAMEL(1995, pex0581p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000581P+XP000038) 4 of a Kind Bonus Poker", 0, layout_pe_poker )
9043GAMEL(1995, pex0588p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000588P+XP000038) Joker Poker",        0, layout_pe_poker )
9044GAMEL(1995, pex0725p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000725P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9045GAMEL(1995, pex0726p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000726P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9046GAMEL(1995, pex0727p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000727P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9047GAMEL(1995, pex0763p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000763P+XP000038) 4 of a Kind Bonus Poker", 0,layout_pe_poker )
9048GAMEL(1995, pex2018p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002018P+XP000038) Full House Bonus Poker", 0, layout_pe_poker )
9049GAMEL(1995, pex2025p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002025P+XP000019) Deuces Wild Bonus Poker", 0, layout_pe_poker )
9050GAMEL(1995, pex2026p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002026P+XP000019) Deuces Wild Bonus Poker", 0, layout_pe_poker )
9051GAMEL(1995, pex2027p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002027P+XP000019) Deuces Wild Bonus Poker", 0, layout_pe_poker )
9052GAMEL(1995, pex2029p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002029P+XP000019) Deuces Wild Bonus Poker", 0, layout_pe_poker )
9053GAMEL(1995, pex2031p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002031P+XP000112) Lucky Deal Poker",   0, layout_pe_poker )
9054GAMEL(1995, pex2035p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002035P+XP000112) White Hot Aces Poker", 0, layout_pe_poker )
9055GAMEL(1995, pex2036p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002036P+XP000112) White Hot Aces Poker", 0, layout_pe_poker )
9056GAMEL(1995, pex2038p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002038P+XP000038) Nevada Bonus Poker", 0, layout_pe_poker )
9057GAMEL(1995, pex2040p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002040P+XP000038) Nevada Bonus Poker", 0, layout_pe_poker )
9058GAMEL(1995, pex2042p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002042P+XP000038) Triple Bonus Poker", 0, layout_pe_poker )
9059GAMEL(1995, pex2043p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002043P+XP000038) Triple Bonus Poker", 0, layout_pe_poker )
9060GAMEL(1995, pex2044p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002044P+XP000038) Triple Bonus Poker", 0, layout_pe_poker )
9061GAMEL(1995, pex2045p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002045P+XP000038) Triple Bonus Poker", 0, layout_pe_poker )
9062GAMEL(1995, pex2066p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002066P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker )
9063GAMEL(1995, pex2067p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002067P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker )
9064GAMEL(1995, pex2068p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002068P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker )
9065GAMEL(1995, pex2069p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002069P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker )
9066GAMEL(1995, pex2070p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002070P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker )
9067GAMEL(1995, pex2121p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002121P+XP000038) Standard Draw Poker", 0,layout_pe_poker )
9068GAMEL(1995, pex2121pa, pex2121p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002121P+XP000037) Standard Draw Poker", 0,layout_pe_poker )
9069GAMEL(1995, pex2150p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002150P+XP000038) 4 of a Kind Bonus Poker", 0,layout_pe_poker )
9070GAMEL(1995, pex2172p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002172P+XP000112) Ace$ Bonus Poker",   0, layout_pe_poker )
9071GAMEL(1995, pex2173p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002173P+XP000038) Ace$ Bonus Poker",   0, layout_pe_poker )
9072GAMEL(1995, pex2180p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002180P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9073GAMEL(1995, pex2241p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002241P+XP000079) 4 of a Kind Bonus Poker", 0,layout_pe_poker )
9074GAMEL(1995, pex2244p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002244P+XP000079) Double Bonus Poker", 0, layout_pe_poker )
9075GAMEL(1995, pex2245p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002245P+XP000055) Standard Draw Poker", 0,layout_pe_poker )
9076GAMEL(1995, pex2245pa, pex2245p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002245P+XP000079) Standard Draw Poker", 0,layout_pe_poker )
9077GAMEL(1995, pex2250p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002250P+XP000050) Shockwave Poker",    0, layout_pe_poker )
9078GAMEL(1995, pex2251p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002251P+XP000050) Shockwave Poker",    0, layout_pe_poker )
9079GAMEL(1995, pex2272p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002272P+XP000055) Black Jack Bonus Poker", 0, layout_pe_poker )
9080GAMEL(1995, pex2275p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002275P+XP000055) Black Jack Bonus Poker", 0, layout_pe_poker )
9081GAMEL(1995, pex2276p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002276P+XP000055) Black Jack Bonus Poker", 0, layout_pe_poker )
9082GAMEL(1995, pex2283p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002283P+XP000057) Dealt Deuces Wild Bonus Poker", 0, layout_pe_poker ) /* Undumped color CAP but should have correct colors anyways */
9083GAMEL(1995, pex2284p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002284P+XP000057) Barbaric Decues Wild Bonus Poker", 0, layout_pe_poker ) /* Undumped color CAP but should have correct colors anyways */
9084GAMEL(1995, pex2302p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002302P+XP000038) Bonus Poker Deluxe", 0, layout_pe_poker )
9085GAMEL(1995, pex2303p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002303P+XP000112) White Hot Aces Poker", 0, layout_pe_poker )
9086GAMEL(1995, pex2306p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002306P+XP000112) Triple Double Bonus Poker", 0, layout_pe_poker )
9087GAMEL(1995, pex2307p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002307P+XP000112) Triple Double Bonus Poker", 0, layout_pe_poker )
9088GAMEL(1995, pex2308p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002308P+XP000112) Triple Double Bonus Poker", 0, layout_pe_poker )
9089GAMEL(1995, pex2310p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002310P+XP000112) Triple Double Bonus Poker", 0, layout_pe_poker )
9090GAMEL(1995, pex2314p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002314P+XP000112) Triple Bonus Poker Plus", 0, layout_pe_poker )
9091GAMEL(1995, pex2374p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002374P+XP000112) Super Aces Poker (Horseshoe)", 0, layout_pe_poker )
9092GAMEL(1995, pex2377p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002377P+XP000112) Super Double Bonus Poker", 0, layout_pe_poker )
9093GAMEL(1995, pex2419p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002419P+XP000064) Deuces Wild Bonus Poker - French", 0, layout_pe_poker )
9094GAMEL(1995, pex2420p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002420P+XP000064) Deuces Wild Bonus Poker - French", 0, layout_pe_poker )
9095GAMEL(1995, pex2421p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002421P+XP000064) Deuces Wild Bonus Poker - French", 0, layout_pe_poker )
9096GAMEL(1995, pex2440p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002440P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9097GAMEL(1995, pex2461p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002461P+XP000055) Joker Poker (Two Pair or Better)", 0, layout_pe_poker )
9098 
9099/* Superboard : Poker (Key On Credit) */
9100GAMEL(1995, pekoc766,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0766 A5W-A6F) Standard Draw Poker",  0, layout_pe_poker )
9101GAMEL(1995, pekoc801,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0801 A5W-A6F) 10's or Better",       0, layout_pe_poker )
9102GAMEL(1995, pekoc802,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0802 A5W-A6F) Standard Draw Poker",  0, layout_pe_poker )
9103GAMEL(1995, pekoc803,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0803 A5W-A6F) Joker Poker",          0, layout_pe_poker )
9104GAMEL(1995, pekoc803a, pekoc803,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0803 A50-A6N) Joker Poker",          0, layout_pe_poker )
9105GAMEL(1995, pekoc804,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0804 A5W-A6F) Bonus Poker Deluxe",   0, layout_pe_poker )
9106GAMEL(1995, pekoc806,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0806 A5W-A6F) Standard Draw Poker",  0, layout_pe_poker )
9107GAMEL(1995, pekoc818,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0818 A5W-A6F) Joker Poker (Aces or Better)", 0, layout_pe_poker )
9108GAMEL(1995, pekoc819,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0819 A5W-A6F) Bonus Poker Deluxe",   0, layout_pe_poker )
9109GAMEL(1995, pekoc825,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0825 A59-A7C) White Hot Aces",       0, layout_pe_poker )
9110 
9111/* Superboard : Multi-Poker */
9112GAMEL(1995, pexm001p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00001P+XMP00003) Multi-Poker",        0, layout_pe_poker )
9113GAMEL(1995, pexm002p,  pexm001p, peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00002P+XMP00006) Multi-Poker",        0, layout_pe_poker )
9114GAMEL(1995, pexm003p,  pexm001p, peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00003P+XMP00024) Multi-Poker",        0, layout_pe_poker )
9115GAMEL(1995, pexm004p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00004P+XMP00002) Multi-Poker",        0, layout_pe_poker )
9116GAMEL(1995, pexm005p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00005P+XMP00004) Multi-Poker",        0, layout_pe_poker )
9117GAMEL(1995, pexm006p,  pexm001p, peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00006P+XMP00006) Multi-Poker",        0, layout_pe_poker )
9118GAMEL(1995, pexm007p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00007P+XMP00006) Multi-Poker",        0, layout_pe_poker )
9119GAMEL(1995, pexm008p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00008P+XMP00006) Multi-Poker",        GAME_IMPERFECT_GRAPHICS, layout_pe_poker ) /* Needs CG2228 graphics roms for correct MENU game banners */
9120GAMEL(1995, pexm009p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00009P+XMP00002) Multi-Poker",        GAME_IMPERFECT_GRAPHICS, layout_pe_poker ) /* Needs unknown CG2??? graphics roms for correct MENU game banners */
9121GAMEL(1995, pexm013p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00013P+XMP00025) Multi-Poker",        0, layout_pe_poker )
9122 
9123/* Superboard : Multi-Poker (Wingboard) */
9124GAMEL(1995, pexmp013,  0,        peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00013) 5-in-1 Wingboard (CG2346) - Spanish", 0, layout_pe_poker )
9125GAMEL(1995, pexmp017,  0,        peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00017) 5-in-1 Wingboard (CG2298)",   0, layout_pe_poker )
9126GAMEL(1995, pexmp017a, pexmp017, peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00017) 5-in-1 Wingboard (CG2352)",   0, layout_pe_poker )
9127GAMEL(1995, pexmp017b, pexmp017, peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00017) 5-in-1 Wingboard (CG2426)",   0, layout_pe_poker )
9128GAMEL(1995, pexmp026,  0,        peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00026) 5-in-1 Wingboard (CG2346) - Spanish", 0, layout_pe_poker )
9129GAMEL(1995, pexmp030,  0,        peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00030) 5-in-1 Wingboard (CG2426)",   0, layout_pe_poker )
9130 
9131/* Superboard : Slots machine */
9132GAMEL(1997, pex0838s, 0,        peplus,  peplus_slots, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000838S+XS000002) Five Times Pay Slots", 0, layout_pe_slots )
9133GAMEL(1997, pex0841s, pex0838s, peplus,  peplus_slots, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000841S+XS000002) Five Times Pay Slots", 0, layout_pe_slots )
9134GAMEL(1997, pex0998s, 0,        peplus,  peplus_slots, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000998S+XS000006) Triple Triple Diamond Slots", 0, layout_pe_slots )
9135GAMEL(1997, pex1087s, 0,        peplus,  peplus_slots, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X001087S+XS000006) Double Double Diamond Slots", GAME_IMPERFECT_GRAPHICS, layout_pe_slots ) /* CAPX2415 not dumped */
1/**********************************************************************************
2
3
4    PLAYER'S EDGE PLUS (PE+)
5
6    Driver by Jim Stolis.
7    Layouts by Stephh.
8
9    Special thanks to smf for I2C EEPROM support.
10
11    --- Technical Notes ---
12
13    Name:    Player's Edge Plus (PP0516) Double Bonus Draw Poker.
14    Company: IGT - International Game Technology
15    Year:    1987
16
17    Hardware:
18
19    CPU =  INTEL 80C32       ; I8052 compatible
20    VIDEO = ROCKWELL 6545    ; CRTC6845 compatible
21    SND =  AY-3-8912         ; AY8910 compatible
22
23    History:
24
25    This form of video poker machine has the ability to use different game roms.  The operator
26    changes the game by placing the rom at U68 on the motherboard.  This driver currently supports
27    several PE+ game roms, but should work with all other compatible game roms as far as cpu, video,
28    sound, and inputs are concerned.  Some games can share the same color prom and graphic roms,
29    but this is not always the case.  It is best to confirm the game, color and graphic combinations.
30
31    The game code runs in two different modes, game mode and operator mode.  Game mode is what a
32    normal player would see when playing.  Operator mode is for the machine operator to adjust
33    machine settings and view coin counts.  The upper door must be open in order to enter operator
34    mode and so it should be mapped to an input bank if you wish to support it.  The operator
35    has two additional inputs (jackpot reset and self-test) to navigate with, along with the
36    normal buttons available to the player.
37
38    A normal machine keeps all coin counts and settings in a battery-backed ram, and will
39    periodically update an external eeprom for an even more secure backup.  This eeprom
40    also holds the current game state in order to recover the player from a full power failure.
41
42
43Additional notes
44================
45
461) What are "set chips" ?
47
48    They are meant to be used after you have already sucessfully put a new game in your machine.
49    Lets say you have 'pepp0516' installed and you go through the setup. In a real machine,
50    you may want to add a bill validator. The only way to do that is to un-socket the 'pepp0516'
51    chip and put in the 'peset038' chip and then reboot the machine. Then this chip's program
52    runs and you set the options and put the 'pepp0516' chip back in.
53
54    The only way to simulate this is to fire up the 'pepp0516' game and set it up. Then exit the
55    game and copy the cmos & i2cmem files from your 'pepp0516' directory (in NVRAM) to the peset038
56    directory in NVRAM, and then run the 'peset038' program. This is because they have to have the
57    same eeprom and cmos data in memory to work. When you are done with the 'peset038' program,
58    you copy the cmos & i2cmem files back into the pepp0516 directory and restart the pepp0516 game.
59    'peset038' is just a utility program with one screen and 3 tested inputs.
60
61
622) Initialization
63
64  - Method 1 :
65      * be sure the door is opened (if not, press 'O' by default)
66      * "CMOS DATA" will be displayed
67      * press the self-test button (default is 'K')
68      * be sure the door is opened (if not, press 'O' by default)
69      * "EEPROM DATA" will be displayed
70      * press the self-test button (default is 'K')
71      * be sure the door is closed (if not, press 'O' by default)
72
73  - Method 2 :
74      * be sure the door is opened (if not, press 'O' by default)
75      * "CMOS DATA" will be displayed
76      * press the self-test button (default is 'K') until a "beep" is heard
77      * be sure the door is closed (if not, press 'O' by default)
78      * press the jackpot reset button (default is 'L')
79      * be sure the door is opened (if not, press 'O' by default)
80      * "EEPROM DATA" will be displayed
81      * press the self-test button (default is 'K')
82      * be sure the door is closed (if not, press 'O' by default)
83
84  - Method 3 (earlier 32K French programs ONLY):
85      * be sure the door is opened (if not, press 'O' by default)
86      * "CODE ERREUR DE VALIDITE CMOS" will be displayed
87      * press the self-test button (default is 'K')
88      * be sure the door is closed (if not, press 'O' by default)
89      * if you see "PORTE OUVERTE" on the bottom of the screen,  the secondary
90      *    door is open, you'll need to close it (press 'M' by default)
91      * when both doors are closed you should see "PORTE FERMEE" on the
92      *    bottom of the screen. Begin normal play
93
94
953) Configuration
96
97  - To configure a game :
98      * be sure the door is opened (if not, press 'O' by default)
99      * press the self-test button (default is 'K')
100      * cycle through the screens with the self-test button (default is 'K')
101      * close the door (default is 'O') to go back to the game and save the settings
102
1033a) About the "autohold" feature
104
105    Depending on laws which vary from cities/country, this feature can available or not in the
106    "operator mode". By default, it isn't available. To have this feature available in the
107    "operator mode", a new chip has to be burnt with a bit set and a new checksum (game ID
108    doesn't change though). Each program rom requires a specific address to be set to 0x01
109    to enable this option. It is beyond the scope of this driver to provide that information
110    for each set that is supported. Only PP0197 & PP0419 have support for Autohold enabled.
111
112
113Stephh's log (2007.11.28) :
114  - Renamed sets :
115      * 'peplus'   -> 'pepp0516' (so we get the game ID as for the other games)
116  - added generic/default layout, inputs and outputs
117  - for each kind of game (poker, bjack, keno, slots) :
118      * added two layouts (default is the "Bezel Lamps" for players, the other is "Debug Lamps")
119      * added one INPUT_PORT definition
120  - for "set chips" :
121      * added one fake layout
122      * added one fake INPUT_PORT definition
123
124******************************************************************************************************************
125
126Generally speaking for standard PE+ boards:
127
128    Program roms are 64K and read as 27C512  (Jumper E15 is for 64K, E14 is for 32K)
129CG Graphics roms are 32K and read as 27C256
130      Color CAP PROM are 256 bytes and read as N82S135N (or compatible, IE: DM74LS471)
131      Color CAPX PROM are 512 bytes and read as N82S147N (or compatible)
132       Where CAPX & CAP share the same number, the CAPX has the same DATA as the CAP chip in
133       the first 256 bytes, then just padded with 256 bytes of 0x00 at the end of the file.
134
135Board type with program type
136
137Standard PE+
138 Program Types:
139  BEnnnn Blackjack / 21 games
140  KEnnnn Keno
141  PPnnnn Poker games. Several different types of poker require specific CG graphics + CAP color prom
142  IPnnnn International Poker games. Several different types of poker require specific CG graphics + CAP color prom
143  PSnnnn Slot games. Each slot game requires specific CG graphics + CAP color prom
144
145Super PE+
146 Program Types
147  XPnnnnnn  Poker Programs. Different options for each set, but all use the same XnnnnnnP data roms
148   XnnnnnnP Poker Data. Contains poker game + paytable percentages
149             Data roms will not work with every Program rom. Incompatible combos report: Incompatible Data EPROM
150             X000055P is a good example, it works with 19 XP000xxx Program roms. Others may be as few as 2.
151  XMPnnnnn  Multi-Poker Programs. Different options for each set, but all use the same XMnnnnnP data roms
152             XMP00002 through XMP00006 & XMP00024 Use the XM000xxP Poker Data
153             XMP00014, XMP00017 & XMP00030 Use the WING Board add-on and use the XnnnnnnP Poker Data (Not all are compatible!)
154   XMnnnnnP Multi-Poker Data. Contains poker games + paytable percentages: Requires specific CG graphics + CAP color prom
155  XKnnnnnn  Spot Keno Programs. Different options for each set, but all use the same XnnnnnnK data roms
156   XnnnnnnK Spot Keno Data. Uses CG2120 with CAP1267
157  XSnnnnnn  Slot Programs. Different options for each set, but all use the same XnnnnnnS data roms
158  XnnnnnnT  Tournament Slot Programs? Different options for each set, but all use the same XnnnnnnS data roms
159   XnnnnnnS Slot Data. Each set requires specific CG graphics + CAP color prom
160
161The CG graphics + CAP color proms along with which program sets they belong to is a closely guarded secret by IGT.
162 The only public information is from collectors who document and share such information.
163
164NOTE:  Do NOT use the CG+CAP combos listed below as THE definitive absolute reference. There are other combos that
165       worked to produce correct card graphics plus paytable information for many sets. So the combos listed below
166       may not always be the "official" combo and a better or more correct combo may exist.
167
168NOTE:  International PP0xxx sets support a Tournament mode.  You can toggle back and forth between standard and
169       Tournament mode by pressing and holding Jackpot Reset (L key) and pressing Change Request (Y key)
170
171NOTE:  XP000035 supports a Tournament mode.  You can toggle back and forth between standard and Tournament mode by
172       pressing and holding Jackpot Reset (L key) and pressing Change Request (Y key)
173
174NOTE:  Some CG graphics sets work with several "standard" game types, but will be included in a single set for
175       illustration purposes and to archive the sets.
176
177NOTE:  The Door Open cycling is currently not fully understood. Non Plus programs and the earlier 32K versions don't
178       expect the Door Open bit to cycle. Later versions, Superboard & Wingboards require the Door Open cycling but
179       at different rates. It's currently not know what if any universal value will work for all sets.
180
181***********************************************************************************/
182
183#include "emu.h"
184#include "sound/ay8910.h"
185#include "machine/nvram.h"
186#include "cpu/mcs51/mcs51.h"
187#include "machine/i2cmem.h"
188#include "video/mc6845.h"
189
190#include "peplus.lh"
191#include "pe_schip.lh"
192#include "pe_poker.lh"
193#include "pe_bjack.lh"
194#include "pe_keno.lh"
195#include "pe_slots.lh"
196
197
198class peplus_state : public driver_device
199{
200public:
201   enum
202   {
203      TIMER_ASSERT_LP
204   };
205
206   peplus_state(const machine_config &mconfig, device_type type, const char *tag)
207      : driver_device(mconfig, type, tag),
208         m_cmos_ram(*this, "cmos") ,
209      m_program_ram(*this, "prograram"),
210      m_s3000_ram(*this, "s3000_ram"),
211      m_s5000_ram(*this, "s5000_ram"),
212      m_videoram(*this, "videoram"),
213      m_s7000_ram(*this, "s7000_ram"),
214      m_sb000_ram(*this, "sb000_ram"),
215      m_sd000_ram(*this, "sd000_ram"),
216      m_sf000_ram(*this, "sf000_ram"),
217      m_io_port(*this, "io_port"),
218      m_maincpu(*this, "maincpu"),
219      m_i2cmem(*this, "i2cmem"),
220      m_gfxdecode(*this, "gfxdecode"),
221      m_palette(*this, "palette")
222   {
223   }
224
225   required_shared_ptr<UINT8> m_cmos_ram;
226   required_shared_ptr<UINT8> m_program_ram;
227   required_shared_ptr<UINT8> m_s3000_ram;
228   required_shared_ptr<UINT8> m_s5000_ram;
229   required_shared_ptr<UINT8> m_videoram;
230   required_shared_ptr<UINT8> m_s7000_ram;
231   required_shared_ptr<UINT8> m_sb000_ram;
232   required_shared_ptr<UINT8> m_sd000_ram;
233   required_shared_ptr<UINT8> m_sf000_ram;
234   required_shared_ptr<UINT8> m_io_port;
235   tilemap_t *m_bg_tilemap;
236   UINT8 m_wingboard;
237   UINT8 m_doorcycle;
238   UINT16 door_wait;
239   UINT8 m_jumper_e16_e17;
240   UINT16 m_vid_address;
241   UINT8 *m_palette_ram;
242   UINT8 *m_palette_ram2;
243   UINT64 m_last_cycles;
244   UINT8 m_coin_state;
245   UINT64 m_last_door;
246   UINT8 m_door_open;
247   UINT64 m_last_coin_out;
248   UINT8 m_coin_out_state;
249   int m_sda_dir;
250   UINT8 m_bv_state;
251   UINT8 m_bv_busy;
252   UINT8 m_bv_pulse;
253   UINT8 m_bv_denomination;
254   UINT8 m_bv_protocol;
255   UINT64 m_bv_cycles;
256   UINT8 m_bv_last_enable_state;
257   UINT8 m_bv_enable_state;
258   UINT8 m_bv_enable_count;
259   UINT8 m_bv_data_bit;
260   UINT8 m_bv_loop_count;
261   UINT16 id023_data;
262   DECLARE_WRITE8_MEMBER(peplus_bgcolor_w);
263   DECLARE_WRITE8_MEMBER(peplus_crtc_display_w);
264   DECLARE_WRITE8_MEMBER(peplus_io_w);
265   DECLARE_WRITE8_MEMBER(peplus_duart_w);
266   DECLARE_WRITE8_MEMBER(peplus_cmos_w);
267   DECLARE_WRITE8_MEMBER(peplus_s3000_w);
268   DECLARE_WRITE8_MEMBER(peplus_s5000_w);
269   DECLARE_WRITE8_MEMBER(peplus_s7000_w);
270   DECLARE_WRITE8_MEMBER(peplus_sb000_w);
271   DECLARE_WRITE8_MEMBER(peplus_sd000_w);
272   DECLARE_WRITE8_MEMBER(peplus_sf000_w);
273   DECLARE_WRITE8_MEMBER(peplus_output_bank_a_w);
274   DECLARE_WRITE8_MEMBER(peplus_output_bank_b_w);
275   DECLARE_WRITE8_MEMBER(peplus_output_bank_c_w);
276   DECLARE_READ8_MEMBER(peplus_io_r);
277   DECLARE_READ8_MEMBER(peplus_duart_r);
278   DECLARE_READ8_MEMBER(peplus_cmos_r);
279   DECLARE_READ8_MEMBER(peplus_s3000_r);
280   DECLARE_READ8_MEMBER(peplus_s5000_r);
281   DECLARE_READ8_MEMBER(peplus_s7000_r);
282   DECLARE_READ8_MEMBER(peplus_sb000_r);
283   DECLARE_READ8_MEMBER(peplus_sd000_r);
284   DECLARE_READ8_MEMBER(peplus_sf000_r);
285   DECLARE_READ8_MEMBER(peplus_bgcolor_r);
286   DECLARE_READ8_MEMBER(peplus_dropdoor_r);
287   DECLARE_READ8_MEMBER(peplus_watchdog_r);
288   DECLARE_CUSTOM_INPUT_MEMBER(peplus_input_r);
289   DECLARE_WRITE8_MEMBER(peplus_crtc_mode_w);
290   DECLARE_WRITE_LINE_MEMBER(crtc_vsync);
291   DECLARE_WRITE8_MEMBER(i2c_nvram_w);
292   DECLARE_READ8_MEMBER(peplus_input_bank_a_r);
293   DECLARE_READ8_MEMBER(peplus_input0_r);
294   DECLARE_DRIVER_INIT(nonplus);
295   DECLARE_DRIVER_INIT(peplus);
296   DECLARE_DRIVER_INIT(peplussb);
297   DECLARE_DRIVER_INIT(peplussbw);
298   TILE_GET_INFO_MEMBER(get_bg_tile_info);
299   MC6845_ON_UPDATE_ADDR_CHANGED(crtc_addr);
300   virtual void machine_reset();
301   virtual void video_start();
302   UINT32 screen_update_peplus(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
303   void peplus_load_superdata(const char *bank_name);
304   DECLARE_PALETTE_INIT(peplus);
305   required_device<cpu_device> m_maincpu;
306   required_device<i2cmem_device> m_i2cmem;
307   required_device<gfxdecode_device> m_gfxdecode;
308   required_device<palette_device> m_palette;
309
310protected:
311   virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
312};
313
314static const UINT8  id_022[8] = { 0x00, 0x01, 0x04, 0x09, 0x13, 0x16, 0x18, 0x00 };
315static const UINT16 id_023[8] = { 0x4a6c, 0x4a7b, 0x4a4b, 0x4a5a, 0x4a2b, 0x4a0a, 0x4a19, 0x4a3a };
316
317#define MASTER_CLOCK        XTAL_20MHz
318#define CPU_CLOCK           ((MASTER_CLOCK)/2)      /* divided by 2 - 7474 */
319#define MC6845_CLOCK        ((MASTER_CLOCK)/8/3)
320#define SOUND_CLOCK         ((MASTER_CLOCK)/12)
321
322
323/**************
324* Memory Copy *
325***************/
326
327void peplus_state::peplus_load_superdata(const char *bank_name)
328{
329   UINT8 *super_data = memregion(bank_name)->base();
330
331   /* Distribute Superboard Data */
332   memcpy(m_s3000_ram, &super_data[0x3000], 0x1000);
333   memcpy(m_s5000_ram, &super_data[0x5000], 0x1000);
334   memcpy(m_s7000_ram, &super_data[0x7000], 0x1000);
335   memcpy(m_sb000_ram, &super_data[0xb000], 0x1000);
336   memcpy(m_sd000_ram, &super_data[0xd000], 0x1000);
337   memcpy(m_sf000_ram, &super_data[0xf000], 0x1000);
338}
339
340
341/*****************
342* Write Handlers *
343******************/
344
345WRITE8_MEMBER(peplus_state::peplus_bgcolor_w)
346{
347   int i;
348
349   for (i = 0; i < m_palette->entries(); i++)
350   {
351      int bit0, bit1, bit2, r, g, b;
352
353      /* red component */
354      bit0 = (~data >> 0) & 0x01;
355      bit1 = (~data >> 1) & 0x01;
356      bit2 = (~data >> 2) & 0x01;
357      r = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
358
359      /* green component */
360      bit0 = (~data >> 3) & 0x01;
361      bit1 = (~data >> 4) & 0x01;
362      bit2 = (~data >> 5) & 0x01;
363      g = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
364
365      /* blue component */
366      bit0 = (~data >> 6) & 0x01;
367      bit1 = (~data >> 7) & 0x01;
368      bit2 = 0;
369      b = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
370
371      m_palette->set_pen_color((15 + (i*16)), rgb_t(r, g, b));
372   }
373}
374
375
376/* ROCKWELL 6545 - Transparent Memory Addressing */
377
378MC6845_ON_UPDATE_ADDR_CHANGED(peplus_state::crtc_addr)
379{
380   m_vid_address = address;
381}
382
383
384WRITE8_MEMBER(peplus_state::peplus_crtc_mode_w)
385{
386   /* Reset timing logic */
387}
388
389void peplus_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
390{
391   switch (id)
392   {
393   case TIMER_ASSERT_LP:
394      downcast<mc6845_device *>((device_t*)ptr)->assert_light_pen_input();
395      break;
396   default:
397      assert_always(FALSE, "Unknown id in peplus_state::device_timer");
398   }
399}
400
401
402static void handle_lightpen( mc6845_device *device )
403{
404   peplus_state *state = device->machine().driver_data<peplus_state>();
405   int x_val = device->machine().root_device().ioport("TOUCH_X")->read_safe(0x00);
406   int y_val = device->machine().root_device().ioport("TOUCH_Y")->read_safe(0x00);
407   const rectangle &vis_area = device->screen().visible_area();
408   int xt, yt;
409
410   xt = x_val * vis_area.width() / 1024 + vis_area.min_x;
411   yt = y_val * vis_area.height() / 1024 + vis_area.min_y;
412
413   state->timer_set(device->screen().time_until_pos(yt, xt), peplus_state::TIMER_ASSERT_LP, 0, device);
414}
415
416WRITE_LINE_MEMBER(peplus_state::crtc_vsync)
417{
418   mc6845_device *device = machine().device<mc6845_device>("crtc");
419   m_maincpu->set_input_line(0, state ? ASSERT_LINE : CLEAR_LINE);
420   handle_lightpen(device);
421}
422
423WRITE8_MEMBER(peplus_state::peplus_crtc_display_w)
424{
425   UINT8 *videoram = m_videoram;
426   videoram[m_vid_address] = data;
427   m_palette_ram[m_vid_address] = m_io_port[1];
428   m_palette_ram2[m_vid_address] = m_io_port[3];
429
430   m_bg_tilemap->mark_tile_dirty(m_vid_address);
431
432   /* An access here triggers a device read !*/
433   machine().device<mc6845_device>("crtc")->register_r(space, 0);
434}
435
436WRITE8_MEMBER(peplus_state::peplus_io_w)
437{
438   m_io_port[offset] = data;
439}
440
441WRITE8_MEMBER(peplus_state::peplus_duart_w)
442{
443   // Used for Slot Accounting System Communication
444}
445
446WRITE8_MEMBER(peplus_state::peplus_cmos_w)
447{
448   char bank_name[6];
449
450   /* Test for Wingboard PAL Trigger Condition */
451   if (offset == 0x1fff && m_wingboard && data < 5)
452   {
453      sprintf(bank_name, "user%d", data + 1);
454      peplus_load_superdata(bank_name);
455   }
456
457   m_cmos_ram[offset] = data;
458}
459
460WRITE8_MEMBER(peplus_state::peplus_s3000_w)
461{
462   m_s3000_ram[offset] = data;
463}
464
465WRITE8_MEMBER(peplus_state::peplus_s5000_w)
466{
467   m_s5000_ram[offset] = data;
468}
469
470WRITE8_MEMBER(peplus_state::peplus_s7000_w)
471{
472   m_s7000_ram[offset] = data;
473}
474
475WRITE8_MEMBER(peplus_state::peplus_sb000_w)
476{
477   m_sb000_ram[offset] = data;
478}
479
480WRITE8_MEMBER(peplus_state::peplus_sd000_w)
481{
482   m_sd000_ram[offset] = data;
483}
484
485WRITE8_MEMBER(peplus_state::peplus_sf000_w)
486{
487   m_sf000_ram[offset] = data;
488}
489
490WRITE8_MEMBER(peplus_state::peplus_output_bank_a_w)
491{
492   output_set_value("pe_bnka0",(data >> 0) & 1); /* Coin Lockout */
493   output_set_value("pe_bnka1",(data >> 1) & 1); /* Diverter */
494   output_set_value("pe_bnka2",(data >> 2) & 1); /* Bell */
495   output_set_value("pe_bnka3",(data >> 3) & 1); /* N/A */
496   output_set_value("pe_bnka4",(data >> 4) & 1); /* Hopper 1 */
497   output_set_value("pe_bnka5",(data >> 5) & 1); /* Hopper 2 */
498   output_set_value("pe_bnka6",(data >> 6) & 1); /* specific to a kind of machine */
499   output_set_value("pe_bnka7",(data >> 7) & 1); /* specific to a kind of machine */
500
501   m_coin_out_state = 0;
502   if(((data >> 4) & 1) || ((data >> 5) & 1))
503      m_coin_out_state = 3;
504}
505
506WRITE8_MEMBER(peplus_state::peplus_output_bank_b_w)
507{
508   output_set_value("pe_bnkb0",(data >> 0) & 1); /* specific to a kind of machine */
509   output_set_value("pe_bnkb1",(data >> 1) & 1); /* Deal Spin Start */
510   output_set_value("pe_bnkb2",(data >> 2) & 1); /* Cash Out */
511   output_set_value("pe_bnkb3",(data >> 3) & 1); /* specific to a kind of machine */
512   output_set_value("pe_bnkb4",(data >> 4) & 1); /* Bet 1 / Bet Max */
513   output_set_value("pe_bnkb5",(data >> 5) & 1); /* Change Request */
514   output_set_value("pe_bnkb6",(data >> 6) & 1); /* Door Open */
515   output_set_value("pe_bnkb7",(data >> 7) & 1); /* specific to a kind of machine */
516}
517
518WRITE8_MEMBER(peplus_state::peplus_output_bank_c_w)
519{
520   output_set_value("pe_bnkc0",(data >> 0) & 1); /* Coin In Meter */
521   output_set_value("pe_bnkc1",(data >> 1) & 1); /* Coin Out Meter */
522   output_set_value("pe_bnkc2",(data >> 2) & 1); /* Coin Drop Meter */
523   output_set_value("pe_bnkc3",(data >> 3) & 1); /* Jackpot Meter */
524   output_set_value("pe_bnkc4",(data >> 4) & 1); /* Bill Acceptor Enabled */
525   output_set_value("pe_bnkc5",(data >> 5) & 1); /* SDS Out */
526   output_set_value("pe_bnkc6",(data >> 6) & 1); /* N/A */
527   output_set_value("pe_bnkc7",(data >> 7) & 1); /* Game Meter */
528
529   m_bv_enable_state = (data >> 4) & 1;
530}
531
532WRITE8_MEMBER(peplus_state::i2c_nvram_w)
533{
534   m_i2cmem->write_scl(BIT(data, 2));
535   m_sda_dir = BIT(data, 1);
536   m_i2cmem->write_sda(BIT(data, 0));
537}
538
539
540/****************
541* Read Handlers *
542****************/
543
544READ8_MEMBER(peplus_state::peplus_io_r)
545{
546   return m_io_port[offset];
547}
548
549READ8_MEMBER(peplus_state::peplus_duart_r)
550{
551   // Used for Slot Accounting System Communication
552   return 0x00;
553}
554
555READ8_MEMBER(peplus_state::peplus_cmos_r)
556{
557   return m_cmos_ram[offset];
558}
559
560READ8_MEMBER(peplus_state::peplus_s3000_r)
561{
562   return m_s3000_ram[offset];
563}
564
565READ8_MEMBER(peplus_state::peplus_s5000_r)
566{
567   return m_s5000_ram[offset];
568}
569
570READ8_MEMBER(peplus_state::peplus_s7000_r)
571{
572   return m_s7000_ram[offset];
573}
574
575READ8_MEMBER(peplus_state::peplus_sb000_r)
576{
577   return m_sb000_ram[offset];
578}
579
580READ8_MEMBER(peplus_state::peplus_sd000_r)
581{
582   return m_sd000_ram[offset];
583}
584
585READ8_MEMBER(peplus_state::peplus_sf000_r)
586{
587   return m_sf000_ram[offset];
588}
589
590/* Last Color in Every Palette is bgcolor */
591READ8_MEMBER(peplus_state::peplus_bgcolor_r)
592{
593   return m_palette->pen_color(15); // Return bgcolor from First Palette
594}
595
596READ8_MEMBER(peplus_state::peplus_dropdoor_r)
597{
598   return 0x00; // Drop Door 0x00=Closed 0x02=Open
599}
600
601READ8_MEMBER(peplus_state::peplus_watchdog_r)
602{
603   return 0x00; // Watchdog
604}
605
606READ8_MEMBER(peplus_state::peplus_input0_r)
607{
608/*
609        PE+ bill validators have a dip switch setting to switch between ID-022 and ID-023 protocols.
610
611        Emulating IGT IDO22 Pulse Protocol (IGT Smoke 2.2)
612        ID022 protocol requires a 20ms on/off pulse x times for denomination followed by a 50ms stop pulse.
613        The DBV then waits for at least 3 toggling (ACK) pulses of alternating 20ms each from the game.
614        If no toggling received within 200ms, the bill was rejected by the game (e.g. Max Credits reached).
615        Once toggling received, the DBV stacks the bill and sends a 10ms stacked pulses.
616
617        Emulating IGT IDO23 Pulse Protocol (IGT 2.5)
618        ID023 protocol requires a start pulse of 50ms ON followed by a 20ms pause.  Next a 15-bit data stream
619        is sent based on the country code and denomination (see table below).  And finally a 90ms stop pulse.
620        There is then a 200ms pause and the entire sequence is transmitted again two more times.
621        The DBV then waits for the toggling much like the ID-022 protocol above, however ends with two 10ms
622        stack pulses instead of one.
623
624        Ticket handling has not been emulated.
625
626        IDO23 Country Codes
627        -------------------
628        0x07 = Canada
629        0x25 = USA
630
631        IDO23 USA 15-bit Data Samples:
632        ---------+--------------+--------------+-----------+
633        Bill Amt | Country Code |  Denom Code  |  Checksum |
634        ---------+--------------+--------------+-----------+
635        $1       | 1 0 0 1 0 1  |  0 0 1 1 0   |  1 1 0 0  |
636        $2       | 1 0 0 1 0 1  |  0 0 1 1 1   |  1 0 1 1  |
637        $5       | 1 0 0 1 0 1  |  0 0 1 0 0   |  1 0 1 1  |
638        $10      | 1 0 0 1 0 1  |  0 0 1 0 1   |  1 0 1 0  |
639        $20      | 1 0 0 1 0 1  |  0 0 0 1 0   |  1 0 1 1  |
640        $50      | 1 0 0 1 0 1  |  0 0 0 0 0   |  1 0 1 0  |
641        $100     | 1 0 0 1 0 1  |  0 0 0 0 1   |  1 0 0 1  |
642        Ticket   | 1 0 0 1 0 1  |  0 0 0 1 1   |  1 0 1 0  |
643        ---------+--------------+--------------+-----------+
644
645        Direction Data
646        --------------
647        A (FA) <-- [FRONT OF BILL] --> (FB) B
648        D (BB) <-- [BACK OF BILL ] --> (BA) C
649
650        Pulses are currently time via cpu cycles.
651        833.3 cycles per millisecond
652        10 ms = 8333 cycles
653*/
654   UINT64 curr_cycles = m_maincpu->total_cycles();
655
656   // Allow Bill Insert if DBV Enabled
657   if (m_bv_enable_state == 0x01 && ((ioport("DBV")->read_safe(0xff) & 0x01) == 0x00)) {
658      // If not busy
659      if (m_bv_busy == 0) {
660         m_bv_busy = 1;
661
662         // Fetch Current Denomination and Protocol
663         m_bv_denomination = ioport("BC")->read();
664         m_bv_protocol = ioport("BP")->read();
665
666         if (m_bv_protocol == 0) {
667            // ID-022
668            m_bv_denomination = id_022[m_bv_denomination];
669
670            if (m_bv_denomination == 0)
671               m_bv_state = 0x03; // $1 So Skip Credit Pulse
672            else
673               m_bv_state = 0x01; // Greater than $1 Needs Credit Pulse
674         } else {
675            // ID-023
676            id023_data = id_023[m_bv_denomination];
677
678            m_bv_data_bit = 14;
679            m_bv_loop_count = 0;
680
681            m_bv_state = 0x11;
682         }
683
684         m_bv_cycles = curr_cycles;
685         m_bv_pulse = 1;
686         m_bv_enable_count = 0;
687      }
688   }
689
690   switch (m_bv_state)
691   {
692      case 0x00: // Not Active
693         m_bv_busy = 0;
694         break;
695      case 0x01: // Credit Pulse 20ms ON
696         if (curr_cycles - m_bv_cycles >= 833.3 * 20) {
697            m_bv_cycles = curr_cycles;
698            m_bv_pulse = 0;
699            m_bv_state++;
700         }
701         break;
702      case 0x02: // Credit Pulse 20ms OFF
703         if (curr_cycles - m_bv_cycles >= 833.3 * 20) {
704            m_bv_cycles = curr_cycles;
705            m_bv_pulse = 1;
706
707            m_bv_denomination--;
708
709            if (m_bv_denomination == 0)
710               m_bv_state++; // Done with Credit Pulse
711            else
712               m_bv_state = 0x01; // Continue Pulsing Denomination
713         }
714         break;
715      case 0x03: // Stop Pulse 50ms ON
716         if (curr_cycles - m_bv_cycles >= 833.3 * 50) {
717            m_bv_cycles = curr_cycles;
718            m_bv_pulse = 0;
719
720            // Reset Toggle Details
721            m_bv_last_enable_state = m_bv_enable_state;
722            m_bv_enable_count = 0;
723
724            m_bv_state++;
725         }
726         break;
727      case 0x04: // Begin Toggle Polling
728         if (m_bv_enable_state != m_bv_last_enable_state) {
729            m_bv_enable_count++;
730            m_bv_last_enable_state = m_bv_enable_state;
731
732            // Got Enough Toggles, Advance to Stacking
733            if (m_bv_enable_count == 0x03) {
734               m_bv_cycles = curr_cycles;
735               m_bv_pulse = 1;
736               m_bv_state++;
737            }
738         } else {
739            // No Toggling Found, Game Rejected Bill
740            if (curr_cycles - m_bv_cycles >= 833.3 * 200) {
741               m_bv_pulse = 0;
742               m_bv_state = 0x00;
743            }
744         }
745         break;
746      case 0x05: // Stacked Pulse 10ms ON
747         if (curr_cycles - m_bv_cycles >= 833.3 * 10) {
748            m_bv_cycles = curr_cycles;
749            m_bv_pulse = 0;
750            m_bv_state = 0x00;
751         }
752         break;
753      case 0x11: // Start Pulse 50ms ON
754         if (curr_cycles - m_bv_cycles >= 833.3 * 50) {
755            m_bv_cycles = curr_cycles;
756            m_bv_pulse = 0;
757            m_bv_state++;
758         }
759         break;
760      case 0x12: // Start Pulse 20ms OFF
761         if (curr_cycles - m_bv_cycles >= 833.3 * 20) {
762            m_bv_cycles = curr_cycles;
763            m_bv_pulse = 1;
764            m_bv_state++;
765         }
766         break;
767      case 0x13: // Data Sync Pulse 20ms ON
768         if (curr_cycles - m_bv_cycles >= 833.3 * 20) {
769            m_bv_cycles = curr_cycles;
770            m_bv_pulse = 1 - ((id023_data >> m_bv_data_bit) & 0x01);
771            m_bv_state++;
772         }
773         break;
774      case 0x14: // Data Value Pulse 20ms OFF
775         if (curr_cycles - m_bv_cycles >= 833.3 * 20) {
776            m_bv_cycles = curr_cycles;
777            m_bv_pulse = 1;
778
779            if (m_bv_data_bit == 0) {
780               m_bv_data_bit = 14; // Done with Data Stream
781               m_bv_state++;
782            } else {
783               m_bv_data_bit--;
784               m_bv_state = 0x13; // More Data Yet
785            }
786         }
787         break;
788      case 0x15: // Stop Pulse 90ms ON
789         if (curr_cycles - m_bv_cycles >= 833.3 * 90) {
790            m_bv_cycles = curr_cycles;
791            m_bv_pulse = 0;
792
793            if (m_bv_loop_count >= 2) {
794               m_bv_state = 0x17; // Done, Ready for Toggling
795            } else {
796               m_bv_loop_count++;
797               m_bv_state++;
798            }
799         }
800         break;
801      case 0x16: // Repeat Pulse 200ms OFF
802         if (curr_cycles - m_bv_cycles >= 833.3 * 200) {
803            m_bv_cycles = curr_cycles;
804            m_bv_pulse = 1;
805            m_bv_state = 0x11; // Repeat from Start
806         }
807         break;
808      case 0x17: // Begin Toggle Polling
809         if (m_bv_enable_state != m_bv_last_enable_state) {
810            m_bv_enable_count++;
811            m_bv_last_enable_state = m_bv_enable_state;
812
813            // Got Enough Toggles, Advance to Stacking
814            if (m_bv_enable_count == 0x03) {
815               m_bv_cycles = curr_cycles;
816               m_bv_pulse = 1;
817               m_bv_state++;
818            }
819         } else {
820            // No Toggling Found, Game Rejected Bill
821            if (curr_cycles - m_bv_cycles >= 833.3 * 200) {
822               m_bv_pulse = 0;
823               m_bv_state = 0x00;
824            }
825         }
826         break;
827      case 0x18: // Stacked Pulse 10ms ON
828         if (curr_cycles - m_bv_cycles >= 833.3 * 10) {
829            m_bv_cycles = curr_cycles;
830            m_bv_pulse = 0;
831            m_bv_state++;
832         }
833         break;
834      case 0x19: // Stacked Pulse 10ms OFF
835         if (curr_cycles - m_bv_cycles >= 833.3 * 10) {
836            m_bv_cycles = curr_cycles;
837            m_bv_pulse = 1;
838            m_bv_state++;
839         }
840         break;
841      case 0x1a: // Stacked Pulse 10ms ON
842         if (curr_cycles - m_bv_cycles >= 833.3 * 10) {
843            m_bv_cycles = curr_cycles;
844            m_bv_pulse = 0;
845            m_bv_state = 0x00;
846         }
847         break;
848   }
849
850   if (m_bv_pulse == 1) {
851      return (0x70 || ioport("IN0")->read()); // Add Bill Validator Credit Pulse
852   } else {
853      return ioport("IN0")->read();
854   }
855}
856
857READ8_MEMBER(peplus_state::peplus_input_bank_a_r)
858{
859/*
860        Bit 0 = COIN DETECTOR A
861        Bit 1 = COIN DETECTOR B
862        Bit 2 = COIN DETECTOR C
863        Bit 3 = COIN OUT
864        Bit 4 = HOPPER FULL
865        Bit 5 = DOOR OPEN
866        Bit 6 = LOW BATTERY
867        Bit 7 = I2C EEPROM SDA
868*/
869   UINT8 bank_a = 0x50; // Turn Off Low Battery and Hopper Full Statuses
870   UINT8 coin_optics = 0x00;
871   UINT8 coin_out = 0x00;
872   UINT64 curr_cycles = m_maincpu->total_cycles();
873
874   UINT8 sda = 0;
875   if(!m_sda_dir)
876   {
877      sda = m_i2cmem->read_sda();
878   }
879
880   if ((ioport("SENSOR")->read_safe(0x00) & 0x01) == 0x01 && m_coin_state == 0) {
881      m_coin_state = 1; // Start Coin Cycle
882      m_last_cycles = m_maincpu->total_cycles();
883   } else {
884      /* Process Next Coin Optic State */
885      if (curr_cycles - m_last_cycles > 10000 && m_coin_state != 0) { // Must be below 100ms (833.3 x 100 cycles) or "Coin-in Timeout" error
886         m_coin_state++;
887         if (m_coin_state > 5)
888            m_coin_state = 0;
889         m_last_cycles = m_maincpu->total_cycles();
890      }
891   }
892
893   switch (m_coin_state)
894   {
895      case 0x00: // No Coin
896         coin_optics = 0x00;
897         break;
898      case 0x01: // Optic A
899         coin_optics = 0x01;
900         break;
901      case 0x02: // Optic AB
902         coin_optics = 0x03;
903         break;
904      case 0x03: // Optic ABC
905         coin_optics = 0x07;
906         break;
907      case 0x04: // Optic BC
908         coin_optics = 0x06;
909         break;
910      case 0x05: // Optic C
911         coin_optics = 0x04;
912         break;
913   }
914
915   if (curr_cycles - m_last_door > door_wait) {
916      if ((ioport("DOOR")->read_safe(0xff) & 0x01) == 0x01) {
917         if (m_doorcycle) {
918            m_door_open = (m_door_open ^ 0x01) & 0x01;
919         } else {
920            m_door_open = 0;
921         }
922      } else {
923         m_door_open = 1;
924      }
925      m_last_door = m_maincpu->total_cycles();
926   }
927
928   if (curr_cycles - m_last_coin_out > 600000/12 && m_coin_out_state != 0) { // Must be below 700ms or it will time out
929      if (m_coin_out_state != 2) {
930         m_coin_out_state = 2; // Coin-Out Off
931      } else {
932         m_coin_out_state = 3; // Coin-Out On
933      }
934
935      m_last_coin_out = m_maincpu->total_cycles();
936   }
937
938   switch (m_coin_out_state)
939   {
940      case 0x00: // No Coin-Out
941         coin_out = 0x00;
942         break;
943      case 0x01: // First Coin-Out On
944         coin_out = 0x08;
945         break;
946      case 0x02: // Coin-Out Off
947         coin_out = 0x00;
948         break;
949      case 0x03: // Additional Coin-Out On
950         coin_out = 0x08;
951         break;
952   }
953
954   bank_a = (sda<<7) | bank_a | (m_door_open<<5) | coin_optics | coin_out;
955
956   return bank_a;
957}
958
959
960/****************************
961* Video/Character functions *
962****************************/
963
964TILE_GET_INFO_MEMBER(peplus_state::get_bg_tile_info)
965{
966   UINT8 *videoram = m_videoram;
967   int pr = m_palette_ram[tile_index];
968   int pr2 = m_palette_ram2[tile_index];
969   int vr = videoram[tile_index];
970
971   int code = ((pr & 0x0f)*256) | vr;
972   int color = (pr>>4) & 0x0f;
973
974   // Access 2nd Half of CGs and CAP
975   if (m_jumper_e16_e17 && (pr2 & 0x10) == 0x10)
976   {
977      code += 0x1000;
978      color += 0x10;
979   }
980
981   SET_TILE_INFO_MEMBER(0, code, color, 0);
982}
983
984void peplus_state::video_start()
985{
986   m_bg_tilemap = &machine().tilemap().create(m_gfxdecode, tilemap_get_info_delegate(FUNC(peplus_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 40, 25);
987   m_palette_ram = auto_alloc_array(machine(), UINT8, 0x3000);
988   memset(m_palette_ram, 0, 0x3000);
989   m_palette_ram2 = auto_alloc_array(machine(), UINT8, 0x3000);
990   memset(m_palette_ram2, 0, 0x3000);
991}
992
993UINT32 peplus_state::screen_update_peplus(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
994{
995   m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
996
997   return 0;
998}
999
1000PALETTE_INIT_MEMBER(peplus_state, peplus)
1001{
1002   const UINT8 *color_prom = memregion("proms")->base();
1003   UINT32 proms_size = memregion("proms")->bytes();
1004/*  prom bits
1005    7654 3210
1006    ---- -xxx   red component.
1007    --xx x---   green component.
1008    xx-- ----   blue component.
1009*/
1010   int i;
1011
1012   for (i = 0;i < palette.entries();i++)
1013   {
1014      int bit0, bit1, bit2, r, g, b;
1015
1016      /* red component */
1017      bit0 = (~color_prom[i % proms_size] >> 0) & 0x01;
1018      bit1 = (~color_prom[i % proms_size] >> 1) & 0x01;
1019      bit2 = (~color_prom[i % proms_size] >> 2) & 0x01;
1020      r = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
1021
1022      /* green component */
1023      bit0 = (~color_prom[i % proms_size] >> 3) & 0x01;
1024      bit1 = (~color_prom[i % proms_size] >> 4) & 0x01;
1025      bit2 = (~color_prom[i % proms_size] >> 5) & 0x01;
1026      g = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
1027
1028      /* blue component */
1029      bit0 = (~color_prom[i % proms_size] >> 6) & 0x01;
1030      bit1 = (~color_prom[i % proms_size] >> 7) & 0x01;
1031      bit2 = 0;
1032      b = 0x21 * bit2 + 0x47 * bit1 + 0x97 * bit0;
1033
1034      palette.set_pen_color(i, rgb_t(r, g, b));
1035   }
1036}
1037
1038
1039/******************************
1040* Graphics Decode Information *
1041******************************/
1042
1043static GFXDECODE_START( peplus )
1044         GFXDECODE_ENTRY( "gfx1", 0x00000, gfx_8x8x4_planar, 0, 16 )
1045GFXDECODE_END
1046
1047
1048/*************************
1049* Memory map information *
1050*************************/
1051
1052static ADDRESS_MAP_START( peplus_map, AS_PROGRAM, 8, peplus_state )
1053   AM_RANGE(0x0000, 0xffff) AM_ROM AM_SHARE("prograram")
1054ADDRESS_MAP_END
1055
1056static ADDRESS_MAP_START( peplus_iomap, AS_IO, 8, peplus_state )
1057   // Battery-backed RAM (0x1000-0x01fff Extended RAM for Superboards Only)
1058   AM_RANGE(0x0000, 0x1fff) AM_READWRITE(peplus_cmos_r, peplus_cmos_w) AM_SHARE("cmos")
1059
1060   // CRT Controller
1061   AM_RANGE(0x2008, 0x2008) AM_WRITE(peplus_crtc_mode_w)
1062   AM_RANGE(0x2080, 0x2080) AM_DEVREADWRITE("crtc", mc6845_device, status_r, address_w)
1063   AM_RANGE(0x2081, 0x2081) AM_DEVREADWRITE("crtc", mc6845_device, register_r, register_w)
1064   AM_RANGE(0x2083, 0x2083) AM_DEVREAD("crtc", mc6845_device, register_r) AM_WRITE(peplus_crtc_display_w)
1065
1066   // Superboard Data
1067   AM_RANGE(0x3000, 0x3fff) AM_READWRITE(peplus_s3000_r, peplus_s3000_w) AM_SHARE("s3000_ram")
1068
1069   // Sound and Dipswitches
1070   AM_RANGE(0x4000, 0x4000) AM_DEVWRITE("aysnd", ay8910_device, address_w)
1071   AM_RANGE(0x4004, 0x4004) AM_READ_PORT("SW1")/* likely ay8910 input port, not direct */ AM_DEVWRITE("aysnd", ay8910_device, data_w)
1072
1073   // Superboard Data
1074   AM_RANGE(0x5000, 0x5fff) AM_READWRITE(peplus_s5000_r, peplus_s5000_w) AM_SHARE("s5000_ram")
1075
1076   // Background Color Latch
1077   AM_RANGE(0x6000, 0x6000) AM_READ(peplus_bgcolor_r) AM_WRITE(peplus_bgcolor_w)
1078
1079   // Bogus Location for Video RAM
1080   AM_RANGE(0x06001, 0x06400) AM_RAM AM_SHARE("videoram")
1081
1082   // Superboard Data
1083   AM_RANGE(0x7000, 0x7fff) AM_READWRITE(peplus_s7000_r, peplus_s7000_w) AM_SHARE("s7000_ram")
1084
1085   // Input Bank A, Output Bank C
1086   AM_RANGE(0x8000, 0x8000) AM_READ(peplus_input_bank_a_r) AM_WRITE(peplus_output_bank_c_w)
1087
1088   // Drop Door, I2C EEPROM Writes
1089   AM_RANGE(0x9000, 0x9000) AM_READ(peplus_dropdoor_r) AM_WRITE(i2c_nvram_w)
1090
1091   // Input Banks B & C, Output Bank B
1092   AM_RANGE(0xa000, 0xa000) AM_READ(peplus_input0_r) AM_WRITE(peplus_output_bank_b_w)
1093
1094   // Superboard Data
1095   AM_RANGE(0xb000, 0xbfff) AM_READWRITE(peplus_sb000_r, peplus_sb000_w) AM_SHARE("sb000_ram")
1096
1097   // Output Bank A
1098   AM_RANGE(0xc000, 0xc000) AM_READ(peplus_watchdog_r) AM_WRITE(peplus_output_bank_a_w)
1099
1100   // Superboard Data
1101   AM_RANGE(0xd000, 0xdfff) AM_READWRITE(peplus_sd000_r, peplus_sd000_w) AM_SHARE("sd000_ram")
1102
1103   // DUART
1104   AM_RANGE(0xe000, 0xe00f) AM_READWRITE(peplus_duart_r, peplus_duart_w)
1105
1106   // Superboard Data
1107   AM_RANGE(0xf000, 0xffff) AM_READWRITE(peplus_sf000_r, peplus_sf000_w) AM_SHARE("sf000_ram")
1108
1109   /* Ports start here */
1110   AM_RANGE(MCS51_PORT_P0, MCS51_PORT_P3) AM_READ(peplus_io_r) AM_WRITE(peplus_io_w) AM_SHARE("io_port")
1111ADDRESS_MAP_END
1112
1113
1114/*************************
1115*      Input ports       *
1116*************************/
1117
1118CUSTOM_INPUT_MEMBER(peplus_state::peplus_input_r)
1119{
1120   UINT8 inp_ret = 0x00;
1121   UINT8 inp_read = ioport((const char *)param)->read();
1122
1123   if (inp_read & 0x01) inp_ret = 0x01;
1124   if (inp_read & 0x02) inp_ret = 0x02;
1125   if (inp_read & 0x04) inp_ret = 0x03;
1126   if (inp_read & 0x08) inp_ret = 0x04;
1127   if (inp_read & 0x10) inp_ret = 0x05;
1128   if (inp_read & 0x20) inp_ret = 0x06;
1129   if (inp_read & 0x40) inp_ret = 0x07;
1130
1131   return inp_ret;
1132}
1133
1134static INPUT_PORTS_START( peplus )
1135   /* IN0 has to be defined for each kind of game */
1136   PORT_START("DOOR")
1137   PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("Upper Door") PORT_CODE(KEYCODE_O) PORT_TOGGLE
1138   PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("Lower Door") PORT_CODE(KEYCODE_I)
1139
1140   PORT_START("SENSOR")
1141   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_COIN1 ) PORT_NAME("Coin In") PORT_IMPULSE(1)
1142
1143   PORT_START("DBV")
1144   PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_NAME("Bill In") PORT_IMPULSE(1)
1145
1146   PORT_START("BC")
1147   PORT_CONFNAME( 0x1f, 0x00, "Bill Choices" )
1148   PORT_CONFSETTING( 0x00, "$1" )
1149   PORT_CONFSETTING( 0x01, "$2" )
1150   PORT_CONFSETTING( 0x02, "$5" )
1151   PORT_CONFSETTING( 0x03, "$10" )
1152   PORT_CONFSETTING( 0x04, "$20" )
1153   PORT_CONFSETTING( 0x05, "$50" )
1154   PORT_CONFSETTING( 0x06, "$100" )
1155
1156   PORT_START("BP")
1157   PORT_CONFNAME( 0x1f, 0x00, "Bill Protocol" )
1158   PORT_CONFSETTING( 0x00, "ID-022" )
1159   PORT_CONFSETTING( 0x01, "ID-023" )
1160
1161   PORT_START("SW1")
1162   PORT_DIPNAME( 0x01, 0x01, "Line Frequency" ) PORT_DIPLOCATION("SW1:1")
1163   PORT_DIPSETTING(    0x01, "60Hz" )
1164   PORT_DIPSETTING(    0x00, "50Hz" )
1165   PORT_DIPUNUSED_DIPLOC( 0x02, IP_ACTIVE_LOW, "SW1:2" )
1166   PORT_DIPUNUSED_DIPLOC( 0x04, IP_ACTIVE_LOW, "SW1:3" )
1167   PORT_DIPUNUSED_DIPLOC( 0x08, IP_ACTIVE_LOW, "SW1:4" )
1168   PORT_DIPUNUSED_DIPLOC( 0x10, IP_ACTIVE_LOW, "SW1:5" )
1169   PORT_DIPUNUSED_DIPLOC( 0x20, IP_ACTIVE_LOW, "SW1:6" )
1170   PORT_DIPUNUSED_DIPLOC( 0x40, IP_ACTIVE_LOW, "SW1:7" )
1171   PORT_DIPUNUSED_DIPLOC( 0x80, IP_ACTIVE_LOW, "SW1:8" )
1172INPUT_PORTS_END
1173
1174static INPUT_PORTS_START( peplus_schip )
1175   PORT_INCLUDE(peplus)
1176   PORT_START("IN_BANK1")
1177   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1178   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1179   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1180   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1181   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1182   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1183   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1184
1185   PORT_START("IN_BANK2")
1186   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON9 ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1187   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1188   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1189   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1190   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1191   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1192   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1193
1194   PORT_START("IN0")
1195   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1196   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1197   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1198   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1199INPUT_PORTS_END
1200
1201static INPUT_PORTS_START( nonplus_poker )
1202   PORT_INCLUDE(peplus)
1203
1204   PORT_START("IN_BANK1")
1205   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1206   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1207   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_POKER_HOLD1 )
1208   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_POKER_HOLD2 )
1209   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_POKER_HOLD3 )
1210   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_POKER_HOLD4 )
1211   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_POKER_HOLD5 )
1212
1213   PORT_START("IN_BANK2")
1214   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1215   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1216   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1217   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1218   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1219   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1220   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_OTHER ) // Bill Acceptor
1221
1222   PORT_START("IN0")
1223   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1224   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1225   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1226   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1227
1228   PORT_MODIFY("SW1")
1229   PORT_DIPNAME( 0x02, 0x02, "Credit" )        PORT_DIPLOCATION("SW1:2")
1230   PORT_DIPSETTING(    0x02, "Coin Play" )
1231   PORT_DIPSETTING(    0x00, "Credit Play" )
1232   PORT_DIPNAME( 0x04, 0x00, "Coin Acceptor" ) PORT_DIPLOCATION("SW1:3")
1233   PORT_DIPSETTING(    0x04, "Mechanical" )
1234   PORT_DIPSETTING(    0x00, "Optical" )
1235   PORT_DIPNAME( 0x08, 0x08, "Double Up" )     PORT_DIPLOCATION("SW1:4")
1236   PORT_DIPSETTING(    0x08, DEF_STR( Off ) )
1237   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1238   PORT_DIPNAME( 0x10, 0x10, "Progressive" )   PORT_DIPLOCATION("SW1:5")
1239   PORT_DIPSETTING(    0x10, DEF_STR( Off ) )
1240   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1241   PORT_DIPNAME( 0x60, 0x40, "Max Hopper Pay" )    PORT_DIPLOCATION("SW1:6,7")
1242   PORT_DIPSETTING(    0x60, "300 Coins" )
1243   PORT_DIPSETTING(    0x40, "400 Coins" )
1244   PORT_DIPSETTING(    0x20, "600 Coins" )
1245   PORT_DIPSETTING(    0x00, "1000 Coins" )
1246   PORT_DIPNAME( 0x80, 0x00, "Show Pay Table" )    PORT_DIPLOCATION("SW1:8")
1247   PORT_DIPSETTING(    0x80, DEF_STR( Off ) )
1248   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
1249INPUT_PORTS_END
1250
1251static INPUT_PORTS_START( peplus_poker )
1252   PORT_INCLUDE(peplus)
1253
1254   PORT_START("IN_BANK1")
1255   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1256   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1257   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_POKER_HOLD1 )
1258   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_POKER_HOLD2 )
1259   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_POKER_HOLD3 )
1260   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_POKER_HOLD4 )
1261   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_POKER_HOLD5 )
1262
1263   PORT_START("IN_BANK2")
1264   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1265   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1266   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1267   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1268   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1269   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1270   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_OTHER ) // Bill Acceptor
1271
1272   PORT_START("IN0")
1273   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1274   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1275   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1276   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1277INPUT_PORTS_END
1278
1279static INPUT_PORTS_START( peplus_bjack )
1280   PORT_INCLUDE(peplus)
1281
1282   PORT_START("IN_BANK1")
1283   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1284   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1285   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_BUTTON3 ) PORT_NAME("Surrender") PORT_CODE(KEYCODE_Z)
1286   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON4 ) PORT_NAME("Stand") PORT_CODE(KEYCODE_X)
1287   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON5 ) PORT_NAME("Insurance") PORT_CODE(KEYCODE_C)
1288   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON6 ) PORT_NAME("Double Down") PORT_CODE(KEYCODE_V)
1289   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON7 ) PORT_NAME("Split") PORT_CODE(KEYCODE_B)
1290
1291   PORT_START("IN_BANK2")
1292   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON9 ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1293   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON10 ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1294   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1295   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON12 ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1296   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON13 ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1297   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON14 ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1298   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON15 ) // Bill Acceptor
1299
1300   PORT_START("IN0")
1301   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1302   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1303   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1304   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1305INPUT_PORTS_END
1306
1307static INPUT_PORTS_START( peplus_keno )
1308   PORT_INCLUDE(peplus)
1309
1310   PORT_START("IN_BANK1")
1311   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1312   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1313   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1314   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1315   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1316   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1317   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON7 ) PORT_NAME("Erase") PORT_CODE(KEYCODE_B)
1318
1319   PORT_START("IN_BANK2")
1320   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON9 ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1321   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON10 ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1322   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1323   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON12 ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1324   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON13 ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1325   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON14 ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1326   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON15 ) // Bill Acceptor
1327
1328   PORT_START("TOUCH_X")
1329   PORT_BIT( 0xffff, 0x200, IPT_LIGHTGUN_X ) PORT_MINMAX(0x00, 1024) PORT_CROSSHAIR(X, 1.0, 0.0, 0) PORT_SENSITIVITY(25) PORT_KEYDELTA(13)
1330   PORT_START("TOUCH_Y")
1331   PORT_BIT( 0xffff, 0x200, IPT_LIGHTGUN_Y ) PORT_MINMAX(0x00, 1024) PORT_CROSSHAIR(Y, 1.0, 0.0, 0) PORT_SENSITIVITY(25) PORT_KEYDELTA(13)
1332
1333   PORT_START("IN0")
1334   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1335   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON4 ) PORT_NAME("Light Pen") PORT_CODE(KEYCODE_A)
1336   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1337   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1338INPUT_PORTS_END
1339
1340static INPUT_PORTS_START( peplus_slots )
1341   PORT_INCLUDE(peplus)
1342
1343   PORT_START("IN_BANK1")
1344   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Jackpot Reset") PORT_CODE(KEYCODE_L)
1345   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Self Test") PORT_CODE(KEYCODE_K)
1346   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1347   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1348   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1349   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1350   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1351
1352   PORT_START("IN_BANK2")
1353   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON9 ) PORT_NAME("Deal-Spin-Start") PORT_CODE(KEYCODE_Q)
1354   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON10 ) PORT_NAME("Max Bet") PORT_CODE(KEYCODE_W)
1355   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
1356   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON12 ) PORT_NAME("Play Credit") PORT_CODE(KEYCODE_R)
1357   PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON13 ) PORT_NAME("Cashout") PORT_CODE(KEYCODE_T)
1358   PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON14 ) PORT_NAME("Change Request") PORT_CODE(KEYCODE_Y)
1359   PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON15 ) // Bill Acceptor
1360
1361   PORT_START("IN0")
1362   PORT_BIT( 0x07, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK1")
1363   PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN )
1364   PORT_BIT( 0x70, IP_ACTIVE_LOW, IPT_SPECIAL ) PORT_CUSTOM_MEMBER(DEVICE_SELF, peplus_state,peplus_input_r, "IN_BANK2")
1365   PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Card Cage") PORT_CODE(KEYCODE_M) PORT_TOGGLE
1366INPUT_PORTS_END
1367
1368
1369/*************************
1370*     Machine Reset      *
1371*************************/
1372
1373void peplus_state::machine_reset()
1374{
1375}
1376
1377/*************************
1378*     Machine Driver     *
1379*************************/
1380
1381static MACHINE_CONFIG_START( peplus, peplus_state )
1382   // basic machine hardware
1383   MCFG_CPU_ADD("maincpu", I80C32, CPU_CLOCK)
1384   MCFG_CPU_PROGRAM_MAP(peplus_map)
1385   MCFG_CPU_IO_MAP(peplus_iomap)
1386
1387   MCFG_NVRAM_ADD_0FILL("cmos")
1388
1389   // video hardware
1390   MCFG_SCREEN_ADD("screen", RASTER)
1391   MCFG_SCREEN_REFRESH_RATE(60)
1392   MCFG_SCREEN_SIZE((52+1)*8, (31+1)*8)
1393   MCFG_SCREEN_VISIBLE_AREA(0*8, 40*8-1, 0*8, 25*8-1)
1394   MCFG_SCREEN_UPDATE_DRIVER(peplus_state, screen_update_peplus)
1395   MCFG_SCREEN_PALETTE("palette")
1396
1397   MCFG_GFXDECODE_ADD("gfxdecode", "palette", peplus)
1398   MCFG_PALETTE_ADD("palette", 16*16*2)
1399   MCFG_PALETTE_INIT_OWNER(peplus_state, peplus)
1400
1401   MCFG_MC6845_ADD("crtc", R6545_1, "screen", MC6845_CLOCK)
1402   MCFG_MC6845_SHOW_BORDER_AREA(false)
1403   MCFG_MC6845_CHAR_WIDTH(8)
1404   MCFG_MC6845_ADDR_CHANGED_CB(peplus_state, crtc_addr)
1405   MCFG_MC6845_OUT_VSYNC_CB(WRITELINE(peplus_state, crtc_vsync))
1406
1407   MCFG_X2404P_ADD("i2cmem")
1408
1409   // sound hardware
1410   MCFG_SPEAKER_STANDARD_MONO("mono")
1411
1412   MCFG_SOUND_ADD("aysnd", AY8912, SOUND_CLOCK)
1413   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.75)
1414MACHINE_CONFIG_END
1415
1416
1417
1418/*************************
1419*      Driver Init       *
1420*************************/
1421
1422/* Non Plus board */
1423DRIVER_INIT_MEMBER(peplus_state,nonplus)
1424{
1425   door_wait = 500;
1426   m_doorcycle = FALSE;
1427   m_wingboard = FALSE;
1428   m_jumper_e16_e17 = FALSE;
1429}
1430
1431/* Normal board */
1432DRIVER_INIT_MEMBER(peplus_state,peplus)
1433{
1434   door_wait = 500;
1435   m_doorcycle = TRUE;
1436   m_wingboard = FALSE;
1437   m_jumper_e16_e17 = FALSE;
1438}
1439
1440/* Superboard */
1441DRIVER_INIT_MEMBER(peplus_state,peplussb)
1442{
1443   door_wait = 500;
1444   m_doorcycle = TRUE;
1445   m_wingboard = FALSE;
1446   m_jumper_e16_e17 = FALSE;
1447   peplus_load_superdata("user1");
1448}
1449
1450/* Superboard with Attached Wingboard */
1451DRIVER_INIT_MEMBER(peplus_state,peplussbw)
1452{
1453   door_wait = 12345;
1454   m_doorcycle = TRUE;
1455   m_wingboard = TRUE;
1456   m_jumper_e16_e17 = TRUE;
1457   peplus_load_superdata("user1");
1458}
1459
1460
1461/*************************
1462*        Rom Load        *
1463*************************/
1464
1465ROM_START( peset001 ) /* Normal board : Set Chip (Set001) - Use for PP0542 */
1466   ROM_REGION( 0x10000, "maincpu", 0 )
1467   ROM_LOAD( "set001.u68",   0x00000, 0x10000, CRC(03397ced) SHA1(89d8ba7e6706e6d34ae9aae09a8a631fff06a36f) )
1468
1469   ROM_REGION( 0x020000, "gfx1", 0 )
1470   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1471   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1472   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1473   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1474
1475   ROM_REGION( 0x100, "proms", 0 )
1476   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1477ROM_END
1478
1479ROM_START( peset038 ) /* Normal board : Set Chip (Set038) */
1480   ROM_REGION( 0x10000, "maincpu", 0 )
1481   ROM_LOAD( "set038.u68",   0x00000, 0x10000, CRC(9c4b1d1a) SHA1(8a65cd1d8e2d74c7b66f4dfc73e7afca8458e979) )
1482
1483   ROM_REGION( 0x020000, "gfx1", 0 )
1484   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1485   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1486   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1487   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1488
1489   ROM_REGION( 0x100, "proms", 0 )
1490   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1491ROM_END
1492
1493ROM_START( pepk1024 ) /* Normal (non-plus) board : Aces and Faces 4 of a Kind Bonus Poker (PK1024) */
1494/*
1495                                      2-10 J-A
1496PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  SF  RF  (Bonus)
1497--------------------------------------------------------------
1498  ????      1    2    3    4    5   8  25  50  50 250    800
1499     Programs Available: PK1024
1500*/
1501   ROM_REGION( 0x10000, "maincpu", 0 )
1502   ROM_LOAD( "pk1024-pc095.u58",   0x00000, 0x8000, CRC(c0b6d093) SHA1(80f7dbd9dff52cd4e31a5243026814aa9edb98df) ) /* Game Version: PC095 */
1503   ROM_RELOAD(                     0x08000, 0x8000) /* 32K version build for the original PE boards (non-plus) */
1504
1505   ROM_REGION( 0x020000, "gfx1", 0 )
1506   ROM_LOAD( "mr0-cg745.u52",   0x00000, 0x4000, CRC(f8aee592) SHA1(fc5fb03698df24ebcf41ccfbce3a8fdd03ac9368) )
1507   ROM_LOAD( "mg0-cg745.u53",   0x08000, 0x4000, CRC(cdf88a59) SHA1(9ab32b7b8bbdf35ee5a45cd58d9a341555b03ee0) )
1508   ROM_LOAD( "mb0-cg745.u54",   0x10000, 0x4000, CRC(3fad0bc0) SHA1(3c8409c004bb40d7be6e5cbdd02b3fa3b5800342) )
1509   ROM_LOAD( "mx0-cg745.u55",   0x18000, 0x4000, CRC(a8cf2a59) SHA1(de623a95237f28827710a86ae86c52106b55b349) )
1510
1511   ROM_REGION( 0x100, "proms", 0 )
1512   ROM_LOAD( "cap740.u37", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1513ROM_END
1514
1515ROM_START( pepp0002 ) /* Normal board : Standard Draw Poker (PP0002) */
1516/*
1517PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1518----------------------------------------------------------
1519   BB       1    2    3    4    5   8  25  50 250   1000
1520  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
1521     Programs Available: PP0002, X000002P
1522*/
1523   ROM_REGION( 0x10000, "maincpu", 0 )
1524   ROM_LOAD( "pp0002_a45-a74.u68",   0x00000, 0x10000, CRC(921ce116) SHA1(a3b83b6fcfa27cca7e392efc62568eb6495c136a) ) /* Game Version: A45, Library Version: A74 */
1525
1526   ROM_REGION( 0x020000, "gfx1", 0 )
1527   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1528   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1529   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1530   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1531
1532   ROM_REGION( 0x100, "proms", 0 )
1533   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1534ROM_END
1535
1536ROM_START( pepp0002a ) /* Normal board : Standard Draw Poker (PP0002) - Multi Regional / Multi Currency - Tournament Mode capable */
1537/*
1538PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1539----------------------------------------------------------
1540   BB       1    2    3    4    5   8  25  50 250   1000
1541  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
1542     Programs Available: PP0002, X000002P
1543*/
1544   ROM_REGION( 0x10000, "maincpu", 0 )
1545   ROM_LOAD( "pp0002_a58-a6y.u68",   0x00000, 0x10000, CRC(65ed2956) SHA1(5ee9be5daee80fe1aa716fdb488f154e875d394d) ) /* Game Version: A58, Library Version: A6Y */
1546
1547   ROM_REGION( 0x020000, "gfx1", 0 )
1548   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
1549   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
1550   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
1551   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
1552
1553   ROM_REGION( 0x100, "proms", 0 )
1554   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1555ROM_END
1556
1557ROM_START( pepp0008 ) /* Normal board : Standard Draw Poker (PP0008) */
1558/*
1559PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1560----------------------------------------------------------
1561   CD       1    2    3    4    6   9  25  50 250    940
1562  % Range: 95.9-97.9%  Optimum: 99.9%  Hit Frequency: 45.3%
1563     Programs Available: PP0008, X002247P
1564*/
1565   ROM_REGION( 0x10000, "maincpu", 0 )
1566   ROM_LOAD( "pp0008_520-516.u68",   0x00000, 0x8000, CRC(7a02060f) SHA1(8672565bd62fa76aa738c1f8c6aeb0c0d22daf93) ) /* Game Version: 520, Library Version: 516 */
1567   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1568
1569   ROM_REGION( 0x020000, "gfx1", 0 )
1570   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1571   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1572   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1573   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1574
1575   ROM_REGION( 0x100, "proms", 0 )
1576   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1577ROM_END
1578
1579ROM_START( pepp0009 ) /* Normal board : Standard Draw Poker (PP0009) */
1580/*
1581PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1582----------------------------------------------------------
1583   GA       1    2    3    4    5   6  25  50 250    800
1584  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
1585     Programs Available: PP0009
1586
1587This program set is superseded by PP0060
1588*/
1589   ROM_REGION( 0x10000, "maincpu", 0 )
1590   ROM_LOAD( "pp0009_554-544.u68",   0x00000, 0x8000, CRC(2e3e45f7) SHA1(035994b20d3975bb2287f12b4a42d5fdae68b13b) ) /* Game Version: 554, Library Version: 544 */
1591   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1592
1593   ROM_REGION( 0x020000, "gfx1", 0 )
1594   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1595   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1596   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1597   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1598
1599   ROM_REGION( 0x100, "proms", 0 )
1600   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1601ROM_END
1602
1603ROM_START( pepp0010 ) /* Normal board : Standard Draw Poker (PP0010) */
1604/*
1605PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1606----------------------------------------------------------
1607   GB       1    2    3    4    5   6  25  50 250   1000
1608  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 45.3%
1609     Programs Available: PP0010
1610*/
1611   ROM_REGION( 0x10000, "maincpu", 0 )
1612   ROM_LOAD( "pp0010_a45-a74.u68",   0x00000, 0x10000, CRC(39440afb) SHA1(b2ca246d6854008cf5b7081e9842be6f6f0666b0) ) /* Game Version: A45, Library Version: A74 */
1613
1614   ROM_REGION( 0x020000, "gfx1", 0 )
1615   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1616   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1617   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1618   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1619
1620   ROM_REGION( 0x100, "proms", 0 )
1621   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1622ROM_END
1623
1624ROM_START( pepp0014 ) /* Normal board : Standard Draw Poker (PP0014) - Multi Regional / Multi Currency - Tournament Mode capable */
1625/*
1626PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1627----------------------------------------------------------
1628   QJ       1    2    3    4    5   8  25  50 300    400
1629  % Range: 92.3-94.3%  Optimum: 96.3%  Hit Frequency: 45.6%
1630     Programs Available: PP0014
1631*/
1632   ROM_REGION( 0x10000, "maincpu", 0 )
1633   ROM_LOAD( "pp0014_a2d-a48.u68",   0x00000, 0x10000, CRC(235ddd99) SHA1(c8623a6beeb31ce33a44e1cb6a235e6561f0b3de) ) /* Game Version: A2D, Library Version: A48 */
1634
1635   ROM_REGION( 0x020000, "gfx1", 0 )
1636   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
1637   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
1638   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
1639   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
1640
1641   ROM_REGION( 0x100, "proms", 0 )
1642   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1643ROM_END
1644
1645ROM_START( pepp0014a ) /* Normal board : Standard Draw Poker (PP0014) - 100 Coins In */
1646/*
1647PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1648----------------------------------------------------------
1649   QJ       1    2    3    4    5   8  25  50 300    400
1650  % Range: 92.3-94.3%  Optimum: 96.3%  Hit Frequency: 45.6%
1651     Programs Available: PP0014
1652*/
1653   ROM_REGION( 0x10000, "maincpu", 0 )
1654   ROM_LOAD( "pp0014_654-523.u68",   0x00000, 0x8000, CRC(1cf42d0e) SHA1(a5564a6ff31a24e6052c95eaacce65c61dd1600d) ) /* Game Version: 665, Library Version: 523, Video Lib Ver: 523 */
1655   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1656
1657   ROM_REGION( 0x020000, "gfx1", 0 )
1658   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) ) /* Not 100% correct?? */
1659   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1660   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1661   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1662
1663   ROM_REGION( 0x100, "proms", 0 )
1664   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1665ROM_END
1666
1667ROM_START( pepp0023 ) /* Normal board : Tens or Better (PP0023) */
1668/*
1669PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1670----------------------------------------------------------
1671  ????     1     2    3    4    5   6  25  50 250    800
1672  % Range: 93.3-95.3%  Optimum: 97.3%  Hit Frequency: 45.4%
1673     Programs Available: PP0023
1674*/
1675   ROM_REGION( 0x10000, "maincpu", 0 )
1676   ROM_LOAD( "pp0023_520-516.u68",   0x00000, 0x8000, CRC(883ff93e) SHA1(e355933ee6a316b5672e5a887e09c691ab242873) ) /* Game Version: 520, Library Version: 516, Video Lib Ver: 516 */
1677   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1678
1679   ROM_REGION( 0x020000, "gfx1", 0 )
1680   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1681   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1682   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1683   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1684
1685   ROM_REGION( 0x100, "proms", 0 )
1686   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1687ROM_END
1688
1689ROM_START( pepp0040 ) /* Normal board : Standard Draw Poker (PP0040) */
1690/*
1691PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1692----------------------------------------------------------
1693   WA       1    2    3    4    5   7  20  50 300    800
1694  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
1695     Programs Available: PP0040, X000040P
1696*/
1697   ROM_REGION( 0x10000, "maincpu", 0 )
1698   ROM_LOAD( "pp0040_a45-a74.u68",   0x00000, 0x10000, CRC(df3675b3) SHA1(668f33c97fa1c0b69a8601da02bd07e3c5df81b4) ) /* Game Version: A45, Library Version: A74 */
1699
1700   ROM_REGION( 0x020000, "gfx1", 0 )
1701   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1702   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1703   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1704   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1705
1706   ROM_REGION( 0x100, "proms", 0 )
1707   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1708ROM_END
1709
1710ROM_START( pepp0041 ) /* Normal board : Standard Draw Poker (PP0041) */
1711/*
1712PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1713----------------------------------------------------------
1714   WB       1    2    3    4    5   7  20  50 300   1000
1715  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 45.3%
1716     Programs Available: PP0041
1717*/
1718   ROM_REGION( 0x10000, "maincpu", 0 )
1719   ROM_LOAD( "pp0041_a45-a74.u68",   0x00000, 0x10000, CRC(406c8193) SHA1(006b9bf57263fb84ed752f0a44603837a68a2d71) ) /* Game Version: A45, Library Version: A74 */
1720
1721   ROM_REGION( 0x020000, "gfx1", 0 )
1722   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1723   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1724   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1725   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1726
1727   ROM_REGION( 0x100, "proms", 0 )
1728   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1729ROM_END
1730
1731ROM_START( pepp0043 ) /* Normal board : 10's or Better (PP0043) */
1732/*
1733PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1734----------------------------------------------------------
1735  P7B      1     1    3    4    6   9  25  50 300    800
1736  % Range: 87.2-89.2%  Optimum: 91.2%  Hit Frequency: 49.1%
1737     Programs Available: PP0043, X000043P
1738*/
1739   ROM_REGION( 0x10000, "maincpu", 0 )
1740   ROM_LOAD( "pp0043_a45-a74.u68",   0x00000, 0x10000, CRC(04051a88) SHA1(e7a9ec2ab7f6f575245d47ee10a03f39c887d1b3) ) /* Game Version: A45, Library Version: A74 */
1741
1742   ROM_REGION( 0x020000, "gfx1", 0 )
1743   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1744   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1745   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1746   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1747
1748   ROM_REGION( 0x100, "proms", 0 )
1749   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1750ROM_END
1751
1752ROM_START( pepp0043a ) /* Normal board : 10's or Better (PP0043) - Multi Regional / Multi Currency - Tournament Mode capable */
1753/*
1754PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1755----------------------------------------------------------
1756  P7B      1     1    3    4    6   9  25  50 300    800
1757  % Range: 87.2-89.2%  Optimum: 91.2%  Hit Frequency: 49.1%
1758     Programs Available: PP0043, X000043P
1759*/
1760   ROM_REGION( 0x10000, "maincpu", 0 )
1761   ROM_LOAD( "pp0043_a43-a71.u68",   0x00000, 0x10000, CRC(7da397d7) SHA1(9b6479693f4d1224fce5635c3e7cff6463103e1e) ) /* Game Version: A43, Library Version: A71 */
1762
1763   ROM_REGION( 0x020000, "gfx1", 0 )
1764   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
1765   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
1766   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
1767   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
1768
1769   ROM_REGION( 0x100, "proms", 0 )
1770   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1771ROM_END
1772
1773ROM_START( pepp0045 ) /* Normal board : 10's or Better (PP0045) */
1774/*
1775PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1776----------------------------------------------------------
1777  P8A      1     1    3    4    5   8  25  50 300    800
1778  % Range: 84.6-86.6%  Optimum: 88.6%  Hit Frequency: 49.2%
1779     Programs Available: PP0045, X000045P
1780*/
1781   ROM_REGION( 0x10000, "maincpu", 0 )
1782   ROM_LOAD( "pp0045_a45-a74.u68",   0x00000, 0x10000, CRC(9c7cf6d7) SHA1(3da9829678b853d85146b66b40800257a8eaa151) ) /* Game Version: A45, Library Version: A74 */
1783
1784   ROM_REGION( 0x020000, "gfx1", 0 )
1785   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1786   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1787   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1788   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1789
1790   ROM_REGION( 0x100, "proms", 0 )
1791   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1792ROM_END
1793
1794ROM_START( pepp0046 ) /* Normal board : 10's or Better (PP0046) */
1795/*
1796PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1797----------------------------------------------------------
1798  P8B      1     1    3    4    5   8  25  50 300   1000
1799  % Range: 85.2-87.2%  Optimum: 89.2%  Hit Frequency: 49.0%
1800     Programs Available: PP0046, X000046P
1801*/
1802   ROM_REGION( 0x10000, "maincpu", 0 )
1803   ROM_LOAD( "pp0046_a45-a74.u68",   0x00000, 0x10000, CRC(fe5903f2) SHA1(963d1ade6051da19bb40b313221037c0fdfc0fc9) ) /* Game Version: A45, Library Version: A74 */
1804
1805   ROM_REGION( 0x020000, "gfx1", 0 )
1806   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1807   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1808   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1809   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1810
1811   ROM_REGION( 0x100, "proms", 0 )
1812   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1813ROM_END
1814
1815ROM_START( pepp0046a ) /* Normal board : 10's or Better (PP0046) - Multi Regional / Multi Currency - Tournament Mode capable */
1816/*
1817PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1818----------------------------------------------------------
1819  P8B      1     1    3    4    5   8  25  50 300   1000
1820  % Range: 85.2-87.2%  Optimum: 89.2%  Hit Frequency: 49.0%
1821     Programs Available: PP0046, X000046P
1822*/
1823   ROM_REGION( 0x10000, "maincpu", 0 )
1824   ROM_LOAD( "pp0046_a58-a6y.u68",   0x00000, 0x10000, CRC(ea9094bf) SHA1(6154864b0ea0c8bc75085064ea71f8cb0ff312af) ) /* Game Version: A58, Library Version: A6Y */
1825
1826   ROM_REGION( 0x020000, "gfx1", 0 )
1827   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
1828   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
1829   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
1830   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
1831
1832   ROM_REGION( 0x100, "proms", 0 )
1833   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1834ROM_END
1835
1836ROM_START( pepp0046b ) /* Normal board : 10's or Better (PP0043) */
1837/*
1838PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
1839----------------------------------------------------------
1840  P8B      1     1    3    4    5   8  25  50 300   1000
1841  % Range: 85.2-87.2%  Optimum: 89.2%  Hit Frequency: 49.0%
1842     Programs Available: PP0046, X000046P
1843*/
1844   ROM_REGION( 0x10000, "maincpu", 0 )
1845   ROM_LOAD( "pp0046_554-544.u68",   0x00000, 0x8000, CRC(d8687b76) SHA1(9bd0b71b60d26b46af58a8e77f4b05900a4075aa) ) /* Game Version: 554, Library Version: 544, Video Lib Ver: 544 */
1846   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1847
1848   ROM_REGION( 0x020000, "gfx1", 0 )
1849   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1850   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1851   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1852   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1853
1854   ROM_REGION( 0x100, "proms", 0 )
1855   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1856ROM_END
1857
1858ROM_START( pepp0051 ) /* Normal board : Joker Poker (PP0051) */
1859/*
1860                                            w/J     w/oJ
1861PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
1862----------------------------------------------------------------
1863  P17A      1    1   2   3    4   5  20  40 100 200 500    800
1864  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
1865     Programs Available: PP0051
1866
1867Superseded by PP0428 (Non Double-up) / PP0459
1868
1869*/
1870   ROM_REGION( 0x10000, "maincpu", 0 )
1871   ROM_LOAD( "pp0051_554-544.u68",   0x00000, 0x8000, CRC(66329607) SHA1(bc980257645225a24cd71a10b4a4cb592f878b3b) ) /* Game Version: 554, Library Version: 544, Video Lib Ver: 544 */
1872   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1873
1874   ROM_REGION( 0x020000, "gfx1", 0 )
1875   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1876   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1877   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1878   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1879
1880   ROM_REGION( 0x100, "proms", 0 )
1881   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1882ROM_END
1883
1884ROM_START( pepp0053 ) /* Normal board : Joker Poker (Aces or Better) (PP0053) */
1885/*
1886                                            w/J     w/oJ
1887PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
1888----------------------------------------------------------------
1889  P18B      1    1   2   3    5   6  20  50 100 200 500   1000
1890  % Range: 90.6-92.6%  Optimum: 94.6%  Hit Frequency: 39.2%
1891     Programs Available: PP0053, X000053P
1892*/
1893   ROM_REGION( 0x10000, "maincpu", 0 )
1894   ROM_LOAD( "pp0053_a45-a74.u68",   0x00000, 0x10000, CRC(0657b8a7) SHA1(4fb9762d84ef0e02dbab9f9da5a1dfdd9be2e86e) ) /* Game Version: A45, Library Version: A74 */
1895
1896   ROM_REGION( 0x020000, "gfx1", 0 )
1897   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
1898   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
1899   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
1900   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
1901
1902   ROM_REGION( 0x100, "proms", 0 )
1903   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
1904ROM_END
1905
1906ROM_START( pepp0055 ) /* Normal board : Deuces Wild Poker (PP0055) */
1907/*
1908                                        w/D     w/oD
1909PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
1910------------------------------------------------------------
1911  P32A      1    2    2   3   4  10  15  25 200 250    800
1912  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
1913     Programs Available: PP0055, X000055P, PP0723
1914*/
1915   ROM_REGION( 0x10000, "maincpu", 0 )
1916   ROM_LOAD( "pp0055_961-984.u68",   0x00000, 0x10000, CRC(c6b897cc) SHA1(9ba200652db58e602f388c21aaf9b3f837412385) ) /* Game Version: 961, Library Version: 984 */
1917
1918   ROM_REGION( 0x020000, "gfx1", 0 )
1919   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
1920   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
1921   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
1922   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
1923
1924   ROM_REGION( 0x100, "proms", 0 )
1925   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
1926ROM_END
1927
1928ROM_START( pepp0055a ) /* Normal board : Deuces Wild Poker (PP0055) */
1929/*
1930                                        w/D     w/oD
1931PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
1932------------------------------------------------------------
1933  P32A      1    2    2   3   4  10  15  25 200 250    800
1934  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
1935     Programs Available: PP0055, X000055P, PP0723
1936*/
1937   ROM_REGION( 0x10000, "maincpu", 0 ) /*  10/23/95   @IGT  L95-2432  */
1938   ROM_LOAD( "pp0055_a47-a76.u68",   0x00000, 0x10000, CRC(adff06ea) SHA1(098409bd4474a69217e3cd17ee8c650005cc3e17) ) /* Game Version: A47, Library Version: A76 */
1939
1940   ROM_REGION( 0x020000, "gfx1", 0 )
1941   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
1942   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
1943   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
1944   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
1945
1946   ROM_REGION( 0x100, "proms", 0 )
1947   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
1948ROM_END
1949
1950ROM_START( pepp0055b ) /* Normal board : Deuces Wild Poker (PP0055) */
1951/*
1952                                        w/D     w/oD
1953PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
1954------------------------------------------------------------
1955  P32A      1    2    2   3   4  10  15  25 200 250    800
1956  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
1957     Programs Available: PP0055, X000055P, PP0723
1958*/
1959   ROM_REGION( 0x10000, "maincpu", 0 )
1960   ROM_LOAD( "pp0055_600-550.u68",   0x00000, 0x8000, CRC(3c00285e) SHA1(b9028de6962619e438ef927f8223e04dde5c7f87) ) /* Game Version: 600, Library Version: 550, Video Lib Ver: 550 */
1961   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
1962
1963   ROM_REGION( 0x020000, "gfx1", 0 )
1964   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
1965   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
1966   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
1967   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
1968
1969   ROM_REGION( 0x100, "proms", 0 )
1970   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
1971ROM_END
1972
1973ROM_START( pepp0057 ) /* Normal board : Deuces Wild Poker (PP0057) */
1974/*
1975                                        w/D     w/oD
1976PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
1977------------------------------------------------------------
1978  P34A      1    2    2   3   5   9  15  25 200 250    800
1979  % Range: 96.8-98.8%  Optimum: 100.8%  Hit Frequency: 45.3%
1980     Programs Available: PP0057
1981*/
1982   ROM_REGION( 0x10000, "maincpu", 0 )
1983   ROM_LOAD( "pp0057_a47-a76.u68",   0x00000, 0x10000, CRC(44ebb68d) SHA1(4864ba62c225a3ecd576d1a82fcbe1e30d65244d) ) /* Game Version: A47, Library Version: A76 */
1984
1985   ROM_REGION( 0x020000, "gfx1", 0 )
1986   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
1987   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
1988   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
1989   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
1990
1991   ROM_REGION( 0x100, "proms", 0 )
1992   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
1993ROM_END
1994
1995ROM_START( pepp0057a ) /* Normal board : Deuces Wild Poker (PP0057) */
1996/*
1997                                        w/D     w/oD
1998PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
1999------------------------------------------------------------
2000  P34A      1    2    2   3   5   9  15  25 200 250    800
2001  % Range: 96.8-98.8%  Optimum: 100.8%  Hit Frequency: 45.3%
2002     Programs Available: PP0057
2003*/
2004   ROM_REGION( 0x10000, "maincpu", 0 )
2005   ROM_LOAD( "pp0057_540-508.u68",   0x00000, 0x8000, CRC(9a8281c2) SHA1(d411294062d7896a7f68a1c4a6295e18787dc7d6) ) /* Game Version: 540, Library Version: 508, Video Lib Ver: 508 */
2006   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2007
2008   ROM_REGION( 0x020000, "gfx1", 0 )
2009   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
2010   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2011   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2012   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2013
2014   ROM_REGION( 0x100, "proms", 0 )
2015   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2016ROM_END
2017
2018ROM_START( pepp0059 ) /* Normal board : Two Pair or Better (PP0059) */
2019/*
2020PayTable  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2021----------------------------------------------------
2022   FA      2    3    5    7  11  50 100 250    800
2023  % Range: 89.5-91.5%  Optimum: 93.5%  Hit Frequency: 38.8%
2024     Programs Available: PP0059, PP0424 - Non Double-up Only
2025*/
2026   ROM_REGION( 0x10000, "maincpu", 0 )
2027   ROM_LOAD( "pp0059_a45-a74.u68",   0x00000, 0x10000, CRC(6ff02f25) SHA1(b4a8476251044d0a7e3f232fa1ef4e31d8ef6775) ) /* Game Version: A45, Library Version: A75 */
2028
2029   ROM_REGION( 0x020000, "gfx1", 0 )
2030   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2031   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2032   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2033   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2034
2035   ROM_REGION( 0x100, "proms", 0 )
2036   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2037ROM_END
2038
2039ROM_START( pepp0059a ) /* Normal board : Two Pair or Better (PP0059) */
2040/*
2041PayTable  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2042----------------------------------------------------
2043   FA      2    3    5    7  11  50 100 250    800
2044  % Range: 89.5-91.5%  Optimum: 93.5%  Hit Frequency: 38.8%
2045     Programs Available: PP0059, PP0424 - Non Double-up Only
2046*/
2047   ROM_REGION( 0x10000, "maincpu", 0 )
2048   ROM_LOAD( "pp0059_518-515.u68",   0x00000, 0x8000, CRC(18315252) SHA1(f6712f9edb487dfd7d4d5b83d6ba8d43c776c9bf) ) /* Game Version: 518, Library Version: 515, Video Lib Ver: 515 */
2049   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2050
2051   ROM_REGION( 0x020000, "gfx1", 0 )
2052   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2053   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2054   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2055   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2056
2057   ROM_REGION( 0x100, "proms", 0 )
2058   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2059ROM_END
2060
2061ROM_START( pepp0060 ) /* Normal board : Standard Draw Poker (PP0060) */
2062/*
2063PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2064----------------------------------------------------------
2065   GA       1    2    3    4    5   6  25  50 250    800
2066  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
2067     Programs Available: PP0060, X000060P & PP0420 - Non Double-up Only
2068*/
2069   ROM_REGION( 0x10000, "maincpu", 0 )
2070   ROM_LOAD( "pp0060_a45-a74.u68",   0x00000, 0x10000, CRC(5d9e6c2f) SHA1(e1199a1fa57d84223ca87ea5b6ce4fda9afa0e1f) ) /* Game Version: A45, Library Version: A74 */
2071
2072   ROM_REGION( 0x020000, "gfx1", 0 )
2073   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2074   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2075   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2076   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2077
2078   ROM_REGION( 0x100, "proms", 0 )
2079   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2080ROM_END
2081
2082ROM_START( pepp0060a ) /* Normal board : Standard Draw Poker (PP0060) */
2083/*
2084PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2085----------------------------------------------------------
2086   GA       1    2    3    4    5   6  25  50 250    800
2087  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
2088     Programs Available: PP0060, X000060P & PP0420 - Non Double-up Only
2089*/
2090   ROM_REGION( 0x10000, "maincpu", 0 )
2091   ROM_LOAD( "pp0060_979-a0c.u68",   0x00000, 0x10000, CRC(adedfcfd) SHA1(f974a9c51d4e53c2c44a4c5214d39557d3a36d99) ) /* Game Version: 979, Library Version: A0C */
2092
2093   ROM_REGION( 0x020000, "gfx1", 0 )
2094   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2095   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2096   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2097   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2098
2099   ROM_REGION( 0x100, "proms", 0 )
2100   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2101ROM_END
2102
2103ROM_START( pepp0063 ) /* Normal board : 10's or Better (PP0063) */
2104/*
2105PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2106----------------------------------------------------------
2107  P8A      1     1    3    4    5   8  25  50 300    800
2108  % Range: 84.6-86.6%  Optimum: 88.6%  Hit Frequency: 49.2%
2109     Programs Available: PP0063
2110*/
2111   ROM_REGION( 0x10000, "maincpu", 0 )
2112   ROM_LOAD( "pp0063_518-515.u68",   0x00000, 0x8000, CRC(b31c7be7) SHA1(3203e76434db1e240f5b9642525eac9ea2726a03) ) /* Game Version: 518, Library Version: 515, Video Lib Ver: 515 */
2113   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2114
2115   ROM_REGION( 0x020000, "gfx1", 0 )
2116   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2117   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2118   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2119   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2120
2121   ROM_REGION( 0x100, "proms", 0 )
2122   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2123ROM_END
2124
2125ROM_START( pepp0064 ) /* Normal board : Joker Poker (PP0064) */
2126/*
2127                                            w/J     w/oJ
2128PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
2129----------------------------------------------------------------
2130  ????      1    1   2   3    4   5  20  40 100 200 500    ???
2131     Programs Available: PP0064
2132
2133*/
2134   ROM_REGION( 0x10000, "maincpu", 0 )
2135   ROM_LOAD( "pp0064_666-515.u68",   0x00000, 0x8000, CRC(56409362) SHA1(3400734da785edac2af14d8b645f7e3ed04f96a0) ) /* Game Version: 666, Library Version: 515, Video Lib Ver: 515 */
2136   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2137
2138   ROM_REGION( 0x020000, "gfx1", 0 )
2139   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2140   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2141   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2142   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2143
2144   ROM_REGION( 0x100, "proms", 0 )
2145   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2146ROM_END
2147
2148ROM_START( pepp0065 ) /* Normal board : Joker Poker (Aces or Better) (PP0065) */
2149/*
2150                                            w/J     w/oJ
2151PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
2152----------------------------------------------------------------
2153  P18A      1    1   2   3    5   6  20  50 100 200 500    800
2154  % Range: 89.8-91.8%  Optimum: 93.8%  Hit Frequency: 37.6%
2155     Programs Available: PP0065
2156
2157Superseded by PP0429 (Non Double-up) / PP0458
2158
2159*/
2160   ROM_REGION( 0x10000, "maincpu", 0 )
2161   ROM_LOAD( "pp0065_944-a00.u68",   0x00000, 0x10000, CRC(76c1a367) SHA1(ea8be9241e9925b5a4206db6875e1572f85fa5fe) ) /* Game Version: 944, Library Version: A00 */
2162
2163   ROM_REGION( 0x020000, "gfx1", 0 )
2164   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2165   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2166   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2167   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2168
2169   ROM_REGION( 0x100, "proms", 0 )
2170   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2171ROM_END
2172
2173ROM_START( pepp0083 ) /* Normal board : Tens or Better (PP0083) */
2174/*
2175PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2176----------------------------------------------------------
2177  P39D     1     1    3    5    7  11  50 100 300    940
2178  % Range: 90.6-92.6%  Optimum: 94.6%  Hit Frequency: 48.6%
2179     Programs Available: PP0083
2180*/
2181   ROM_REGION( 0x10000, "maincpu", 0 )
2182   ROM_LOAD( "pp0083_554-544.u68",   0x00000, 0x8000, CRC(d415a1dd) SHA1(5a7fef13a6cde7dad5957d8ea3f15d3ac92634cf) ) /* Game Version: 554, Library Version: 544, Video Lib Ver: 544 */
2183   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2184
2185   ROM_REGION( 0x020000, "gfx1", 0 )
2186   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2187   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2188   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2189   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2190
2191   ROM_REGION( 0x100, "proms", 0 )
2192   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2193ROM_END
2194
2195ROM_START( pepp0103 ) /* Normal board : Deuces Wild Poker 1-100 Coin (PP0103) */
2196/*
2197                                        w/D     w/oD
2198PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2199------------------------------------------------------------
2200  P47A      1    2    2   3   4  13  16  25 200 250    800
2201  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.9%
2202     Programs Available: PP0103
2203
2204This set erroneously swapped the intended payout of 5K & RF-with Deuce,
2205  with this set the 5K pays 25 while the RF-with Deuce pays 16
2206
2207Superseded by PP0224 (Non Double-up) / PP0290
2208
2209*/
2210   ROM_REGION( 0x10000, "maincpu", 0 )
2211   ROM_LOAD( "pp0103_600-550.u68",   0x00000, 0x8000, CRC(1a9cc3ee) SHA1(55ee93cbfc90f517368a13fb71f5e50d575d703e) ) /* Game Version: 600, Library Version: 550, Video Lib Ver: 550 */
2212   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2213
2214   ROM_REGION( 0x020000, "gfx1", 0 )
2215   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
2216   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2217   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2218   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2219
2220   ROM_REGION( 0x100, "proms", 0 )
2221   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2222ROM_END
2223
2224ROM_START( pepp0116 ) /* Normal board : Standard Draw Poker (PP0116) */
2225/*
2226PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2227----------------------------------------------------------
2228   BA       1    2    3    4    5   8  25  50 250    800
2229  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
2230     Programs Available: PP0116
2231*/
2232
2233   ROM_REGION( 0x10000, "maincpu", 0 )
2234   ROM_LOAD( "pp0116_554-544.u68",   0x00000, 0x8000, CRC(27aba06b) SHA1(7976a2b2577c28e332091cbbcb4c7d53ffbea827) ) /* Game Version: 554, Library Version: 544, Video Lib Ver: 544 */
2235   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
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( 0x100, "proms", 0 )
2244   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2245ROM_END
2246
2247ROM_START( pepp0118 ) /* Normal board : Standard Draw Poker (PP0118) */
2248/*
2249PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
2250---------------------------------------------------------
2251  CA        1    2    3   4    6   9  25  50 250    800
2252  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 45.5%
2253     Programs Available: PP0118
2254*/
2255
2256   ROM_REGION( 0x10000, "maincpu", 0 )
2257   ROM_LOAD( "pp0118_554-544.u68",   0x00000, 0x8000, CRC(4025cb30) SHA1(742bfba5dbd8a3e38665045f84fd90e19e94d1f5) ) /* Game Version: 554, Library Version: 544, Video Lib Ver: 544 */
2258   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2259
2260   ROM_REGION( 0x020000, "gfx1", 0 )
2261   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2262   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2263   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2264   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2265
2266   ROM_REGION( 0x100, "proms", 0 )
2267   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2268ROM_END
2269
2270ROM_START( pepp0120 ) /* Normal board : Wild Sevens Poker (PP0120) */
2271/*
2272                                        w/7 Four w/o7
2273PayTable   3K   STR  FL  FH  4K  SF  5K  RF  7s   RF  (Bonus)
2274-------------------------------------------------------------
2275  ????      1    2    3   4   4   9  12  20 200  250    800
2276  % Range: 93.1-95.1%  Optimum: 97.1%  Hit Frequency: 44.1%
2277     Programs Available: PP0120
2278
2279Same payout as P59A (PP0124 / X000124P, Deuces Wild Poker) just swapping Sevens for Deuces
2280
2281*/
2282
2283   ROM_REGION( 0x10000, "maincpu", 0 )
2284   ROM_LOAD( "pp0120_576-569.u68",   0x00000, 0x8000, CRC(4491be19) SHA1(cf8146a6ade1abb2e1ac9f0f3923e2be865f2fec) ) /* Game Version: 576, Library Version: 569, Video Lib Ver: 569 */
2285   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2286
2287   ROM_REGION( 0x020000, "gfx1", 0 )
2288   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
2289   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2290   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2291   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2292
2293   ROM_REGION( 0x100, "proms", 0 )
2294   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2295ROM_END
2296
2297ROM_START( pepp0125 ) /* Normal board : Deuces Wild Poker (PP0125) */
2298/*
2299                                        w/D     w/oD
2300PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2301------------------------------------------------------------
2302  P62A      1    2    2   3   5   9  15  25 200 250    800
2303  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 44.4%
2304     Programs Available: PP0125, PP0418, X000291P, PP0291 - Non Double-up Only
2305*/
2306   ROM_REGION( 0x10000, "maincpu", 0 )
2307   ROM_LOAD( "pp0125_600-550.u68",   0x00000, 0x8000, CRC(52a02dd4) SHA1(ae0dc8920a2a0bce2c19eb499af9b30b4552f53c) ) /* Game Version: 600, Library Version: 550, Video Lib Ver: 550 */
2308   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2309
2310   ROM_REGION( 0x020000, "gfx1", 0 )
2311   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
2312   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2313   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2314   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2315
2316   ROM_REGION( 0x100, "proms", 0 )
2317   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2318ROM_END
2319
2320ROM_START( pepp0126 ) /* Normal board : Deuces Wild Poker (PP0126) */
2321/*
2322                                        w/D     w/oD
2323PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2324------------------------------------------------------------
2325  P63A      1    2    2   3   5   9  12  20 200 250    800
2326  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 45.4%
2327     Programs Available: PP0126, X000126P
2328*/
2329   ROM_REGION( 0x10000, "maincpu", 0 )
2330   ROM_LOAD( "pp0126_961-984.u68",   0x00000, 0x10000, CRC(aadb62ef) SHA1(85979d5932ef254241c363414c2093cc943e88a5) ) /* Game Version: 961, Library Version: 984 */
2331
2332   ROM_REGION( 0x020000, "gfx1", 0 )
2333   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
2334   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
2335   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
2336   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
2337
2338   ROM_REGION( 0x100, "proms", 0 )
2339   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2340ROM_END
2341
2342ROM_START( pepp0127 ) /* Normal board : Deuces Joker Wild Poker (PP0127) */
2343/*
2344                                         With  w/o  w/o  With
2345                                         Wild  JKR  Wild JKR
2346PayTable   3K   STR  FL  FH  4K  SF  5K   RF    4D   RF   4D  (Bonus)
2347---------------------------------------------------------------------
2348  P65N      1    2    3   3   3   6   9   12    25  800  1000  2000
2349  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 50.4%
2350     Programs Available: PP0127
2351*/
2352   ROM_REGION( 0x10000, "maincpu", 0 )
2353   ROM_LOAD( "pp0127_a47-a76.u68",   0x00000, 0x10000, CRC(2997aaac) SHA1(b52525154f4ae39a341ecf829c33449f31a8ce07) ) /* Game Version: A47, Library Version: A76 */
2354
2355   ROM_REGION( 0x020000, "gfx1", 0 )
2356   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
2357   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
2358   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
2359   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
2360
2361   ROM_REGION( 0x100, "proms", 0 )
2362   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2363ROM_END
2364
2365ROM_START( pepp0127a ) /* Normal board : Deuces Joker Wild Poker (PP0127) - Multi Regional / Multi Currency - Tournament Mode capable */
2366/*
2367                                         With  w/o  w/o  With
2368                                         Wild  JKR  Wild JKR
2369PayTable   3K   STR  FL  FH  4K  SF  5K   RF    4D   RF   4D  (Bonus)
2370---------------------------------------------------------------------
2371  P65N      1    2    3   3   3   6   9   12    25  800  1000  2000
2372  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 50.4%
2373     Programs Available: PP0127
2374*/
2375   ROM_REGION( 0x10000, "maincpu", 0 )
2376   ROM_LOAD( "pp0127_999-a1a.u68",   0x00000, 0x10000, CRC(df09abd2) SHA1(bc8c6f01b3387c0d10ec380ec86f26673776bfb2) ) /* Game Version: 999, Library Version: A1A */
2377
2378   ROM_REGION( 0x020000, "gfx1", 0 )
2379   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
2380   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
2381   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
2382   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
2383
2384   ROM_REGION( 0x100, "proms", 0 )
2385   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2386ROM_END
2387
2388ROM_START( pepp0158 ) /* Normal board : 4 of a Kind Bonus Poker (PP0158) - 03/17/97   @ IGT  L97-0628 */
2389/*
2390                                       5-K 2-4
2391PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2392------------------------------------------------------------------
2393  P77A      1    2    3    4    5   8  25  40  80  50 250    800
2394  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
2395     Programs Available: PP0158, X000158P
2396*/
2397   ROM_REGION( 0x10000, "maincpu", 0 )
2398   ROM_LOAD( "pp0158_a67-a8k.u68",   0x00000, 0x10000, CRC(715aeadf) SHA1(e90b1f0a1d4886882c9259d84c950076f9fd521d) ) /* Game Version: A67, Library Version: A8K */
2399
2400   ROM_REGION( 0x020000, "gfx1", 0 )
2401   ROM_LOAD( "mro-cg2108.u72",   0x00000, 0x8000, CRC(4d2d2223) SHA1(4672d4302697cfa2e6d826f79cc3fa1bdfbd8315) ) /*  11/29/94   @ IGT  L94-2198  */
2402   ROM_LOAD( "mgo-cg2108.u73",   0x08000, 0x8000, CRC(74a75c2c) SHA1(0cdac698685849696402d289dcdc82df2aae7e49) )
2403   ROM_LOAD( "mbo-cg2108.u74",   0x10000, 0x8000, CRC(3f364248) SHA1(5111aa57ff8698dceb55b9d10f3acab7786c7da6) )
2404   ROM_LOAD( "mxo-cg2108.u75",   0x18000, 0x8000, CRC(b04d317b) SHA1(5c181fb0a58b216db511572e531cd0eea7a061f4) )
2405
2406   ROM_REGION( 0x100, "proms", 0 )
2407   ROM_LOAD( "cap944.u50", 0x0000, 0x0100, CRC(8700bc0a) SHA1(71b0bea067fb4885b19145146149eafd01d87ad0) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2408ROM_END
2409
2410ROM_START( pepp0158a ) /* Normal board : 4 of a Kind Bonus Poker (PP0158) - 10/23/95   @ IGT  L95-2438 */
2411/*
2412                                       5-K 2-4
2413PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2414------------------------------------------------------------------
2415  P77A      1    2    3    4    5   8  25  40  80  50 250    800
2416  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
2417     Programs Available: PP0158, X000158P
2418*/
2419   ROM_REGION( 0x10000, "maincpu", 0 )
2420   ROM_LOAD( "pp0158_a46-a75.u68",   0x00000, 0x10000, CRC(5976cd19) SHA1(6a461ea9ddf78dffa3cf8b65903ebf3127f23d45) ) /* Game Version: A46, Library Version: A75, Video Lib ver A0Y */
2421
2422   ROM_REGION( 0x020000, "gfx1", 0 )
2423   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
2424   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
2425   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
2426   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
2427
2428   ROM_REGION( 0x100, "proms", 0 )
2429   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2430ROM_END
2431
2432ROM_START( pepp0158b ) /* Normal board : 4 of a Kind Bonus Poker (PP0158) */
2433/*
2434                                       5-K 2-4
2435PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2436------------------------------------------------------------------
2437  P77A      1    2    3    4    5   8  25  40  80  50 250    800
2438  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
2439     Programs Available: PP0158, X000158P
2440*/
2441   ROM_REGION( 0x10000, "maincpu", 0 )
2442   ROM_LOAD( "pp0158_813-a75.u68",   0x00000, 0x10000, CRC(b82cec15) SHA1(6ff8867e88d57cd1874388c9e6f5e0e6d96029e9) ) /* Game Version: A46, Library Version: A75 */
2443
2444   ROM_REGION( 0x020000, "gfx1", 0 )
2445   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
2446   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
2447   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
2448   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
2449
2450   ROM_REGION( 0x100, "proms", 0 )
2451   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2452ROM_END
2453
2454ROM_START( pepp0158c ) /* Normal board : 4 of a Kind Bonus Poker (PP0158) */
2455/*
2456                                       5-K 2-4
2457PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2458------------------------------------------------------------------
2459  P77A      1    2    3    4    5   8  25  40  80  50 250    800
2460  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
2461     Programs Available: PP0158, X000158P
2462*/
2463   ROM_REGION( 0x10000, "maincpu", 0 )
2464   ROM_LOAD( "pp0158_631-607.u68",   0x00000, 0x8000, CRC(5fe3498c) SHA1(f1405bf016d46904228cda88d8d94e2a956b2347) ) /* Game Version: 631, Library Version: 607, Video Lib Ver: 607 */
2465   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2466
2467   ROM_REGION( 0x020000, "gfx1", 0 )
2468   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2469   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2470   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2471   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2472
2473   ROM_REGION( 0x100, "proms", 0 )
2474   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2475ROM_END
2476
2477ROM_START( pepp0159 ) /* Normal board : Standard Draw Poker (PP0159) - Multi Regional / Multi Currency - Tournament Mode capable */
2478/*
2479PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2480----------------------------------------------------------
2481  P11B      1    2    3    4    5   7  25  50 250   1000
2482  % Range: 92.5-94.5%  Optimum: 96.5%  Hit Frequency: 45.5%
2483     Programs Available: PP0159
2484*/
2485   ROM_REGION( 0x10000, "maincpu", 0 )
2486   ROM_LOAD( "pp0159_a2l-a4g.u68",   0x00000, 0x10000, CRC(22a5aa5f) SHA1(dfad528825710e887f36c201dc2dca2ab162f0f8) ) /* Game Version: A2L, Library Version: A4G */
2487
2488   ROM_REGION( 0x020000, "gfx1", 0 )
2489   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
2490   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
2491   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
2492   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
2493
2494   ROM_REGION( 0x100, "proms", 0 )
2495   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2496ROM_END
2497
2498ROM_START( pepp0171 ) /* Normal board : Joker Poker  (PP0171) */
2499/*
2500                                            w/J     w/oJ
2501PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
2502----------------------------------------------------------------
2503   YA       1    1   2   3    5   7  15  50 100 200 400    800
2504  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.2%
2505     Programs Available: PP0171, X000171P
2506*/
2507   ROM_REGION( 0x10000, "maincpu", 0 ) /*  10/23/95   @IGT  L95-2281  */
2508   ROM_LOAD( "pp0171_a45-a74.u68",   0x00000, 0x10000, CRC(7a68ee4b) SHA1(298ca0c87229929b61ddfdf8c0bac82e9df17e83) ) /* Game Version: A45, Library Version: A74 */
2509
2510   ROM_REGION( 0x020000, "gfx1", 0 )
2511   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2512   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2513   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2514   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2515
2516
2517   ROM_REGION( 0x100, "proms", 0 )
2518   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2519ROM_END
2520
2521ROM_START( pepp0171a ) /* Normal board : Joker Poker  (PP0171) - Multi Regional / Multi Currency - Tournament Mode capable */
2522/*
2523                                            w/J     w/oJ
2524PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
2525----------------------------------------------------------------
2526   YA       1    1   2   3    5   7  15  50 100 200 400    800
2527  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.2%
2528     Programs Available: PP0171, X000171P
2529*/
2530   ROM_REGION( 0x10000, "maincpu", 0 ) /*  10/23/95   @IGT  L95-2281  */
2531   ROM_LOAD( "pp0171_a2e-a49.u68",   0x00000, 0x10000, CRC(efd6a33a) SHA1(72f5a4c9923f46a59a61b3b034b1275ebfeadac6) ) /* Game Version: A2E, Library Version: A49 */
2532
2533   ROM_REGION( 0x020000, "gfx1", 0 )
2534   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
2535   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
2536   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
2537   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
2538
2539
2540   ROM_REGION( 0x100, "proms", 0 )
2541   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2542ROM_END
2543
2544ROM_START( pepp0178 ) /* Normal board : 4 of a Kind Bonus Poker w/ operator selectable special 4 of a Kind (PP0178) */
2545/*
2546                                          Aor?
2547PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K*  SF  RF  (Bonus)
2548-----------------------------------------------------------------
2549  ????      1    2    3    4    6   9  25  25   50 250    800
2550
2551* Operator selectable Special 4 of a Kind. Maxbet payout is 250 same as SF at Maxbet
2552
2553*/
2554   ROM_REGION( 0x10000, "maincpu", 0 )
2555   ROM_LOAD( "pp0178_645-627.u68",   0x00000, 0x10000, CRC(96cb3b13) SHA1(d8b0621e48b20142d25bf81d07d6716d9858f33e) ) /* Game Version: 645, Library Version: 627 */
2556
2557   ROM_REGION( 0x020000, "gfx1", 0 )
2558   ROM_LOAD( "mro-cg954.u72",   0x00000, 0x8000, CRC(1f9cd61e) SHA1(92a2ca3765ad4eeb7ab96538d4278e0a99d16638) )
2559   ROM_LOAD( "mgo-cg954.u73",   0x08000, 0x8000, CRC(ac1dd15d) SHA1(41ddbb05edc3d274a27d4938c29e6a1e7c785cd7) )
2560   ROM_LOAD( "mbo-cg954.u74",   0x10000, 0x8000, CRC(cfcb5740) SHA1(8a94536f3b4315c1e6a16a8e5043a80205a3aabe) )
2561   ROM_LOAD( "mxo-cg954.u75",   0x18000, 0x8000, CRC(94f63723) SHA1(f53867cc1c07235ff2aba1854459085dd0643c89) )
2562
2563   ROM_REGION( 0x100, "proms", 0 )
2564   ROM_LOAD( "cap953.u50", 0x0000, 0x0100, CRC(6ece50ad) SHA1(bc5761303b09625850ba50263607d11871ea3ed3) )
2565ROM_END
2566
2567ROM_START( pepp0188 ) /* Normal board : Standard Draw Poker (PP0188) */
2568/*
2569PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2570----------------------------------------------------------
2571  P40A      1    2    3    4    6   9  15  40 250    800
2572  % Range: 86.5-88.5%  Optimum: 92.5%  Hit Frequency: 45.5%
2573     Programs Available: PP0188, X000188P
2574*/
2575   ROM_REGION( 0x10000, "maincpu", 0 )
2576   ROM_LOAD( "pp0188_986-a0u.u68",   0x00000, 0x10000, CRC(cf36a53c) SHA1(99b578538ab24d9ff91971b1f77599272d1dbfc6) ) /* Game Version: 986, Library Version: A0U */
2577
2578   ROM_REGION( 0x020000, "gfx1", 0 )
2579   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2580   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2581   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2582   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2583
2584   ROM_REGION( 0x100, "proms", 0 )
2585   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2586ROM_END
2587
2588ROM_START( pepp0188a ) /* Normal board : Standard Draw Poker (PP0188) */
2589/*
2590PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2591----------------------------------------------------------
2592  P40A      1    2    3    4    6   9  15  40 250    800
2593  % Range: 86.5-88.5%  Optimum: 92.5%  Hit Frequency: 45.5%
2594     Programs Available: PP0188, X000188P
2595*/
2596   ROM_REGION( 0x10000, "maincpu", 0 )
2597   ROM_LOAD( "pp0188_a66-a8h.u68",   0x00000, 0x10000, CRC(72740894) SHA1(5b7109b6cbe67e0a951fd48b4daf09875abb75fc) ) /* Game Version: A66, Library Version: A8H */
2598
2599   ROM_REGION( 0x020000, "gfx1", 0 )
2600   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2601   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2602   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2603   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2604
2605   ROM_REGION( 0x100, "proms", 0 )
2606   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2607ROM_END
2608
2609ROM_START( pepp0190 ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0190) */
2610/*
2611                                        w/D     w/oD
2612PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2613------------------------------------------------------------
2614  P57A      1    2    3   4   4   8  10  20 200 250    800
2615  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
2616     Programs Available: PP0417, X000417P, X000190P & PP0190 - Non Double-up Only
2617*/
2618   ROM_REGION( 0x10000, "maincpu", 0 )
2619   ROM_LOAD( "pp0190_642-623.u68",   0x00000, 0x10000, CRC(3b8a3203) SHA1(33bd285def754df34f4815cd713e2ff599c74f11) ) /* Game Version: 642, Library Version: 623 */
2620
2621   ROM_REGION( 0x020000, "gfx1", 0 )
2622   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) ) /* Should be MxO-CG2023.U7x & CAP773 (or CAP2023)?? */
2623   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2624   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2625   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2626
2627   ROM_REGION( 0x100, "proms", 0 )
2628   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2629ROM_END
2630
2631ROM_START( pepp0190a ) /* Normal board : Deuces Wild Poker  (PP0190) - Multi Regional / Multi Currency - Tournament Mode capable */
2632/*
2633                                        w/D     w/oD
2634PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2635------------------------------------------------------------
2636  P57A      1    2    3   4   4   8  10  20 200 250    800
2637  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
2638     Programs Available: PP0417, X000417P, X000190P & PP0190 - Non Double-up Only
2639*/
2640   ROM_REGION( 0x10000, "maincpu", 0 )
2641   ROM_LOAD( "pp0190_a56-a7a.u68",   0x00000, 0x10000, CRC(26900a42) SHA1(e15537c1dff097b99d3b21801243289872330a2a) ) /* Game Version: A56, Library Version: A7A */
2642
2643   ROM_REGION( 0x020000, "gfx1", 0 )
2644   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
2645   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
2646   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
2647   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
2648
2649   ROM_REGION( 0x100, "proms", 0 )
2650   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2651ROM_END
2652
2653ROM_START( pepp0197 ) /* Normal board : Standard Draw Poker (PP0197) - 10/23/95   @ IGT  L95-2452 */
2654/*
2655PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2656----------------------------------------------------------
2657   BA       1    2    3    4    5   8  25  50 250    800
2658  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
2659     Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only
2660*/
2661   ROM_REGION( 0x10000, "maincpu", 0 )
2662   ROM_LOAD( "pp0197_a45-a75.u68",   0x00000, 0x10000, CRC(6b5b3108) SHA1(2fafcf979db92d4f9f1fb0a2e9645fd71d8dd5c2) ) /* Game Version: A45, Library Version: A75 */
2663
2664   ROM_REGION( 0x020000, "gfx1", 0 )
2665   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2666   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2667   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2668   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2669
2670
2671   ROM_REGION( 0x100, "proms", 0 )
2672   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2673ROM_END
2674
2675ROM_START( pepp0197a ) /* Normal board : Standard Draw Poker (PP0197) */
2676/*
2677PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2678----------------------------------------------------------
2679   BA       1    2    3    4    5   8  25  50 250    800
2680  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
2681     Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only
2682*/
2683   ROM_REGION( 0x10000, "maincpu", 0 )
2684   ROM_LOAD( "pp0197_919-a0c.u68",   0x00000, 0x10000, CRC(ae817534) SHA1(b2454609e8275aab00797966c0f4e68eae2911cd) ) /* Game Version: 919, Library Version: A0C */
2685
2686   ROM_REGION( 0x020000, "gfx1", 0 )
2687   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2688   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2689   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2690   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2691
2692
2693   ROM_REGION( 0x100, "proms", 0 )
2694   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2695ROM_END
2696
2697ROM_START( pepp0197b ) /* Normal board : Standard Draw Poker (Auto Hold in options) (PP0197) */
2698/*
2699PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2700----------------------------------------------------------
2701   BA       1    2    3    4    5   8  25  50 250    800
2702  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
2703     Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only
2704*/
2705   ROM_REGION( 0x10000, "maincpu", 0 )
2706   ROM_LOAD( "pp0197_689-654.u68",   0x00000, 0x10000, CRC(84a2fbde) SHA1(0515f2693d388e29cdf0de4d29708250c671e0a4) ) /* Game Version: 689, Library Version: 654 */
2707
2708   ROM_REGION( 0x020000, "gfx1", 0 )
2709   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2710   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2711   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2712   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2713
2714
2715   ROM_REGION( 0x100, "proms", 0 )
2716   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2717ROM_END
2718
2719ROM_START( pepp0203 ) /* Normal board : 4 of a Kind Bonus Poker (PP0203) */
2720/*
2721                                       5-K 2-4
2722PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2723------------------------------------------------------------------
2724  P90A      1    2    3    4    5   7  25  40  80  50 250    800
2725  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
2726     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
2727*/
2728   ROM_REGION( 0x10000, "maincpu", 0 )
2729   ROM_LOAD( "pp0203_a46-a75.u68",   0x00000, 0x10000, CRC(2955eeb5) SHA1(ac2483dbb92de84ab64d0d7e55acff196966ea1b) ) /* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
2730
2731   ROM_REGION( 0x020000, "gfx1", 0 )
2732   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
2733   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
2734   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
2735   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
2736
2737
2738   ROM_REGION( 0x100, "proms", 0 )
2739   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2740ROM_END
2741
2742ROM_START( pepp0203a ) /* Normal board : 4 of a Kind Bonus Poker (PP0203) */
2743/*
2744                                       5-K 2-4
2745PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2746------------------------------------------------------------------
2747  P90A      1    2    3    4    5   7  25  40  80  50 250    800
2748  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
2749     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
2750*/
2751   ROM_REGION( 0x10000, "maincpu", 0 )
2752   ROM_LOAD( "pp0203_a0n-a23.u68",   0x00000, 0x10000, CRC(fce4ea36) SHA1(4c1be0cb3600bbcac768b942f7b8bddd5d626ef6) ) /* Game Version: A0N, Library Version: A23, Video Lib ver: A0Y */
2753
2754   ROM_REGION( 0x020000, "gfx1", 0 )
2755   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
2756   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
2757   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
2758   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
2759
2760
2761   ROM_REGION( 0x100, "proms", 0 )
2762   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2763ROM_END
2764
2765ROM_START( pepp0203b ) /* Normal board : 4 of a Kind Bonus Poker (PP0203) */
2766/*
2767                                       5-K 2-4
2768PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2769------------------------------------------------------------------
2770  P90A      1    2    3    4    5   7  25  40  80  50 250    800
2771  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
2772     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
2773*/
2774   ROM_REGION( 0x10000, "maincpu", 0 )
2775   ROM_LOAD( "pp0203_813-824.u68",   0x00000, 0x10000, CRC(49ea6fb9) SHA1(ca595e30d786d28397eeef10786a811af1a5c74d) ) /* Game Version: 813, Library Version: 824 */
2776
2777   ROM_REGION( 0x020000, "gfx1", 0 )
2778   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
2779   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
2780   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
2781   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
2782
2783   ROM_REGION( 0x100, "proms", 0 )
2784   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2785ROM_END
2786
2787ROM_START( pepp0203c ) /* Normal board : 4 of a Kind Bonus Poker (PP0203) - Multi Regional / Multi Currency - Tournament Mode capable */
2788/*
2789                                       5-K 2-4
2790PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
2791------------------------------------------------------------------
2792  P90A      1    2    3    4    5   7  25  40  80  50 250    800
2793  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
2794     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
2795*/
2796   ROM_REGION( 0x10000, "maincpu", 0 )
2797   ROM_LOAD( "pp0203_a35-a51.u68",   0x00000, 0x10000, CRC(7d38b599) SHA1(aee2f347c00c240e1dc0b662800708b1038d3ec8) ) /* Game Version: A35, Library Version: A51 */
2798
2799   ROM_REGION( 0x020000, "gfx1", 0 )
2800   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
2801   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
2802   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
2803   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
2804
2805   ROM_REGION( 0x100, "proms", 0 )
2806   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2807ROM_END
2808
2809ROM_START( pepp0219 ) /* Normal board : Standard Draw Poker - Auto Hold in Options (PP0219) */
2810/*
2811PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2812----------------------------------------------------------
2813   GA       1    2    3    4    5   6  25  50 250    800
2814  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
2815     Programs Available: PP0219
2816*/
2817   ROM_REGION( 0x10000, "maincpu", 0 )
2818   ROM_LOAD( "pp0219_689-654.u68",   0x00000, 0x10000, CRC(2cd5cd21) SHA1(614264f0e346146420b44ebe9dc93b0799a70b5d) ) /* Game Version: 689, Library Version: 654 */
2819
2820   ROM_REGION( 0x020000, "gfx1", 0 )
2821   ROM_LOAD( "mro-cg904.u72",   0x00000, 0x8000, CRC(75bac43f) SHA1(8e7bfba95aa6e027cdaf0d1535e5c630ee2f56d3) )
2822   ROM_LOAD( "mgo-cg904.u73",   0x08000, 0x8000, CRC(1222d844) SHA1(854eb790d5b5a5cfe8148e8b95e3ba3f06f33dce) )
2823   ROM_LOAD( "mbo-cg904.u74",   0x10000, 0x8000, CRC(0bf0168f) SHA1(254cef934a0d30c5a18a0b4773bb364fc21f8113) )
2824   ROM_LOAD( "mxo-cg904.u75",   0x18000, 0x8000, CRC(ff648f12) SHA1(58f8247a997e1b0b69bafed428d30822adef339e) )
2825
2826   ROM_REGION( 0x100, "proms", 0 )
2827   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
2828ROM_END
2829
2830ROM_START( pepp0221 ) /* Normal board : Standard Draw Poker (PP0221) */
2831/*
2832PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2833----------------------------------------------------------
2834  P11A      1    2    3    4    5   9  25  50 250    800
2835  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
2836     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
2837*/
2838   ROM_REGION( 0x10000, "maincpu", 0 )
2839   ROM_LOAD( "pp0221_979-a0c.u68",   0x00000, 0x10000, CRC(c45fb8f1) SHA1(fba8dce2954beb168624ba94b2a4fdd3b260da46) ) /* Game Version: 979, Library Version: A0C */
2840
2841   ROM_REGION( 0x020000, "gfx1", 0 )
2842   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2843   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2844   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2845   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2846
2847   ROM_REGION( 0x100, "proms", 0 )
2848   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2849ROM_END
2850
2851ROM_START( pepp0221a ) /* Normal board : Standard Draw Poker (PP0221) */
2852/*
2853PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2854----------------------------------------------------------
2855  P11A      1    2    3    4    5   9  25  50 250    800
2856  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
2857     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
2858*/
2859   ROM_REGION( 0x10000, "maincpu", 0 )
2860   ROM_LOAD( "pp0221_896-914.u68",   0x00000, 0x10000, CRC(14d50334) SHA1(281c4467f57f91d0da98242b085973c06193085a) ) /* Game Version: 896, Library Version: 914 */
2861
2862   ROM_REGION( 0x020000, "gfx1", 0 )
2863   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2864   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2865   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2866   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2867
2868   ROM_REGION( 0x100, "proms", 0 )
2869   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2870ROM_END
2871
2872ROM_START( pepp0224 ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0224) */
2873/*
2874                                        w/D     w/oD
2875PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2876------------------------------------------------------------
2877  P47A      1    2    2   3   4  13  16  25 200 250    800
2878  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.9%
2879     Programs Available: PP0290, X000224P & PP0224 - Non Double-up Only
2880*/
2881   ROM_REGION( 0x10000, "maincpu", 0 )
2882   ROM_LOAD( "pp0224_a47-a76.u68",   0x00000, 0x10000, CRC(5d6881ad) SHA1(38953ffadea04df614b14c70177736039495c408) ) /* Game Version: A47, Library Version: A76 */
2883
2884   ROM_REGION( 0x020000, "gfx1", 0 )
2885   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
2886   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
2887   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
2888   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
2889
2890   ROM_REGION( 0x100, "proms", 0 )
2891   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2892ROM_END
2893
2894ROM_START( pepp0224a ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0224) */
2895/*
2896                                        w/D     w/oD
2897PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2898------------------------------------------------------------
2899  P47A      1    2    2   3   4  13  16  25 200 250    800
2900  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.9%
2901     Programs Available: PP0290, X000224P & PP0224 - Non Double-up Only
2902*/
2903   ROM_REGION( 0x10000, "maincpu", 0 )
2904   ROM_LOAD( "pp0224_961-984.u68",   0x00000, 0x10000, CRC(71d5e112) SHA1(528f06ad7ea7e1e297939c7b3ca0bb7faa8ce8c1) ) /* Game Version: 961, Library Version: 984 */
2905
2906   ROM_REGION( 0x020000, "gfx1", 0 )
2907   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
2908   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
2909   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
2910   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
2911
2912   ROM_REGION( 0x100, "proms", 0 )
2913   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2914ROM_END
2915
2916ROM_START( pepp0230 ) /* Normal board : Standard Draw Poker (PP0230) */
2917/*
2918PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
2919----------------------------------------------------------
2920   BA       1    2    3    4    5   8  25  50 250    800
2921  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
2922     Programs Available: PP0230
2923*/
2924   ROM_REGION( 0x10000, "maincpu", 0 )
2925   ROM_LOAD( "pp0230_715-702.u68",   0x00000, 0x10000, CRC(0272d8d6) SHA1(659f9149ab5e26283eaccd31588183c21c291adb) ) /* Game Version: 715, Library Version: 702 */
2926
2927   ROM_REGION( 0x020000, "gfx1", 0 )
2928   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
2929   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
2930   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
2931   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
2932
2933   ROM_REGION( 0x100, "proms", 0 )
2934   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
2935ROM_END
2936
2937ROM_START( pepp0242 ) /* Normal board : Deuces Wild Poker (PP0242) - Multi Regional / Multi Currency in English / Spanish - Tournament Mode capable */
2938/*
2939                                        w/D     w/oD
2940PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2941------------------------------------------------------------
2942  P56A      1    2    3   3   4   8  10  20 200 250    800
2943  % Range: 89.4-91.4%  Optimum: 93.4%  Hit Frequency: 45.1%
2944     Programs Available: PP0242, X000242P
2945*/
2946   ROM_REGION( 0x10000, "maincpu", 0 )
2947   ROM_LOAD( "pp0242_a1c-a31.u68",   0x00000, 0x10000, CRC(cb7cdf2b) SHA1(989db6bf860637ef0c9d38c4ec824e2ab92acb89) ) /* Game Version: A1C, Library Version: A31 */
2948
2949   ROM_REGION( 0x020000, "gfx1", 0 )
2950   ROM_LOAD( "mro-cg1325.u72",  0x00000, 0x8000, CRC(ebb81436) SHA1(211cc0f881703b3cceb51c65209075154c9536db) )
2951   ROM_LOAD( "mgo-cg1325.u73",  0x08000, 0x8000, CRC(ef86e83a) SHA1(854fc31173c7647a9ed986f2fe58ec3795eb8542) )
2952   ROM_LOAD( "mbo-cg1325.u74",  0x10000, 0x8000, CRC(8387b4ba) SHA1(cab77982464e9e70e6ad4ecf51a5cafe7aefb478) )
2953   ROM_LOAD( "mxo-cg1325.u75",  0x18000, 0x8000, CRC(9dddc501) SHA1(a0ab8b3866b0ae018b3f6e0199bdc756d4e5f967) )
2954
2955   ROM_REGION( 0x100, "proms", 0 )
2956   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2957ROM_END
2958
2959ROM_START( pepp0249 ) /* Normal board : Deuces Wild Poker (PP0249) */
2960/*
2961                                        w/D     w/oD
2962PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
2963------------------------------------------------------------
2964  P129A     1    2    3   4   4  10  16  25 200 250    800
2965  % Range: 95.7-97.7%  Optimum: 99.7%  Hit Frequency: 44.3%
2966     Programs Available: PP0249
2967
2968Superseded by PP0469
2969
2970*/
2971   ROM_REGION( 0x10000, "maincpu", 0 )
2972   ROM_LOAD( "pp0249_600-550.u68",   0x00000, 0x8000, CRC(39cab612) SHA1(6ef2e533df40d9ac331dc9e2fd3bf17187f70414) ) /* Game Version: 600, Library Version: 550, Video Lib Ver: 550 */
2973   ROM_RELOAD(                       0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
2974
2975   ROM_REGION( 0x020000, "gfx1", 0 )
2976   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
2977   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
2978   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
2979   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
2980
2981   ROM_REGION( 0x100, "proms", 0 )
2982   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
2983ROM_END
2984
2985ROM_START( pepp0250 ) /* Normal board : Double Down Stud Poker (PP0250) */
2986/*
2987PayTable  6s-10s  Js+  2PR  3K   STR  FL  FH  4K  SF   RF  (Bonus)
2988------------------------------------------------------------------
2989  ????      1      2    3    4    6    6  12  50 200  1000  4000
2990*/
2991   ROM_REGION( 0x10000, "maincpu", 0 )
2992   ROM_LOAD( "pp0250_733-778.u68",   0x00000, 0x10000, CRC(4c919598) SHA1(fe73503c6ccb3c5746fb96be58cd5b740c819713) ) /* Game Version: 733, Library Version: 778 */
2993
2994   ROM_REGION( 0x020000, "gfx1", 0 )
2995   ROM_LOAD( "mro-cg1019.u72",   0x00000, 0x8000, CRC(9086dc3c) SHA1(639baef8a9b347015d21817d69265700ff205774) ) /* Verified CG set for PP0250 set */
2996   ROM_LOAD( "mgo-cg1019.u73",   0x08000, 0x8000, CRC(fb538a19) SHA1(1ed480ebdf3ad210511e7e0a0dd4e28466219ae9) ) /* Superseded by CG2015 which also works */
2997   ROM_LOAD( "mbo-cg1019.u74",   0x10000, 0x8000, CRC(493bf604) SHA1(9cbce26ed328e6878ec5f6531ea140e1c17e6753) )
2998   ROM_LOAD( "mxo-cg1019.u75",   0x18000, 0x8000, CRC(064a5c80) SHA1(4d21a7a424258f74d4a1e78c123288799e316228) )
2999
3000   ROM_REGION( 0x100, "proms", 0 )
3001   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3002ROM_END
3003
3004ROM_START( pepp0265 ) /* Normal board : 4 of a Kind Bonus Poker (PP0265) */
3005/*
3006                                       5-K 2-4
3007PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3008------------------------------------------------------------------
3009 P101A      1    2    3    4    5   6  25  40  80  50 250    800
3010  % Range: 92.5-94.5%  Optimum: 96.9%  Hit Frequency: 45.5%
3011     Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only
3012*/
3013   ROM_REGION( 0x10000, "maincpu", 0 )
3014   ROM_LOAD( "pp0265_a46-a75.u68",   0x00000, 0x10000, CRC(dccb5e2f) SHA1(4c1ff0f79d9441d0b7e8b31f95def1056945eb96) ) /* Game Version: A46, Library Version: A75, Video Lib ver A0Y */
3015
3016   ROM_REGION( 0x020000, "gfx1", 0 )
3017   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3018   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3019   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3020   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3021
3022   ROM_REGION( 0x100, "proms", 0 )
3023   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3024ROM_END
3025
3026ROM_START( pepp0265a ) /* Normal board : 4 of a Kind Bonus Poker (PP0265) */
3027/*
3028                                       5-K 2-4
3029PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3030------------------------------------------------------------------
3031 P101A      1    2    3    4    5   6  25  40  80  50 250    800
3032  % Range: 92.5-94.5%  Optimum: 96.9%  Hit Frequency: 45.5%
3033     Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only
3034*/
3035   ROM_REGION( 0x10000, "maincpu", 0 )
3036   ROM_LOAD( "pp0265_a0n-a23.u68",   0x00000, 0x10000, CRC(7dad6907) SHA1(890bdafb8bf272e513e94c8016c9866ab39f8fa2) ) /* Game Version: A0N, Library Version: A23, Viedo Lib ver A0Y */
3037
3038   ROM_REGION( 0x020000, "gfx1", 0 )
3039   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3040   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3041   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3042   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3043
3044   ROM_REGION( 0x100, "proms", 0 )
3045   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3046ROM_END
3047
3048ROM_START( pepp0265b ) /* Normal board : 4 of a Kind Bonus Poker (PP0265) - Multi Regional / Multi Currency - Tournament Mode capable */
3049/*
3050                                       5-K 2-4
3051PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3052------------------------------------------------------------------
3053 P101A      1    2    3    4    5   6  25  40  80  50 250    800
3054  % Range: 92.5-94.5%  Optimum: 96.9%  Hit Frequency: 45.5%
3055     Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only
3056*/
3057   ROM_REGION( 0x10000, "maincpu", 0 )
3058   ROM_LOAD( "pp0265_987-a0v.u68",   0x00000, 0x10000, CRC(471e59c0) SHA1(02aedff3feaa6fe88cd6eebbd3cd335ae1240228) ) /* Game Version: 987, Library Version: A0V */
3059
3060   ROM_REGION( 0x020000, "gfx1", 0 )
3061   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
3062   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
3063   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
3064   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
3065
3066   ROM_REGION( 0x100, "proms", 0 )
3067   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3068ROM_END
3069
3070ROM_START( pepp0274 ) /* Normal board : Standard Draw Poker (PP0274) - Normal Poker & Tournament Mode capable */
3071/*
3072PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3073---------------------------------------------------------
3074  CA        1    2    3   4    6   9  25  50 250    800
3075  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 45.5%
3076     Programs Available: PP0274
3077*/
3078   ROM_REGION( 0x10000, "maincpu", 0 )
3079   ROM_LOAD( "pp0274_741-728.u68",   0x00000, 0x10000, CRC(cd0b2890) SHA1(5f859dbc8d747a198c735a2bff42279c874928b0) ) /* Game Version: 741, Library Version: 728, Viedo Lib ver: 728 */
3080
3081   ROM_REGION( 0x020000, "gfx1", 0 )
3082   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
3083   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
3084   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
3085   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
3086
3087   ROM_REGION( 0x100, "proms", 0 )
3088   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3089ROM_END
3090
3091ROM_START( pepp0288 ) /* Normal board : Standard Draw Poker (PP0288) - Spanish */
3092/*
3093PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3094----------------------------------------------------------
3095   KK       1    2    3    4    6   9  25  50 500    500
3096  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 45.5%
3097     Programs Available: PP0288
3098
3099Spanish version of PP0150
3100
3101*/
3102   ROM_REGION( 0x10000, "maincpu", 0 )
3103   ROM_LOAD( "pp0288_964-988.u68",   0x00000, 0x10000, CRC(f7e1cb4c) SHA1(651c4306764200611aae7280ce0a9756d42ccb21) ) /* Game Version: 964, Library Version: 988 */
3104
3105   ROM_REGION( 0x020000, "gfx1", 0 )
3106   ROM_LOAD( "mro-cg1152.u72",   0x00000, 0x8000, CRC(55aca7f6) SHA1(9a0b25908e4fee8346da4726f38993e233a2cb2f) )
3107   ROM_LOAD( "mgo-cg1152.u73",   0x08000, 0x8000, CRC(c5185314) SHA1(7fc385d2b44e68364f2b5a3702737c5d5fea5ea2) )
3108   ROM_LOAD( "mbo-cg1152.u74",   0x10000, 0x8000, CRC(bd19aef6) SHA1(77126ea73d0a5da4b8856b5ebcbbab84cfaef008) )
3109   ROM_LOAD( "mxo-cg1152.u75",   0x18000, 0x8000, CRC(d65f7362) SHA1(d56fa0d13126f1599d538c81a2c7ea1f3c94b62f) )
3110
3111   ROM_REGION( 0x100, "proms", 0 )
3112   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3113ROM_END
3114
3115ROM_START( pepp0290 ) /* Normal board : Deuces Wild Poker (PP0290) */
3116/*
3117                                        w/D     w/oD
3118PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3119------------------------------------------------------------
3120  P47A      1    2    2   3   4  13  16  25 200 250    800
3121  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.9%
3122     Programs Available: PP0290, X000224P & PP0224 - Non Double-up Only
3123*/
3124   ROM_REGION( 0x10000, "maincpu", 0 )
3125   ROM_LOAD( "pp0290_a0v-a2d.u68",   0x00000, 0x10000, CRC(e2e6451c) SHA1(fa83b7a6d6c4ba1b3ee95b48ab6c3594477e536d) ) /* Game Version: A0V, Library Version: A2D */
3126
3127   ROM_REGION( 0x020000, "gfx1", 0 )
3128   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
3129   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
3130   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
3131   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
3132
3133   ROM_REGION( 0x100, "proms", 0 )
3134   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3135ROM_END
3136
3137ROM_START( pepp0291 ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0291) */
3138/*
3139                                        w/D     w/oD
3140PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3141------------------------------------------------------------
3142  P62A      1    2    3   4   4   9  15  25 200 250    800
3143  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 44.4%
3144     Programs Available: PP0125, PP0418, X000291P & PP0291 - Non Double-up Only
3145*/
3146   ROM_REGION( 0x10000, "maincpu", 0 )
3147   ROM_LOAD( "pp0291_a0v-a2d.u68",   0x00000, 0x10000, CRC(4eabac97) SHA1(dc849bca8ac90536c361cd576ee81c50afd7071b) ) /* Game Version: A0V, Library Version: A2D */
3148
3149   ROM_REGION( 0x020000, "gfx1", 0 )
3150   ROM_LOAD( "mro-cg1215.u72",   0x00000, 0x8000, CRC(425f57be) SHA1(6d53ae86bec7189a35671a7f691e101a2ed4d8c4) ) /*  06/09/93   @ IGT  L93-1585  */
3151   ROM_LOAD( "mgo-cg1215.u73",   0x08000, 0x8000, CRC(0f66cd94) SHA1(9ac0cd01aca87e045c4fd6045ed907a092d6b2ee) )
3152   ROM_LOAD( "mbo-cg1215.u74",   0x10000, 0x8000, CRC(10f89e44) SHA1(cdc34970b0325a24cfd5c187a4b4dbf42be8fc93) )
3153   ROM_LOAD( "mxo-cg1215.u75",   0x18000, 0x8000, CRC(73c24e43) SHA1(f09beaf374ad371db2701767ce6ac5bdb13c445a) )
3154
3155   ROM_REGION( 0x100, "proms", 0 )
3156   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3157ROM_END
3158
3159ROM_START( pepp0409 ) /* Normal board : 4 of a Kind Bonus Poker (No Double-up) (PP0409) */
3160/*
3161                                       5-K 2-4
3162PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3163------------------------------------------------------------------
3164  P90A      1    2    3    4    5   7  25  40  80  50 250    800
3165  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
3166     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
3167*/
3168   ROM_REGION( 0x10000, "maincpu", 0 )
3169   ROM_LOAD( "pp0409_a45-a75.u68",   0x00000, 0x10000, CRC(a71fdad9) SHA1(a719787895ad035b2b930d2692930466a9bfb19d) ) /* Game Version: A46, Library Version: A75, Game Lib ver: A0Y */
3170
3171   ROM_REGION( 0x020000, "gfx1", 0 )
3172   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3173   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3174   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3175   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3176
3177   ROM_REGION( 0x100, "proms", 0 )
3178   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3179ROM_END
3180
3181ROM_START( pepp0410 ) /* Normal board : 4 of a Kind Bonus Poker (No Double-up) (PP0410) */
3182/*
3183                                       5-K 2-4
3184PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3185------------------------------------------------------------------
3186 P101A      1    2    3    4    5   6  25  40  80  50 250    800
3187  % Range: 92.5-94.5%  Optimum: 96.9%  Hit Frequency: 45.5%
3188     Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only
3189*/
3190   ROM_REGION( 0x10000, "maincpu", 0 )
3191   ROM_LOAD( "pp0410_a0n-a23.u68",   0x00000, 0x10000, CRC(474f4809) SHA1(8d88647ab4719fdcf6ec0800386f32574b1da66d) ) /* Game Version: A0N, Library Version: A23, Game Lib ver: A0Y */
3192
3193   ROM_REGION( 0x020000, "gfx1", 0 )
3194   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3195   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3196   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3197   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3198
3199   ROM_REGION( 0x100, "proms", 0 )
3200   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3201ROM_END
3202
3203ROM_START( pepp0417 ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0417) */
3204/*
3205                                        w/D     w/oD
3206PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3207------------------------------------------------------------
3208  P57A      1    2    3   4   4   8  10  20 200 250    800
3209  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
3210     Programs Available: PP0417, X000417P & PP0190 - Non Double-up Only
3211*/
3212   ROM_REGION( 0x10000, "maincpu", 0 )
3213   ROM_LOAD( "pp0417_a0v-a2d.u68",   0x00000, 0x10000, CRC(3681e606) SHA1(e8e9105247b144ce1050464cb6b0594c9e483f84) ) /* Game Version: A0V, Library Version: A2D */
3214
3215   ROM_REGION( 0x020000, "gfx1", 0 )
3216   ROM_LOAD( "mro-cg2133.u72",   0x00000, 0x8000, CRC(b21a789f) SHA1(c49f9b5f51c29bbc0e1392e86d6602bd44e46380) ) /*  02/02/95   @ IGT  L95-0276  */
3217   ROM_LOAD( "mgo-cg2133.u73",   0x08000, 0x8000, CRC(2b7db148) SHA1(d5ff5dde3589d28937d13dc5c4c38caa1ebf2d56) )
3218   ROM_LOAD( "mbo-cg2133.u74",   0x10000, 0x8000, CRC(6ed455b7) SHA1(e4f223606c19d09be501461f38520f423599e0a2) ) /* Supersedes CG1215 graphics set */
3219   ROM_LOAD( "mxo-cg2133.u75",   0x18000, 0x8000, CRC(095ea26d) SHA1(9bdd8afe67da2370c4ca2d8418f3afdaf7b557ff) )
3220
3221   ROM_REGION( 0x100, "proms", 0 )
3222   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3223ROM_END
3224
3225ROM_START( pepp0417a ) /* Normal board : Deuces Wild Poker (No Double-up) (PP0417) */
3226/*
3227                                        w/D     w/oD
3228PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3229------------------------------------------------------------
3230  P57A      1    2    3   4   4   8  10  20 200 250    800
3231  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
3232     Programs Available: PP0417, X000417P & PP0190 - Non Double-up Only
3233*/
3234   ROM_REGION( 0x10000, "maincpu", 0 )
3235   ROM_LOAD( "pp0417_961-984.u68",   0x00000, 0x10000, CRC(4a1e7899) SHA1(b6f243d275da70841482843e05c1be22fd80c25c) ) /* Game Version: 961, Library Version: 984 */
3236
3237   ROM_REGION( 0x020000, "gfx1", 0 )
3238   ROM_LOAD( "mro-cg2133.u72",   0x00000, 0x8000, CRC(b21a789f) SHA1(c49f9b5f51c29bbc0e1392e86d6602bd44e46380) ) /*  02/02/95   @ IGT  L95-0276  */
3239   ROM_LOAD( "mgo-cg2133.u73",   0x08000, 0x8000, CRC(2b7db148) SHA1(d5ff5dde3589d28937d13dc5c4c38caa1ebf2d56) )
3240   ROM_LOAD( "mbo-cg2133.u74",   0x10000, 0x8000, CRC(6ed455b7) SHA1(e4f223606c19d09be501461f38520f423599e0a2) ) /* Supersedes CG1215 graphics set */
3241   ROM_LOAD( "mxo-cg2133.u75",   0x18000, 0x8000, CRC(095ea26d) SHA1(9bdd8afe67da2370c4ca2d8418f3afdaf7b557ff) )
3242
3243   ROM_REGION( 0x100, "proms", 0 )
3244   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3245ROM_END
3246
3247ROM_START( pepp0419 ) /* Normal board : Standard Draw Poker - Auto Hold in Options (No Double-up) (PP0419) */
3248/*
3249PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3250----------------------------------------------------------
3251   BA       1    2    3    4    5   8  25  50 250    800
3252  % Range: 93.3-95.3%  Optimum: 97.3%  Hit Frequency: 45.5%
3253     Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only
3254*/
3255   ROM_REGION( 0x10000, "maincpu", 0 )
3256   ROM_LOAD( "pp0419_768-761.u68",   0x00000, 0x10000, CRC(204f9ffe) SHA1(adfdc8b22ba5cc69234ad88ab2f92393a5fb3aff) ) /* Game Version: 768, Library Version: 761, Game Lib ver: 761 */
3257
3258   ROM_REGION( 0x020000, "gfx1", 0 )
3259   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
3260   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
3261   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
3262   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
3263
3264   ROM_REGION( 0x100, "proms", 0 )
3265   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3266ROM_END
3267
3268ROM_START( pepp0420 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0420) */
3269/*
3270PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3271----------------------------------------------------------
3272   GA       1    2    3    4    5   6  25  50 250    800
3273  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
3274     Programs Available: PP0060, X000060P & PP0420 - Non Double-up Only
3275*/
3276   ROM_REGION( 0x10000, "maincpu", 0 )
3277   ROM_LOAD( "pp0420_896-914.u68",   0x00000, 0x10000, CRC(cdd923d2) SHA1(f7548159ea3c36c3fce481156ab0293d00f0fd0f) ) /* Game Version: 896, Library Version: 914 */
3278
3279   ROM_REGION( 0x020000, "gfx1", 0 )
3280   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
3281   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
3282   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
3283   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
3284
3285   ROM_REGION( 0x100, "proms", 0 )
3286   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3287ROM_END
3288
3289ROM_START( pepp0423 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0423) */
3290/*
3291PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3292----------------------------------------------------------
3293  P11A      1    2    3    4    5   9  25  50 250    800
3294  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
3295     Programs Available: PP0423
3296*/
3297   ROM_REGION( 0x10000, "maincpu", 0 )
3298   ROM_LOAD( "pp0423_836-847.u68",   0x00000, 0x10000, CRC(12eec557) SHA1(3721d068223262260ad22698e7dca0440becc53e) ) /* Game Version: 836, Library Version: 847 */
3299
3300   ROM_REGION( 0x020000, "gfx1", 0 )
3301   ROM_LOAD( "mro-cg740.u72",   0x00000, 0x8000, CRC(72667f6c) SHA1(89843f472cc0329317cfc643c63bdfd11234b194) )
3302   ROM_LOAD( "mgo-cg740.u73",   0x08000, 0x8000, CRC(7437254a) SHA1(bba166dece8af58da217796f81117d0b05752b87) )
3303   ROM_LOAD( "mbo-cg740.u74",   0x10000, 0x8000, CRC(92e8c33e) SHA1(05344664d6fdd3f4205c50fa4ca76fc46c18cf8f) )
3304   ROM_LOAD( "mxo-cg740.u75",   0x18000, 0x8000, CRC(ce4cbe0b) SHA1(4bafcd68be94a5deaae9661584fa0fc940b834bb) )
3305
3306   ROM_REGION( 0x100, "proms", 0 )
3307   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3308ROM_END
3309
3310ROM_START( pepp0426 ) /* Normal board : Joker Poker (No Double-up) (PP0426) */
3311/*
3312                                            w/J     w/oJ
3313PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3314----------------------------------------------------------------
3315   YD       1    1   1   3    5   7  15  50 100 200 400    940
3316  % Range: 92.7-94.7%  Optimum: 96.7%  Hit Frequency: 44.1%
3317     Programs Available: PP0568, X000568P & PP0426 - Non Double-up Only
3318*/
3319   ROM_REGION( 0x10000, "maincpu", 0 )
3320   ROM_LOAD( "pp0426_979-a0c.u68",   0x00000, 0x10000, CRC(0dca4bf1) SHA1(f2cfe250e78fc0995dda653d231f75090ff5c394) ) /* Game Version: 979, Library Version: A0C */
3321
3322   ROM_REGION( 0x020000, "gfx1", 0 )
3323   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3324   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3325   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3326   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3327
3328   ROM_REGION( 0x100, "proms", 0 )
3329   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3330ROM_END
3331
3332ROM_START( pepp0428 ) /* Normal board : Joker Poker (No Double-up) (PP0428) */
3333/*
3334                                            w/J     w/oJ
3335PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3336----------------------------------------------------------------
3337  P17A      1    1   2   3    4   5  20  40 100 200 500    800
3338  % Range: 91.5-92.5%  Optimum: 95.5%  Hit Frequency: 44.7%
3339     Programs Available: PP0459, X000459P & PP0428 - Non Double-up Only
3340*/
3341   ROM_REGION( 0x10000, "maincpu", 0 )
3342   ROM_LOAD( "pp0428_979-a0c.u68",   0x00000, 0x10000, CRC(a206a3bd) SHA1(48e1386027308684daee09370b5ee09d9eb645a8) ) /* Game Version: 979, Library Version: A0c */
3343
3344   ROM_REGION( 0x020000, "gfx1", 0 )
3345   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3346   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3347   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3348   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3349
3350   ROM_REGION( 0x100, "proms", 0 )
3351   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3352ROM_END
3353
3354ROM_START( pepp0429 ) /* Normal board : Joker Poker (Aces or Better) (No Double-up) (PP0429) */
3355/*
3356                                            w/J     w/oJ
3357PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3358----------------------------------------------------------------
3359  P18A      1    1   2   3    5   6  20  50 100 200 500    800
3360  % Range: 89.8-91.8%  Optimum: 93.8%  Hit Frequency: 37.6%
3361     Programs Available: PP0458, X000458P & PP0429 - Non Double-up Only
3362*/
3363   ROM_REGION( 0x10000, "maincpu", 0 )
3364   ROM_LOAD( "pp0429_979-a0c.u68",   0x00000, 0x10000, CRC(453484e7) SHA1(6ba80b72cdd8b3bd43c656400591f4d543a9d94f) ) /* Game Version: 979, Library Version: A0C */
3365
3366   ROM_REGION( 0x020000, "gfx1", 0 )
3367   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3368   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3369   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3370   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3371
3372   ROM_REGION( 0x100, "proms", 0 )
3373   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3374ROM_END
3375
3376ROM_START( pepp0431 ) /* Normal board : Deuces Joker Wild Poker (PP0431) - Multi Regional / Multi Currency - Tournament Mode capable */
3377/*
3378                                         With  w/o  w/o  With
3379                                         Wild  JKR  Wild JKR
3380PayTable   3K   STR  FL  FH  4K  SF  5K   RF    4D   RF   4D  (Bonus)
3381---------------------------------------------------------------------
3382  P76N      1    1    3   3   3   6   9   12    25  800  1000  2000
3383  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 50.4%
3384     Programs Available: PP0431, PP0812, PP0813, X000225P & PP0225 - Non Double-up Only
3385*/
3386   ROM_REGION( 0x10000, "maincpu", 0 )
3387   ROM_LOAD( "pp0431_a56-a7a.u68",   0x00000, 0x10000, CRC(34abee12) SHA1(165e6c3d8fb5d6d83217ae5acc35059ac44f6848) ) /* Game Version: A56, Library Version: A7A */
3388
3389   ROM_REGION( 0x020000, "gfx1", 0 )
3390   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
3391   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
3392   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
3393   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
3394
3395   ROM_REGION( 0x100, "proms", 0 )
3396   ROM_LOAD( "cap1215.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3397ROM_END
3398
3399ROM_START( pepp0434 ) /* Normal board : Bonus Poker Deluxe (PP0434) */
3400/*
3401PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3402----------------------------------------------------------
3403  P200A     1    1    3    4    6   8  80  50 250    800
3404  % Range: 94.5-96.5%  Optimum: 98.5%  Hit Frequency: 45.2%
3405     Programs Available: PP0434, X000434P & PP0713 - Non Double-up Only
3406*/
3407   ROM_REGION( 0x10000, "maincpu", 0 )
3408   ROM_LOAD( "pp0434_a45-a75.u68",   0x00000, 0x10000, CRC(e5c9ba19) SHA1(9a01457a54a0445a0f32affe2038366e681cada1) ) /* Game Version: A45, Library Version: A74 */
3409
3410   ROM_REGION( 0x020000, "gfx1", 0 )
3411   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3412   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3413   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3414   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3415
3416   ROM_REGION( 0x100, "proms", 0 )
3417   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3418ROM_END
3419
3420ROM_START( pepp0447 ) /* Normal board : Standard Draw Poker (PP0447) */
3421/*
3422PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3423---------------------------------------------------------
3424  CA        1    2    3   4    6   9  25  50 250    800
3425  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 45.5%
3426     Programs Available: PP0447, X000447P
3427*/
3428   ROM_REGION( 0x10000, "maincpu", 0 )
3429   ROM_LOAD( "pp0447_a45-a74.u68",   0x00000, 0x10000, CRC(0ef0bb6c) SHA1(d0ef7a83417054f05d32d0a93ed0d5d618f4dfb9) ) /* Game Version: A45, Library Version: A74 */
3430
3431   ROM_REGION( 0x020000, "gfx1", 0 )
3432   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3433   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3434   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3435   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3436
3437   ROM_REGION( 0x100, "proms", 0 )
3438   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3439ROM_END
3440
3441ROM_START( pepp0447a ) /* Normal board : Standard Draw Poker (PP0447) */
3442/*
3443PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3444---------------------------------------------------------
3445  CA        1    2    3   4    6   9  25  50 250    800
3446  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 45.5%
3447     Programs Available: PP0447, X000447P
3448*/
3449   ROM_REGION( 0x10000, "maincpu", 0 )
3450   ROM_LOAD( "pp0447_979-a0c.u68",   0x00000, 0x10000, CRC(a62748ea) SHA1(585049160f7983047dd13a1715d1edbf3b9778ea) ) /* Game Version: 979, Library Version: A0C */
3451
3452   ROM_REGION( 0x020000, "gfx1", 0 )
3453   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3454   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3455   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3456   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3457
3458   ROM_REGION( 0x100, "proms", 0 )
3459   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3460ROM_END
3461
3462ROM_START( pepp0449 ) /* Normal board : Standard Draw Poker (PP0449) */
3463/*
3464PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3465----------------------------------------------------------
3466  P11A      1    2    3    4    5   9  25  50 250    800
3467  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
3468     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
3469*/
3470   ROM_REGION( 0x10000, "maincpu", 0 )
3471   ROM_LOAD( "pp0449_a45-a74.u68",   0x00000, 0x10000, CRC(44699ad7) SHA1(89d9d3107384a6b474c51a34bd34936c36c4b3f5) ) /* Game Version: A45, Library Version: A75 */
3472
3473   ROM_REGION( 0x020000, "gfx1", 0 )
3474   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3475   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3476   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3477   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3478
3479   ROM_REGION( 0x100, "proms", 0 )
3480   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3481ROM_END
3482
3483ROM_START( pepp0449a ) /* Normal board : Standard Draw Poker (PP0449) - Multi Regional / Multi Currency in English / Spanish - Tournament Mode capable */
3484/*
3485PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3486----------------------------------------------------------
3487  P11A      1    2    3    4    5   9  25  50 250    800
3488  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
3489     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
3490*/
3491   ROM_REGION( 0x10000, "maincpu", 0 )
3492   ROM_LOAD( "pp0449_a19-a2x.u68",   0x00000, 0x10000, CRC(0bde4a5b) SHA1(dacce2a56ede8145fc22cad4cc75967aaea3b6e4) ) /* Game Version: A19, Library Version: A2X */
3493
3494   ROM_REGION( 0x020000, "gfx1", 0 )
3495   ROM_LOAD( "mro-cg1426.u74",  0x00000, 0x8000, CRC(b99b3856) SHA1(a7de74bc712c68ae3da2d546c49dcd70e54c26a1) )
3496   ROM_LOAD( "mgo-cg1426.u73",  0x08000, 0x8000, CRC(d7145ea0) SHA1(7b23cf7840bab11f7ba9229e990e2c9dd995d59f) )
3497   ROM_LOAD( "mbo-cg1426.u72",  0x10000, 0x8000, CRC(5fd94bc5) SHA1(b2a23a6a8eb23fbefd7b16e7afb7eddad5f6656c) )
3498   ROM_LOAD( "mxo-cg1426.u75",  0x18000, 0x8000, CRC(74bc1556) SHA1(9afc00ec4643baa448e0131e1c7aeb3da4739f59) )
3499
3500   ROM_REGION( 0x100, "proms", 0 )
3501   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3502ROM_END
3503
3504ROM_START( pepp0452 ) /* Normal board : Double Deuces Wild Poker (PP0452) */
3505/*
3506                                        w/D     wo/D
3507PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3508------------------------------------------------------------
3509  P236A     1    2    2   3   4  11  16  25 400 250    800
3510  % Range: 95.6-97.6%  Optimum: 99.6%  Hit Frequency: 45.1%
3511     Programs Available: PP0452, X000452P
3512*/
3513   ROM_REGION( 0x10000, "maincpu", 0 )
3514   ROM_LOAD( "pp0452_726-706.u68",   0x00000, 0x10000, CRC(26413947) SHA1(66bc2fb3dd62aa9d8ab125665747d331a55e1868) ) /* Game Version: 726, Library Version: 706 */
3515
3516   ROM_REGION( 0x020000, "gfx1", 0 )
3517   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
3518   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
3519   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
3520   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
3521
3522   ROM_REGION( 0x100, "proms", 0 )
3523   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3524ROM_END
3525
3526ROM_START( pepp0454 ) /* Normal board : Bonus Poker Deluxe (PP0454) */
3527/*
3528PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3529----------------------------------------------------------
3530  P253A     1    1    3    4    5   7  80  50 250    800
3531  % Range: 92.3-94.3%  Optimum: 96.3%  Hit Frequency: 45.2%
3532     Programs Available: PP0454, X000454P
3533*/
3534   ROM_REGION( 0x10000, "maincpu", 0 )
3535   ROM_LOAD( "pp0454_a45-a75.u68",   0x00000, 0x10000, CRC(f15f751d) SHA1(6e73625bf3fe0461a171f72ab5478439207516b3) ) /* Game Version: A45, Library Version: A74 */
3536
3537   ROM_REGION( 0x020000, "gfx1", 0 )
3538   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3539   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3540   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3541   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3542
3543   ROM_REGION( 0x100, "proms", 0 )
3544   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3545ROM_END
3546
3547ROM_START( pepp0455 ) /* Normal board : Joker Poker (PP0455) */
3548/*
3549                                            w/J     w/oJ
3550PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3551----------------------------------------------------------------
3552 P245D      1    1   2   3    5   7  18  50 100 200 400    940
3553  % Range: 95.3-97.3%  Optimum: 99.3%  Hit Frequency: 44.2%
3554     Programs Available: PP0455, X000455P
3555*/
3556   ROM_REGION( 0x10000, "maincpu", 0 )
3557   ROM_LOAD( "pp0455_a45-a74.u68",   0x00000, 0x10000, CRC(1b543c9d) SHA1(ac5409c5fa069b7b19fb82cf04da55c45bc95aa6) ) /* Game Version: A45, Library Version: A74 */
3558
3559   ROM_REGION( 0x020000, "gfx1", 0 )
3560   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3561   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3562   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3563   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3564
3565   ROM_REGION( 0x100, "proms", 0 )
3566   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3567ROM_END
3568
3569ROM_START( pepp0458 ) /* Normal board : Joker Poker (Aces or Better) (PP0458) */
3570/*
3571                                            w/J     w/oJ
3572PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3573----------------------------------------------------------------
3574  P18A      1    1   2   3    5   6  20  50 100 200 500    800
3575  % Range: 89.8-91.8%  Optimum: 93.8%  Hit Frequency: 37.6%
3576     Programs Available: PP0458, X000458P & PP0429 - Non Double-up Only
3577*/
3578   ROM_REGION( 0x10000, "maincpu", 0 )
3579   ROM_LOAD( "pp0458_a45-a74.u68",   0x00000, 0x10000, CRC(856e97ee) SHA1(ca5db52290f1b25139e1afc16ecb5dc4be897771) ) /* Game Version: A45, Library Version: A74 */
3580
3581   ROM_REGION( 0x020000, "gfx1", 0 )
3582   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3583   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3584   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3585   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3586
3587   ROM_REGION( 0x100, "proms", 0 )
3588   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3589ROM_END
3590
3591ROM_START( pepp0488 ) /* Normal board : Standard Draw Poker (PP0488) - 01/12/95   @ IGT  L95-0175 */
3592/*
3593PayTable   Js+  TP  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3594--------------------------------------------------------
3595  ????      1    1   2   4    5   8  25  50 250   1000
3596  % Range: 98.4-100.4%  Optimum: 102.4%  Hit Frequency: ???
3597
3598NOTE: Will work with the standard CG740 + CAP740 graphics for a non-localized game.
3599*/
3600   ROM_REGION( 0x10000, "maincpu", 0 )
3601   ROM_LOAD( "pp0488_a30-a4v.u68",   0x00000, 0x10000, CRC(99849f5d) SHA1(643a303beda1c4a4619803071df5e612ab922eb9) ) /* Game Version: A30, Library Version: A4V */
3602
3603   ROM_REGION( 0x020000, "gfx1", 0 )
3604   ROM_LOAD( "mro-cg2153.u72",   0x00000, 0x8000, CRC(004c9c8e) SHA1(ec3fa9d2c658de59e722d9979513d6b0c71d5742) ) /*  05/01/95   @ IGT  L95-1123  */
3605   ROM_LOAD( "mgo-cg2153.u73",   0x08000, 0x8000, CRC(e6843b35) SHA1(2d5219a3cb054ce8b470797c0496c7e24e94ed81) )
3606   ROM_LOAD( "mbo-cg2153.u74",   0x10000, 0x8000, CRC(e3e28611) SHA1(d040f1df6203dc0bd6a79a391fb90fb930f8dd1a) ) /* Custom Arizona Charlie's Casino graphics */
3607   ROM_LOAD( "mxo-cg2153.u75",   0x18000, 0x8000, CRC(3ae44f7e) SHA1(00d625b60bffef6ce622cb50a3aa93b92131f578) )
3608
3609   ROM_REGION( 0x100, "proms", 0 )
3610   ROM_LOAD( "cap2153.u50", 0x0000, 0x0100, CRC(d02fca7e) SHA1(4384b4238d487b4c763983b27381f4c6c08eb605) ) /* BPROM type N82S135N verified */
3611ROM_END
3612
3613ROM_START( pepp0508 ) /* Normal board : Loose Deuce Poker (PP0508) */
3614/*
3615                                       w/D     W/oD
3616PayTable   3K  STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
3617-----------------------------------------------------------
3618  P313A     1    2   2   3   4   8  12  25 500 250    800
3619  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.2%
3620     Programs Available: PP0508, X000508P
3621*/
3622   ROM_REGION( 0x10000, "maincpu", 0 )
3623   ROM_LOAD( "pp0508_872-888.u68",   0x00000, 0x10000, CRC(41da6c1e) SHA1(75dc178bc48a58ccf7e87d91419c5dcd99af2d58) ) /* Game Version: 872, Library Version: 888 */
3624
3625   ROM_REGION( 0x020000, "gfx1", 0 )
3626   ROM_LOAD( "mro-cg773.u72",   0x00000, 0x8000, CRC(73827e49) SHA1(f2b3f58aeac62b36ba60a408cf04c691b0564ace) )
3627   ROM_LOAD( "mgo-cg773.u73",   0x08000, 0x8000, CRC(af569952) SHA1(d28ae1c216a99bedc4315e61151934f53b932ef4) )
3628   ROM_LOAD( "mbo-cg773.u74",   0x10000, 0x8000, CRC(3b59799b) SHA1(b6da6e719f5cc475f2f7112d6a8fe346ea5d511e) )
3629   ROM_LOAD( "mxo-cg773.u75",   0x18000, 0x8000, CRC(75da0cd8) SHA1(4fb4eda9ae8e59884201368c7d8e4ff8b9967a4f) )
3630
3631   ROM_REGION( 0x100, "proms", 0 )
3632   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
3633ROM_END
3634
3635ROM_START( pepp0509 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0509) */
3636/*
3637PayTable   Js+  TP  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3638--------------------------------------------------------
3639  ????      1    2   3    4   6  10  25  50 250    800
3640  % Range: 95.3-97.3%  Optimum: 99.3%  Hit Frequency: 45.4%
3641     Programs Available: PP0509
3642*/
3643   ROM_REGION( 0x10000, "maincpu", 0 )
3644   ROM_LOAD( "pp0509_783-779.u68",   0x00000, 0x10000, CRC(a7c9b166) SHA1(3565070b9beba9aa50662253cafafa00f4f5abfa) ) /* Game Version: 782, Library Version: 779 */
3645
3646   ROM_REGION( 0x020000, "gfx1", 0 )
3647   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3648   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3649   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3650   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3651
3652   ROM_REGION( 0x100, "proms", 0 )
3653   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3654ROM_END
3655
3656ROM_START( pepp0510 ) /* Normal board : Standard Draw Poker (PP0510) */
3657/*
3658PayTable   Js+  TP  3K  STR  FL  FH  4K  SF  RF  (Bonus)
3659--------------------------------------------------------
3660  ????      1    2   3    4   7   9  25  50 250    800
3661  % Range: 95.3-97.3%  Optimum: 99.3%  Hit Frequency: 45.4%
3662     Programs Available: PP0510
3663*/
3664   ROM_REGION( 0x10000, "maincpu", 0 )
3665   ROM_LOAD( "pp0510_782-779.u68",   0x00000, 0x10000, CRC(40ce3464) SHA1(230725ac3dd6eb6f891d4abfbcb4c41592531d4e) ) /* Game Version: 782, Library Version: 779 */
3666
3667   ROM_REGION( 0x020000, "gfx1", 0 )
3668   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3669   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3670   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3671   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3672
3673   ROM_REGION( 0x100, "proms", 0 )
3674   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3675ROM_END
3676
3677ROM_START( pepp0514 ) /* Normal board : Double Bonus Poker (PP0514) */
3678/*
3679                                      5-K 2-4
3680PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3681-----------------------------------------------------------------
3682  P323A     1    1    3   5    7   9  50  80 160  50 250    800
3683  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
3684     Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only
3685*/
3686   ROM_REGION( 0x10000, "maincpu", 0 )
3687   ROM_LOAD( "pp0514_a46-a75.u68",   0x00000, 0x10000, CRC(53ca68c7) SHA1(2c46c89c6347bb8cf80b0ff85daabd0e925c87ec) ) /* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
3688
3689   ROM_REGION( 0x020000, "gfx1", 0 )
3690   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3691   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3692   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3693   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3694
3695   ROM_REGION( 0x100, "proms", 0 )
3696   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3697ROM_END
3698
3699ROM_START( pepp0514a ) /* Normal board : Double Bonus Poker (PP0514) */
3700/*
3701                                      5-K 2-4
3702PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3703-----------------------------------------------------------------
3704  P323A     1    1    3   5    7   9  50  80 160  50 250    800
3705  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
3706     Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only
3707*/
3708   ROM_REGION( 0x10000, "maincpu", 0 )
3709   ROM_LOAD( "pp0514_a0n-a0y.u68",   0x00000, 0x10000, CRC(2d54260d) SHA1(cf891c5624331f9b2ef7fbb1e084cfc00f407691) ) /* Game Version: A0N, Library Version: A0Y */
3710
3711   ROM_REGION( 0x020000, "gfx1", 0 )
3712   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3713   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3714   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3715   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3716
3717   ROM_REGION( 0x100, "proms", 0 )
3718   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3719ROM_END
3720
3721ROM_START( pepp0514b ) /* Normal board : Double Bonus Poker (PP0514) */
3722/*
3723                                      5-K 2-4
3724PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3725-----------------------------------------------------------------
3726  P323A     1    1    3   5    7   9  50  80 160  50 250    800
3727  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
3728     Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only
3729*/
3730   ROM_REGION( 0x10000, "maincpu", 0 )
3731   ROM_LOAD( "pp0514_813-824.u68",   0x00000, 0x10000, CRC(a4093ba7) SHA1(f4691af323a14bd4856aed84f1333bac285513ba) ) /* Game Version: 813, Library Version: 824 */
3732
3733   ROM_REGION( 0x020000, "gfx1", 0 )
3734   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3735   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3736   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3737   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3738
3739   ROM_REGION( 0x100, "proms", 0 )
3740   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3741ROM_END
3742
3743ROM_START( pepp0515 ) /* Normal board : Double Bonus Poker (PP0515) */
3744/*
3745                                      5-K 2-4
3746PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3747-----------------------------------------------------------------
3748  P324A     1    1    3   5    7  10  50  80 160  50 250    800
3749  % Range: 96.2-98.2%  Optimum: 100.2%  Hit Frequency: 43.3%
3750     Programs Available: PP0515, X000515P & PP0539 - Non Double-up Only
3751*/
3752   ROM_REGION( 0x10000, "maincpu", 0 )
3753   ROM_LOAD( "pp0515_989-974.u68",   0x00000, 0x10000, CRC(bc9654ab) SHA1(ecf2401bfbfcfa22354cde517cf425a8db8ea961) ) /* Game Version: 989, Library Version: 974 */
3754
3755   ROM_REGION( 0x020000, "gfx1", 0 )
3756   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3757   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3758   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3759   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3760
3761   ROM_REGION( 0x100, "proms", 0 )
3762   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3763ROM_END
3764
3765ROM_START( pepp0515a ) /* Normal board : Double Bonus Poker (PP0515) */
3766/*
3767                                      5-K 2-4
3768PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3769-----------------------------------------------------------------
3770  P324A     1    1    3   5    7  10  50  80 160  50 250    800
3771  % Range: 96.2-98.2%  Optimum: 100.2%  Hit Frequency: 43.3%
3772     Programs Available: PP0515, X000515P & PP0539 - Non Double-up Only
3773*/
3774   ROM_REGION( 0x10000, "maincpu", 0 )
3775   ROM_LOAD( "pp0515_813-824.u68",   0x00000, 0x10000, CRC(6c06b0ea) SHA1(7907d10d7290080c33e46c9644f24d1d2fc6b3ff) ) /* Game Version: 813, Library Version: 824 */
3776
3777   ROM_REGION( 0x020000, "gfx1", 0 )
3778   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3779   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3780   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3781   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3782
3783   ROM_REGION( 0x100, "proms", 0 )
3784   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3785ROM_END
3786
3787ROM_START( pepp0516 ) /* Normal board : Double Bonus Poker (PP0516) */
3788/*
3789                                      5-K 2-4
3790PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3791-----------------------------------------------------------------
3792  P325A     1    2    3   4    5   8  50  80 160  50 250    800
3793  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 44.5%
3794     Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only
3795*/
3796   ROM_REGION( 0x10000, "maincpu", 0 )
3797   ROM_LOAD( "pp0516_a46-a75.u68",   0x00000, 0x10000, CRC(6e226711) SHA1(71930ec43c4b75ca50971242be79459976882546) ) /* Game Version: A46, Library Version: A75 */
3798
3799   ROM_REGION( 0x020000, "gfx1", 0 )
3800   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3801   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3802   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3803   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3804
3805   ROM_REGION( 0x100, "proms", 0 )
3806   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3807ROM_END
3808
3809ROM_START( pepp0516a ) /* Normal board : Double Bonus Poker (PP0516) */
3810/*
3811                                      5-K 2-4
3812PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3813-----------------------------------------------------------------
3814  P325A     1    2    3   4    5   8  50  80 160  50 250    800
3815  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 44.5%
3816     Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only
3817*/
3818   ROM_REGION( 0x10000, "maincpu", 0 )
3819   ROM_LOAD( "pp0516_974-a0y.u68",   0x00000, 0x10000, CRC(d9da6e13) SHA1(421678d9cb42daaf5b21074cc3900db914dd26cf) ) /* Game Version: 974, Library Version: A0Y */
3820
3821   ROM_REGION( 0x020000, "gfx1", 0 )
3822   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3823   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3824   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3825   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3826
3827   ROM_REGION( 0x100, "proms", 0 )
3828   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3829ROM_END
3830
3831ROM_START( pepp0516b ) /* Normal board : Double Bonus Poker (PP0516) - Multi Regional / Multi Currency - Tournament Mode capable */
3832/*
3833                                      5-K 2-4
3834PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3835-----------------------------------------------------------------
3836  P325A     1    2    3   4    5   8  50  80 160  50 250    800
3837  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 44.5%
3838     Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only
3839*/
3840   ROM_REGION( 0x10000, "maincpu", 0 )
3841   ROM_LOAD( "pp0516_a57-a7b.u68",   0x00000, 0x10000, CRC(66e16822) SHA1(552b5ff582197f39823c8c87a9429d3fc2117814) ) /* Game Version: A57, Library Version: A7B */
3842
3843   ROM_REGION( 0x020000, "gfx1", 0 )
3844   ROM_LOAD( "mro-cg1348.u72",  0x00000, 0x8000, CRC(b2411211) SHA1(fb78da8c92be7b0ce174aecd0392875fdd3653e7) )
3845   ROM_LOAD( "mgo-cg1348.u73",  0x08000, 0x8000, CRC(06e97f8a) SHA1(bcdd33aa36746d71fb6ce804eb222ecd7b27d0d6) )
3846   ROM_LOAD( "mbo-cg1348.u74",  0x10000, 0x8000, CRC(5a4547fd) SHA1(ec28731253733b4ecdff341120ae8572995cffc6) )
3847   ROM_LOAD( "mxo-cg1348.u75",  0x18000, 0x8000, CRC(cdd8485f) SHA1(4af2f270ed40955bb11f0e427f4ad614fcb3157c) )
3848
3849   ROM_REGION( 0x100, "proms", 0 )
3850   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3851ROM_END
3852
3853ROM_START( pepp0531 ) /* Normal board : Joker Poker (PP0531) */
3854/*
3855                                            w/J     w/oJ
3856PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3857----------------------------------------------------------------
3858 P182A      1    1   2   3    5   8  15  50 100 200 400    800
3859  % Range: 93.6-95.6%  Optimum: 97.6%  Hit Frequency: 44.1%
3860     Programs Available: PP0531
3861*/
3862   ROM_REGION( 0x10000, "maincpu", 0 )
3863   ROM_LOAD( "pp0531_979-a0c.u68",   0x00000, 0x10000, CRC(6138e095) SHA1(6075613b5d818c26cdc5da1d05cff3af5d4cbf01) ) /* Game Version: 979, Library Version: A0C */
3864
3865   ROM_REGION( 0x020000, "gfx1", 0 )
3866   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3867   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3868   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3869   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3870
3871   ROM_REGION( 0x100, "proms", 0 )
3872   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3873ROM_END
3874
3875ROM_START( pepp0536 ) /* Normal board : Joker Poker (PP0536) */
3876/*
3877                                            w/J     w/oJ
3878PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3879----------------------------------------------------------------
3880 P244D      1    1   2   3    5   7  17  50 100 200 400    940
3881  % Range: 94.4-96.4%  Optimum: 98.4%  Hit Frequency: 44.1%
3882     Programs Available: PP0536, X000536P
3883*/
3884   ROM_REGION( 0x10000, "maincpu", 0 )
3885   ROM_LOAD( "pp0536_a45-a74.u68",   0x00000, 0x10000, CRC(413f34fa) SHA1(1800819af18b33936482562bfe694009861a740f) ) /* Game Version: A45, Library Version: A74 */
3886
3887   ROM_REGION( 0x020000, "gfx1", 0 )
3888   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3889   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3890   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3891   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3892
3893   ROM_REGION( 0x100, "proms", 0 )
3894   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
3895ROM_END
3896
3897ROM_START( pepp0538 ) /* Normal board : Double Bonus Poker (No Double-up) (PP0538) */
3898/*
3899                                      5-K 2-4
3900PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3901-----------------------------------------------------------------
3902  P323A     1    1    3   5    7   9  50  80 160  50 250    800
3903  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
3904     Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only
3905*/
3906   ROM_REGION( 0x10000, "maincpu", 0 )
3907   ROM_LOAD( "pp0538_a46-a75.u68",   0x00000, 0x10000, CRC(f9e8dbe7) SHA1(dd745a48764f7da7314236016bf9c7fa67a78fad) ) /* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
3908
3909   ROM_REGION( 0x020000, "gfx1", 0 )
3910   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3911   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3912   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3913   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3914
3915   ROM_REGION( 0x100, "proms", 0 )
3916   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3917ROM_END
3918
3919ROM_START( pepp0540 ) /* Normal board : Double Bonus Poker (No Double-up) (PP0540) */
3920/*
3921                                      5-K 2-4
3922PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
3923-----------------------------------------------------------------
3924  P325A     1    2    3   4    5   8  50  80 160  50 250    800
3925  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 44.5%
3926     Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only
3927*/
3928   ROM_REGION( 0x10000, "maincpu", 0 )
3929   ROM_LOAD( "pp0540_974-a0y.u68",   0x00000, 0x10000, CRC(b39e0c13) SHA1(a0dd05eb2927792efb1f432dbbd4a9a4fd6ad4c9) ) /* Game Version: 974, Library Version: A0Y */
3930
3931   ROM_REGION( 0x020000, "gfx1", 0 )
3932   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
3933   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
3934   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
3935   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
3936
3937   ROM_REGION( 0x100, "proms", 0 )
3938   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3939ROM_END
3940
3941ROM_START( pepp0542 ) /* Normal board : One Eyed Jacks (PP0542) Use SET001 to set Denomination for this game */
3942/*
3943                                             With    w/o
3944                                             Wild    Wild
3945PayTable    As  2PR  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3946-----------------------------------------------------------------
3947  ????       1   1    1   2    4   5  10  50 100 100 400   1600
3948  % Range: 94.8-96.8%  Optimum: 98.8%  Hit Frequency: 44.5%
3949*/
3950   ROM_REGION( 0x10000, "maincpu", 0 )
3951   ROM_LOAD( "pp0542_905-923.u68",   0x00000, 0x10000, CRC(f4fe3db5) SHA1(18521a569aae8d89e82f9709edc03badae153dd4) ) /* Game Version: 905, Library Version: 923 */
3952
3953   ROM_REGION( 0x020000, "gfx1", 0 )
3954   ROM_LOAD( "mro-cg2020.u72",  0x00000, 0x8000, CRC(3dc6f3f6) SHA1(c701f3b0fa16a614c9a4094f385c3f75d72cef3b) ) /* CG2020, like 20/20 vision for 1 Eyed Jacks :-) */
3955   ROM_LOAD( "mgo-cg2020.u73",  0x08000, 0x8000, CRC(71847102) SHA1(a860ef28351f0b7b82c05db26712d50a6f5d3732) ) /* Superseded by CG2243 which also works */
3956   ROM_LOAD( "mbo-cg2020.u74",  0x10000, 0x8000, CRC(710c717c) SHA1(4e2d463c9f94d446149374d5f66f88d403bd6064) )
3957   ROM_LOAD( "mxo-cg2020.u75",  0x18000, 0x8000, CRC(78d6eac3) SHA1(09b614abe5f5509f3050c2cec94dc794e2b4db0d) )
3958
3959   ROM_REGION( 0x100, "proms", 0 )
3960   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3961ROM_END
3962
3963ROM_START( pepp0568 ) /* Normal board : Joker Poker (PP0568) */
3964/*
3965                                            w/J     w/oJ
3966PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
3967----------------------------------------------------------------
3968   YD       1    1   1   3    5   7  15  50 100 200 400    940
3969  % Range: 92.7-94.7%  Optimum: 96.7%  Hit Frequency: 44.1%
3970     Programs Available: PP0568, X000568P & PP0426 - Non Double-up Only
3971*/
3972   ROM_REGION( 0x10000, "maincpu", 0 )
3973   ROM_LOAD( "pp0568_a45-a74.u68",   0x00000, 0x10000, CRC(a1015eef) SHA1(074dcd966a5da6867532c6e90e2bc98404c2247b) ) /* Game Version: A45, Library Version: A74 */
3974
3975   ROM_REGION( 0x020000, "gfx1", 0 )
3976   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3977   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
3978   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
3979   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
3980
3981   ROM_REGION( 0x100, "proms", 0 )
3982   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
3983ROM_END
3984
3985ROM_START( pepp0585 ) /* Normal board : Standard Draw Poker (No Double-up) (PP0585) */
3986/*
3987
3988PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
3989----------------------------------------------------------
3990  P11A      1    2    3    4    5   9  25  50 250    800
3991  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
3992     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
3993*/
3994   ROM_REGION( 0x10000, "maincpu", 0 )
3995   ROM_LOAD( "pp0585_956-979.u68",   0x00000, 0x10000, CRC(419633df) SHA1(f755e7b6cdd95444a02d2172789d9d73f31f56c4) ) /* Game Version: 956, Library Version: 979 */
3996
3997   ROM_REGION( 0x020000, "gfx1", 0 )
3998   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /*  08/31/94   @ IGT  L95-0146  */
3999   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) )
4000   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) ) /* Supersedes CG740 */
4001   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
4002
4003   ROM_REGION( 0x100, "proms", 0 )
4004   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4005ROM_END
4006
4007ROM_START( pepp0713 ) /* Normal board : Bonus Poker Deluxe (No Double-up) (PP0713) */
4008/*
4009PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4010----------------------------------------------------------
4011  P200A     1    1    3    4    6   8  80  50 250    800
4012  % Range: 94.5-96.5%  Optimum: 98.5%  Hit Frequency: 45.2%
4013     Programs Available: PP0434, X000434P & PP0713 - Non Double-up Only
4014*/
4015   ROM_REGION( 0x10000, "maincpu", 0 )
4016   ROM_LOAD( "pp0713_979-a0c.u68",   0x00000, 0x10000, CRC(f3413bc6) SHA1(9cad89a5ab4be1f969e9acbafe2016069d4ee307) ) /* Game Version: 979, Library Version: A0C */
4017
4018   ROM_REGION( 0x020000, "gfx1", 0 )
4019   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4020   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4021   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4022   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4023
4024   ROM_REGION( 0x100, "proms", 0 )
4025   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4026ROM_END
4027
4028ROM_START( pepp0725 ) /* Normal board : Double Bonus Poker (PP0725) */
4029/*
4030                                      5-K 2-4
4031PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
4032-----------------------------------------------------------------
4033  P434A     1    1    3   4    6   9  50  80 160  50 250    800
4034  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.9%
4035     Programs Available: PP0725, X000725P
4036*/
4037   ROM_REGION( 0x10000, "maincpu", 0 )
4038   ROM_LOAD( "pp0725_a46-a75.u68",   0x00000, 0x10000, CRC(6679f095) SHA1(4cca3103610a75c8e515957ebea0cd75052a1100) )/* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
4039
4040   ROM_REGION( 0x020000, "gfx1", 0 )
4041   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4042   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4043   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4044   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4045
4046   ROM_REGION( 0x100, "proms", 0 )
4047   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4048ROM_END
4049
4050ROM_START( pepp0725a ) /* Normal board : Double Bonus Poker (PP0725) */
4051/*
4052                                      5-K 2-4
4053PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
4054-----------------------------------------------------------------
4055  P434A     1    1    3   4    6   9  50  80 160  50 250    800
4056  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.9%
4057     Programs Available: PP0725, X000725P
4058*/
4059   ROM_REGION( 0x10000, "maincpu", 0 )
4060   ROM_LOAD( "pp0725_a0n-a23.u68",   0x00000, 0x10000, CRC(70ecbe80) SHA1(d44acbaccfe9a8f7cb1217d071353d221f5baa35) )/* Game Version: A0N, Library Version: A23, Video Lib ver: A0Y */
4061
4062   ROM_REGION( 0x020000, "gfx1", 0 )
4063   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4064   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4065   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4066   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4067
4068   ROM_REGION( 0x100, "proms", 0 )
4069   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4070ROM_END
4071
4072ROM_START( pepp0726 ) /* Normal board : Double Bonus Poker (PP0726) */
4073/*
4074                                      5-K 2-4
4075PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
4076-----------------------------------------------------------------
4077  P435A     1    1    3   4    5   8  50  80 160  50 250    800
4078  % Range: 90.2-92.2%  Optimum: 94.2%  Hit Frequency: 45.1%
4079     Programs Available: PP0726, X000726P
4080*/
4081   ROM_REGION( 0x10000, "maincpu", 0 )
4082   ROM_LOAD( "pp0726_a46-a75.u68",   0x00000, 0x10000, CRC(7d80c8d7) SHA1(18ca72925c8bb5f5dcc00fa4133816f242292e1d) )/* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
4083
4084   ROM_REGION( 0x020000, "gfx1", 0 )
4085   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4086   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4087   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4088   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4089
4090   ROM_REGION( 0x100, "proms", 0 )
4091   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4092ROM_END
4093
4094ROM_START( pepp0728 ) /* Normal board : Double Bonus Poker (PP0728) - 11/30/95   @ IGT  L96-0247 */
4095/*
4096                                      5-K 2-4
4097PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
4098-----------------------------------------------------------------
4099P437A/4K/5  1    1    3   4    5   6  50  80 160  50 250    800
4100  % Range: 87.1-89.1%  Optimum: 91.1%  Hit Frequency: 45.0%
4101     Programs Available: PP0728
4102*/
4103   ROM_REGION( 0x10000, "maincpu", 0 )
4104   ROM_LOAD( "pp0728_a46-a75.u68",   0x00000, 0x10000, CRC(ecfbdb77) SHA1(072dc5d59b6a705591045162612b5101e85e1b10) )/* Game Version: A46, Library Version: A75, Video Lib ver: A0Y */
4105
4106   ROM_REGION( 0x020000, "gfx1", 0 )
4107   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4108   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4109   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4110   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4111
4112   ROM_REGION( 0x100, "proms", 0 )
4113   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4114ROM_END
4115
4116ROM_START( pepp0760 ) /* Normal board : Double Down Stud Poker (PP0760) */
4117/*
4118PayTable  8s-10s  Js+  2PR  3K   STR  FL  FH  4K  SF   RF  (Bonus)
4119------------------------------------------------------------------
4120  ????      1      2    3    4    6    9  12  50 200  1000  4000
4121*/
4122   ROM_REGION( 0x10000, "maincpu", 0 )
4123   ROM_LOAD( "pp0760_a4v-a6d.u68",   0x00000, 0x10000, CRC(1c26076c) SHA1(612ac66bbb0827b81dc9c6bc23fa7558445481bc) ) /* Game Version: A4V, Library Version: A6D */
4124
4125   ROM_REGION( 0x020000, "gfx1", 0 )
4126   ROM_LOAD( "mro-cg2015.u72",   0x00000, 0x8000, CRC(7f73ee5c) SHA1(b6c5d423c8176555c1f32605c328ffbfcf94b656) ) /* Verified CG set for PP0760 set */
4127   ROM_LOAD( "mgo-cg2015.u73",   0x08000, 0x8000, CRC(de270e0e) SHA1(41b207f9380f623ab64dc42224275cccd43417ee) )
4128   ROM_LOAD( "mbo-cg2015.u74",   0x10000, 0x8000, CRC(02e623d9) SHA1(4c689293f5c5a8eb0b17861cf433ae1e01d83545) )
4129   ROM_LOAD( "mxo-cg2015.u75",   0x18000, 0x8000, CRC(0c96b7fc) SHA1(adde93f08db0b957daf77d57a7ab60af3b667f25) )
4130
4131   ROM_REGION( 0x100, "proms", 0 )
4132   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4133ROM_END
4134
4135ROM_START( pepp0763 ) /* Normal board : 4 of a Kind Bonus Poker (PP0763) */
4136/*
4137                                       5-K 2-4
4138PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
4139------------------------------------------------------------------
4140 P597A      1    1    3    5    8  10  25  40  80  50 250    800
4141  % Range: 90.2-92.2%  Optimum: 94.2%  Hit Frequency: 42.7%
4142     Programs Available: PP0763, X000763P
4143*/
4144   ROM_REGION( 0x10000, "maincpu", 0 )
4145   ROM_LOAD( "pp0763_a46-a75.u68",   0x00000, 0x10000, CRC(8e329f30) SHA1(bf271164a4e90e11630a236fb55c70639bdb3e11) ) /* Game Version: A46, Library Version: A75, Game Lib ver: A0Y */
4146
4147   ROM_REGION( 0x020000, "gfx1", 0 )
4148   ROM_LOAD( "mro-cg2003.u72",  0x00000, 0x8000, CRC(0d425f48) SHA1(b60aaf3f4bd76f75f72f6e8dda724bdf795cb521) ) /*  08/30/94   @ IGT  L95-0145  */
4149   ROM_LOAD( "mgo-cg2003.u73",  0x08000, 0x8000, CRC(add0afc4) SHA1(0519bf2f36cb67140933b2c533e625544f27d16b) )
4150   ROM_LOAD( "mbo-cg2003.u74",  0x10000, 0x8000, CRC(8649dec0) SHA1(0024d3a8fd85279552910b14b69b225bda93957f) )
4151   ROM_LOAD( "mxo-cg2003.u75",  0x18000, 0x8000, CRC(904631cd) SHA1(d280a2f16b51a04b3f601db3535980a765c60e6f) )
4152
4153   ROM_REGION( 0x100, "proms", 0 )
4154   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4155ROM_END
4156
4157ROM_START( pepp0775 ) /* Normal board : Royal Deuces Poker or Royal Sevens Poker?? (PP0775) */
4158/*
4159Paytable for Royal Deuces lined up with paytable from PP0775:
4160
4161                                        w/D     w/oD
4162PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
4163------------------------------------------------------------
4164  ????      1    1    3   4   5   8  25  80 250 250    800
4165  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: ???
4166     Programs Available: PP0775
4167*/
4168   ROM_REGION( 0x10000, "maincpu", 0 )
4169   ROM_LOAD( "pp0775_a44-a73.u68",   0x00000, 0x10000, CRC(79a56642) SHA1(dfde6c12551e4f12a59e31c14fbfb9edb57e4fac) ) /* Game Version: A44, Library Version: A73 */
4170
4171   ROM_REGION( 0x020000, "gfx1", 0 )
4172   ROM_LOAD( "mro-cg2xxx.u72",  0x00000, 0x8000, NO_DUMP ) /* Unknown set needed for correct paytable graphics */
4173   ROM_LOAD( "mgo-cg2xxx.u73",  0x08000, 0x8000, NO_DUMP )
4174   ROM_LOAD( "mbo-cg2xxx.u74",  0x10000, 0x8000, NO_DUMP )
4175   ROM_LOAD( "mxo-cg2xxx.u75",  0x18000, 0x8000, NO_DUMP )
4176   ROM_LOAD( "mro-cg2312.u77",  0x00000, 0x8000, CRC(29a9d408) SHA1(af8c18833ea268b80fabf3b539f35c6782a0309d) ) /* WRONG?!?! Use until the correct set is verified! */
4177   ROM_LOAD( "mgo-cg2312.u78",  0x08000, 0x8000, CRC(b5ea2602) SHA1(82ee6d45dbc53ccf2d2a956daa83f41bb4a27384) ) /* Gives full paytable, but the hands listed are wrong */
4178   ROM_LOAD( "mbo-cg2312.u79",  0x10000, 0x8000, CRC(e349202c) SHA1(ef6a904112361425aef5824ae983c15d3456dc49) )
4179   ROM_LOAD( "mxo-cg2312.u80",  0x18000, 0x8000, CRC(1e0d3df8) SHA1(716d6bd2b41ef41a7da393e805651c378a16e00e) ) /* These graphics don't seem to work with anything else */
4180
4181   ROM_REGION( 0x200, "proms", 0 )
4182   ROM_LOAD( "capx2312.u43", 0x0000, 0x0200, CRC(66971da6) SHA1(6984a68bc2f01009ad6a7a0705c00e715c29bb65) )
4183ROM_END
4184
4185ROM_START( pepp0816 ) /* Normal board : Treasure Chest Poker (PP0816) */
4186/*
4187PayTable   Js+  2PR  3K   STR  FL  FH  4K* SF  RF  (Bonus)
4188----------------------------------------------------------
4189  ????      1    2    3    4    5   7  25  50 250    800
4190  % Range: 94.4-96.4%  Optimum: 98.4%  Hit Frequency: 45.5%
4191     Programs Available: PP0816
4192
41934K* - Treasure Chest bonus round for MAX Bet 4 of a Kind. Possible payouts: 140, 180, 250, 500 or 5000 Credits
4194
4195 The Treasure Chest routine works as follows:
4196  1. The chest picked is used for animation purposes only. The chest DOES NOT determine the payout.
4197  2. A call is made to the random number generator for a number between 0 and 399 (400 possibilities)
4198  3. The number generated is used through a look up table to determine the bonus prize:
4199
4200Number Generated  Award   Odds   Chance
4201-----------------------------------------
4202               0  5000   0.25%   1 in 400
4203   1 through  12  500    3.00%  12 in 400
4204  13 through  28  250    4.00%  16 in 400
4205  29 through  88  180   15.00%  60 in 400
4206  89 through 399  140   77.75% 311 in 400
4207
4208Overall average for the 4 of a Kind bonus is 173.35 credits
4209
4210*/
4211   ROM_REGION( 0x10000, "maincpu", 0 )
4212   ROM_LOAD( "pp0816_a5f-a7k.u68",   0x00000, 0x10000, CRC(a1e21b56) SHA1(aa0a730b2ed48612c3b20831b1aa698a45f557c0) ) /* Game Version: A5F, Library Version: A7K */
4213
4214   ROM_REGION( 0x020000, "gfx1", 0 )
4215   ROM_LOAD( "mro-cg2xxx.u72",  0x00000, 0x8000, NO_DUMP ) /* Unknown set needed for Treasure Chest bonus round graphics */
4216   ROM_LOAD( "mgo-cg2xxx.u73",  0x08000, 0x8000, NO_DUMP )
4217   ROM_LOAD( "mbo-cg2xxx.u74",  0x10000, 0x8000, NO_DUMP )
4218   ROM_LOAD( "mxo-cg2xxx.u75",  0x18000, 0x8000, NO_DUMP )
4219   ROM_LOAD( "mro-cg2004.u72",  0x00000, 0x8000, CRC(e5e40ea5) SHA1(e0d9e50b30cc0c25c932b2bf444990df1fb2c38c) ) /* WRONG CG set!! MAX Bet 4K "BONUS" graphics is missing and */
4220   ROM_LOAD( "mgo-cg2004.u73",  0x08000, 0x8000, CRC(12607f1e) SHA1(248e1ecee4e735f5943c50f8c350ca95b81509a7) ) /* all treasure chest graphics missing for bonus & attract screens */
4221   ROM_LOAD( "mbo-cg2004.u74",  0x10000, 0x8000, CRC(78c3fb9f) SHA1(2b9847c511888de507a008dec981778ca4dbcd6c) )
4222   ROM_LOAD( "mxo-cg2004.u75",  0x18000, 0x8000, CRC(5aaa4480) SHA1(353c4ce566c944406fce21f2c5045c856ef7a609) )
4223
4224   ROM_REGION( 0x100, "proms", 0 )
4225   ROM_LOAD( "cap904.u50", 0x0000, 0x0100, CRC(0eec8336) SHA1(a6585c978dbc2f4f3818e3a5b92f8c28be23c4c0) ) /* BPROM type N82S135N verified */
4226ROM_END
4227
4228ROM_START( peip0028 ) /* Normal board :  Joker Poker - French (IP0028) */
4229/*
4230                                            w/J     w/oJ
4231PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4232----------------------------------------------------------------
4233 PI106B     1    1   2   3    5   6  20  50 100 200 500   1000
4234  % Range: 89.5-91.5%  Optimum: 93.5%  Hit Frequency: 39.2%
4235     Programs Available: IP0028
4236
4237NOTE: Program states Theoretical Percentage (Pourcentage Theorique) of 90.2% but it's really 93.5%
4238      This program set is superseded by IP0074
4239*/
4240   ROM_REGION( 0x10000, "maincpu", 0 )
4241   ROM_LOAD( "ip0028_ipp023.u68",   0x00000, 0x8000, CRC(011ddb51) SHA1(8734ddd1f06986efdb0bd83b2bc0a2303273dba9) )
4242   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4243
4244   ROM_REGION( 0x020000, "gfx1", 0 )
4245   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4246   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4247   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4248   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4249
4250   ROM_REGION( 0x100, "proms", 0 )
4251   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4252ROM_END
4253
4254ROM_START( peip0029 ) /* Normal board : Joker Poker - French (IP0029) */
4255/*
4256                                            w/J     w/oJ
4257PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4258----------------------------------------------------------------
4259 PI105A     1    1   2   3    4   5  20  40 100 200 500    800
4260  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.3%
4261     Programs Available: IP0029
4262
4263NOTE: Program states Theoretical Percentage (Pourcentage Theorique) of 93.3% but it's really 95.0%
4264      This program set is superseded by IP0062
4265*/
4266   ROM_REGION( 0x10000, "maincpu", 0 )
4267   ROM_LOAD( "ip0029_ipp023.u68",   0x00000, 0x8000, CRC(b79f91b0) SHA1(b6bed855497153121cb11d84836a737743124635) )
4268   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4269
4270   ROM_REGION( 0x020000, "gfx1", 0 )
4271   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4272   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4273   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4274   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4275
4276   ROM_REGION( 0x100, "proms", 0 )
4277   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4278ROM_END
4279
4280ROM_START( peip0031 ) /* Normal board : Standard Draw Poker - French (IP0031) */
4281/*
4282PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4283----------------------------------------------------------
4284  PI34G     1    2    3    4    5   6  25  50 250    333
4285  % Range: 88.2-90.2%  Optimum: 92.2%  Hit Frequency: 45.5%
4286     Programs Available: IP0031
4287*/
4288   ROM_REGION( 0x10000, "maincpu", 0 )
4289   ROM_LOAD( "ip0031_ipp023.u68",   0x00000, 0x8000, CRC(06a22972) SHA1(189de42bf4611bc4cda08f9fa2c1f03b40222681) )
4290   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4291
4292   ROM_REGION( 0x020000, "gfx1", 0 )
4293   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4294   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4295   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4296   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4297
4298   ROM_REGION( 0x100, "proms", 0 )
4299   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4300ROM_END
4301
4302ROM_START( peip0041 ) /* Normal board : Double Deuces Wild - French (IP0041) */
4303/*
4304                                       w/J     w/oJ
4305PayTable   3K  STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
4306-----------------------------------------------------------
4307 PI13A      1   2    2   3   4  11  16  25 400 250    800
4308  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.1%
4309     Programs Available: IP0041
4310
4311"Wild Deuces" are referred to as "Joker" in the program
4312
4313*/
4314   ROM_REGION( 0x10000, "maincpu", 0 )
4315   ROM_LOAD( "ip0041_ip103-il103.u68",   0x00000, 0x10000, CRC(cf3e66eb) SHA1(d93c25954e3a73533025b7e85562fe2e19021b61) ) /* Game Version: IP103, Library Version: IL103 */
4316
4317   ROM_REGION( 0x020000, "gfx1", 0 )
4318   ROM_LOAD( "mro-cg1293.u72",  0x00000, 0x8000, CRC(de4b2287) SHA1(5f8232748dd59c9dd6278b68ff35a100f4561d5e) )
4319   ROM_LOAD( "mgo-cg1293.u73",  0x08000, 0x8000, CRC(1399b459) SHA1(d4952452b5155902cb172be1df0be91a547a59a9) )
4320   ROM_LOAD( "mbo-cg1293.u74",  0x10000, 0x8000, CRC(76152774) SHA1(3356e144d8dacbd3a1a72dda282b22e4fee3c782) )
4321   ROM_LOAD( "mxo-cg1293.u75",  0x18000, 0x8000, CRC(fe0ad2a7) SHA1(54ec1b5c3446bf70bdca521583ed2a1eb1557004) )
4322
4323   ROM_REGION( 0x100, "proms", 0 )
4324   ROM_LOAD( "cap773.u50", 0x0000, 0x0100, CRC(294b7b10) SHA1(a405a4b8547b713c5c02dacb19e7354095a7b584) )
4325ROM_END
4326
4327ROM_START( peip0051 ) /* Normal board : Joker Poker - French (IP0051) */
4328/*
4329                                            w/J     w/oJ
4330PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4331----------------------------------------------------------------
4332 PI106A     1    1   2   3    5   6  20  50 100 200 500    800
4333  % Range: 89.0-91.0%  Optimum: 93.0%  Hit Frequency: 39.2%
4334     Programs Available: IP0051, X002319P
4335*/
4336   ROM_REGION( 0x10000, "maincpu", 0 )
4337   ROM_LOAD( "ip0051_ip101-il101.u68",   0x00000, 0x10000, CRC(25149a28) SHA1(211772751263ad30f073a23de0a81ef6ab72a85f) ) /* Game Version: IP101, Library Version: IL101 */
4338
4339   ROM_REGION( 0x020000, "gfx1", 0 )
4340   ROM_LOAD( "mro-cg2094.u72",   0x00000, 0x8000, CRC(7c1810e0) SHA1(ec11740f393178d4f5c0506a64e3f996bc6d867c) )
4341   ROM_LOAD( "mgo-cg2094.u73",   0x08000, 0x8000, CRC(9f4dfe16) SHA1(bf5fdabd72fe259c7a489e77bd7a3d5a14062ce1) )
4342   ROM_LOAD( "mbo-cg2094.u74",   0x10000, 0x8000, CRC(697fa8cf) SHA1(4dff9a110ac987a25518295dfdc46eb3a46c3215) )
4343   ROM_LOAD( "mxo-cg2094.u75",   0x18000, 0x8000, CRC(d1a9c781) SHA1(8ee6a2fab99be7b2b95603c6420788c5d1143788) )
4344
4345   ROM_REGION( 0x100, "proms", 0 )
4346   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
4347ROM_END
4348
4349ROM_START( peip0058 ) /* Normal board : Standard Draw Poker - French (IP0058) */
4350/*
4351PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4352----------------------------------------------------------
4353  ????      1    1    3    6    7  10  25 100 250    800
4354  % Range: 88.0-90.0%  Optimum: 92.0%  Hit Frequency: 45.6%
4355     Programs Available: IP0058
4356*/
4357   ROM_REGION( 0x10000, "maincpu", 0 )
4358   ROM_LOAD( "ip0058_ipp023.u68",   0x00000, 0x8000, CRC(db2aae6c) SHA1(398a52a73d4a0f71c09dfc4c7cf0c0a5c65ee941) )
4359   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4360
4361   ROM_REGION( 0x020000, "gfx1", 0 )
4362   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4363   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4364   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4365   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4366
4367   ROM_REGION( 0x100, "proms", 0 )
4368   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4369ROM_END
4370
4371ROM_START( peip0062 ) /* Normal board : Joker Poker - French (IP0062) */
4372/*
4373                                            w/J     w/oJ
4374PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4375----------------------------------------------------------------
4376 PI105A     1    1   2   3    4   5  20  40 100 200 500    800
4377  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.3%
4378     Programs Available: IP0062, X002318P
4379*/
4380   ROM_REGION( 0x10000, "maincpu", 0 )
4381   ROM_LOAD( "ip0062_ip105-il105.u68",   0x00000, 0x10000, CRC(bda6ae80) SHA1(8287306cd85fbe13f92fed24f0ca1c92dc19ed35) ) /* Game Version: IP105, Library Version: IL105 */
4382
4383   ROM_REGION( 0x020000, "gfx1", 0 )
4384   ROM_LOAD( "mro-cg2094.u72",   0x00000, 0x8000, CRC(7c1810e0) SHA1(ec11740f393178d4f5c0506a64e3f996bc6d867c) )
4385   ROM_LOAD( "mgo-cg2094.u73",   0x08000, 0x8000, CRC(9f4dfe16) SHA1(bf5fdabd72fe259c7a489e77bd7a3d5a14062ce1) )
4386   ROM_LOAD( "mbo-cg2094.u74",   0x10000, 0x8000, CRC(697fa8cf) SHA1(4dff9a110ac987a25518295dfdc46eb3a46c3215) )
4387   ROM_LOAD( "mxo-cg2094.u75",   0x18000, 0x8000, CRC(d1a9c781) SHA1(8ee6a2fab99be7b2b95603c6420788c5d1143788) )
4388
4389   ROM_REGION( 0x100, "proms", 0 )
4390   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
4391ROM_END
4392
4393ROM_START( peip0074 ) /* Normal board : Joker Poker - French (IP0074) */
4394/*
4395                                            w/J     w/oJ
4396PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4397----------------------------------------------------------------
4398 PI106B     1    1   2   3    5   6  20  50 100 200 500   1000
4399  % Range: 89.5-91.5%  Optimum: 93.5%  Hit Frequency: 39.2%
4400     Programs Available: IP0074, X002320P
4401*/
4402   ROM_REGION( 0x10000, "maincpu", 0 )
4403   ROM_LOAD( "ip0074_ip105-il105.u68",   0x00000, 0x10000, CRC(3f3400ea) SHA1(27ae0a353afdf5a1707cfeeca1a3c9f31999d832) ) /* Game Version: IP105, Library Version: IL105 */
4404
4405   ROM_REGION( 0x020000, "gfx1", 0 )
4406   ROM_LOAD( "mro-cg2094.u72",   0x00000, 0x8000, CRC(7c1810e0) SHA1(ec11740f393178d4f5c0506a64e3f996bc6d867c) )
4407   ROM_LOAD( "mgo-cg2094.u73",   0x08000, 0x8000, CRC(9f4dfe16) SHA1(bf5fdabd72fe259c7a489e77bd7a3d5a14062ce1) )
4408   ROM_LOAD( "mbo-cg2094.u74",   0x10000, 0x8000, CRC(697fa8cf) SHA1(4dff9a110ac987a25518295dfdc46eb3a46c3215) )
4409   ROM_LOAD( "mxo-cg2094.u75",   0x18000, 0x8000, CRC(d1a9c781) SHA1(8ee6a2fab99be7b2b95603c6420788c5d1143788) )
4410
4411   ROM_REGION( 0x100, "proms", 0 )
4412   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
4413ROM_END
4414
4415ROM_START( peip0079 ) /* Normal board : Standard Draw Poker - French (IP0079) */
4416/*
4417PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4418----------------------------------------------------------
4419 PI112A     1    1    3    5    7  10  25  80 250    800
4420  % Range: 86.1-88.1%  Optimum: 90.1%  Hit Frequency: 45.6%
4421     Programs Available: IP0079
4422*/
4423   ROM_REGION( 0x10000, "maincpu", 0 )
4424   ROM_LOAD( "ip0079_ip105-il105.u68",   0x00000, 0x10000, CRC(5b50369f) SHA1(f1478dc4bac5b392888c9a4232a5afa36f71be88) ) /* Game Version: IP105, Library Version: IL105 */
4425
4426   ROM_REGION( 0x020000, "gfx1", 0 )
4427   ROM_LOAD( "mro-cg2094.u72",   0x00000, 0x8000, CRC(7c1810e0) SHA1(ec11740f393178d4f5c0506a64e3f996bc6d867c) )
4428   ROM_LOAD( "mgo-cg2094.u73",   0x08000, 0x8000, CRC(9f4dfe16) SHA1(bf5fdabd72fe259c7a489e77bd7a3d5a14062ce1) )
4429   ROM_LOAD( "mbo-cg2094.u74",   0x10000, 0x8000, CRC(697fa8cf) SHA1(4dff9a110ac987a25518295dfdc46eb3a46c3215) )
4430   ROM_LOAD( "mxo-cg2094.u75",   0x18000, 0x8000, CRC(d1a9c781) SHA1(8ee6a2fab99be7b2b95603c6420788c5d1143788) )
4431
4432   ROM_REGION( 0x100, "proms", 0 )
4433   ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
4434ROM_END
4435
4436ROM_START( peip0101 ) /* Normal board :  Joker Poker - French (IP0101) */
4437/*
4438                                            w/J     w/oJ
4439PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4440----------------------------------------------------------------
4441  ????      1    1   2   3    4   6  20  50 100 200 500    800
4442  % Range: 91.9-93.9%  Optimum: 95.9%  Hit Frequency: 45.3%
4443     Programs Available: IP0101
4444*/
4445   ROM_REGION( 0x10000, "maincpu", 0 )
4446   ROM_LOAD( "ip0101_ipp023.u68",   0x00000, 0x8000, CRC(22697a40) SHA1(8f7491cb0ddde4ee6460cc141005a47d197e4d1b) )
4447   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4448
4449   ROM_REGION( 0x020000, "gfx1", 0 )
4450   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4451   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4452   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4453   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4454
4455   ROM_REGION( 0x100, "proms", 0 )
4456   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4457ROM_END
4458
4459ROM_START( peip0103 ) /* Normal board : Joker Poker - French (IP0103) */
4460/*
4461                                            w/J     w/oJ
4462PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4463----------------------------------------------------------------
4464  ????      1    1   2   3    4   5  20  40 100 200 500   1000
4465  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 45.3%
4466     Programs Available: IP0103
4467*/
4468   ROM_REGION( 0x10000, "maincpu", 0 )
4469   ROM_LOAD( "ip0103_ipp023.u68",   0x00000, 0x8000, CRC(b7c9db4e) SHA1(d0cdd63296fbd82a0f2548d2ff177540903be29d) )
4470   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4471
4472   ROM_REGION( 0x020000, "gfx1", 0 )
4473   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4474   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4475   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4476   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4477
4478   ROM_REGION( 0x100, "proms", 0 )
4479   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4480ROM_END
4481
4482ROM_START( peip0105 ) /* Normal board :  Joker Poker - French (IP0105) */
4483/*
4484                                            w/J     w/oJ
4485PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4486----------------------------------------------------------------
4487  ????      1    1   2   3    4   6  15  40 100 200 500    800
4488  % Range: 87.2-89.2%  Optimum: 91.2%  Hit Frequency: 45.3%
4489     Programs Available: IP0105
4490*/
4491   ROM_REGION( 0x10000, "maincpu", 0 )
4492   ROM_LOAD( "ip0105_ipp023.u68",   0x00000, 0x8000, CRC(c6d7db20) SHA1(f9c46c2bda068d627fa874bcbaeef5f2ba1a3039) )
4493   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4494
4495   ROM_REGION( 0x020000, "gfx1", 0 )
4496   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4497   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4498   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4499   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4500
4501   ROM_REGION( 0x100, "proms", 0 )
4502   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4503ROM_END
4504
4505ROM_START( peip0108 ) /* Normal board : Standard Draw Poker - French (IP0108) */
4506/*
4507PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4508----------------------------------------------------------
4509  ????      1    2    3    4    6   9  25  50 250    800
4510  % Range: 94.2-96.2%  Optimum: 98.2%  Hit Frequency: 45.6%
4511     Programs Available: IP0108
4512*/
4513   ROM_REGION( 0x10000, "maincpu", 0 )
4514   ROM_LOAD( "ip0108_ipp023.u68",   0x00000, 0x8000, CRC(b3d6ce51) SHA1(3550e9fb13c3b3edf7ac08dcc992029401265baa) )
4515   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4516
4517   ROM_REGION( 0x020000, "gfx1", 0 )
4518   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4519   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4520   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4521   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4522
4523   ROM_REGION( 0x100, "proms", 0 )
4524   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4525ROM_END
4526
4527ROM_START( peip0111 ) /* Normal board : Joker Poker - French (IP0111) */
4528/*
4529                                            w/J     w/oJ
4530PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4531----------------------------------------------------------------
4532  ????      1    1   2   3    4   5  20  50 100 200 500   1000
4533  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.3%
4534     Programs Available: IP0111
4535*/
4536   ROM_REGION( 0x10000, "maincpu", 0 )
4537   ROM_LOAD( "ip0111_ipp023.u68",   0x00000, 0x8000, CRC(783461de) SHA1(ea60853481af04dadc81e1be36587c41da0f9c4f) )
4538   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4539
4540   ROM_REGION( 0x020000, "gfx1", 0 )
4541   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4542   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4543   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4544   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4545
4546   ROM_REGION( 0x100, "proms", 0 )
4547   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4548ROM_END
4549
4550ROM_START( peip0112 ) /* Normal board : Standard Draw Poker - French (IP0112) */
4551/*
4552PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4553----------------------------------------------------------
4554  ????      1    2    3    4    5   6  25  50 250    800
4555  % Range: 90.0-92.0%  Optimum: 94.0%  Hit Frequency: 45.6%
4556     Programs Available: IP0112
4557*/
4558   ROM_REGION( 0x10000, "maincpu", 0 )
4559   ROM_LOAD( "ip0112_ipp023.u68",   0x00000, 0x8000, CRC(ae24b4e8) SHA1(d904f54d83f3e3404a4a4a3fecc65e7b2acda148) )
4560   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4561
4562   ROM_REGION( 0x020000, "gfx1", 0 )
4563   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4564   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4565   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4566   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4567
4568   ROM_REGION( 0x100, "proms", 0 )
4569   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4570ROM_END
4571
4572ROM_START( peip0114 ) /* Normal board : Standard Draw Poker - French (IP0114) */
4573/*
4574PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4575----------------------------------------------------------
4576  PI34A     1    2    3    4    5   8  25  50 250    800
4577  % Range: 91.1-93.1%  Optimum: 96.3%  Hit Frequency: 45.6%
4578     Programs Available: IP0114
4579*/
4580   ROM_REGION( 0x10000, "maincpu", 0 )
4581   ROM_LOAD( "ip0114_ipp023.u68",   0x00000, 0x8000, CRC(047f2e60) SHA1(e18aa8e66e2eb21144e2a8c825a6c23322dd7e64) )
4582   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4583
4584   ROM_REGION( 0x020000, "gfx1", 0 )
4585   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4586   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4587   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4588   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4589
4590   ROM_REGION( 0x100, "proms", 0 )
4591   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4592ROM_END
4593
4594ROM_START( peip0115 ) /* Normal board :  Joker Poker - French (IP0115) */
4595/*
4596                                            w/J     w/oJ
4597PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
4598----------------------------------------------------------------
4599  ????      1    1   2   3    5   6  20  50 100 200 500    800
4600  % Range: 94.1-96.1%  Optimum: 98.1%  Hit Frequency: 45.3%
4601     Programs Available: IP0115
4602*/
4603   ROM_REGION( 0x10000, "maincpu", 0 )
4604   ROM_LOAD( "ip0115_ipp023.u68",   0x00000, 0x8000, CRC(3f5d8a67) SHA1(e197bf4439f8e92328cde81ea8bd103397c741a7) )
4605   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4606
4607   ROM_REGION( 0x020000, "gfx1", 0 )
4608   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4609   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4610   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4611   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4612
4613   ROM_REGION( 0x100, "proms", 0 )
4614   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4615ROM_END
4616
4617ROM_START( peip0116 ) /* Normal board : Standard Draw Poker - French (IP0116) */
4618/*
4619PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4620----------------------------------------------------------
4621  PI34B     1    2    3    4    5   6  25  50 250   1000
4622  % Range: 90.4-92.4%  Optimum: 94.4%  Hit Frequency: 45.6%
4623     Programs Available: IP0116
4624*/
4625   ROM_REGION( 0x10000, "maincpu", 0 )
4626   ROM_LOAD( "ip0116_ipp023.u68",   0x00000, 0x8000, CRC(ab5bf95b) SHA1(6aa36d83682cd2170465af0c6eab0952b2f1cfa8) )
4627   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4628
4629   ROM_REGION( 0x020000, "gfx1", 0 )
4630   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4631   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4632   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4633   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4634
4635   ROM_REGION( 0x100, "proms", 0 )
4636   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4637ROM_END
4638
4639ROM_START( peip0118 ) /* Normal board : Standard Draw Poker - French (IP0118) */
4640/*
4641PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4642----------------------------------------------------------
4643  ????      1    2    3    4    5   9  25  50 250    800
4644  % Range: 93.4-95.4%  Optimum: 97.4%  Hit Frequency: 45.6%
4645     Programs Available: IP0118
4646*/
4647   ROM_REGION( 0x10000, "maincpu", 0 )
4648   ROM_LOAD( "ip0118_ipp023.u68",   0x00000, 0x8000, CRC(e3ffb758) SHA1(6bb2f031b833c00ad1071014641eb7104d7d268f) )
4649   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4650
4651   ROM_REGION( 0x020000, "gfx1", 0 )
4652   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4653   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4654   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4655   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4656
4657   ROM_REGION( 0x100, "proms", 0 )
4658   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4659ROM_END
4660
4661ROM_START( peip0120 ) /* Normal board : Standard Draw Poker - French (IP0120) */
4662/*
4663PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
4664----------------------------------------------------------
4665  ????      1    2    3    4    5   7  25  50 250    800
4666  % Range: 91.1-93.1%  Optimum: 95.1%  Hit Frequency: 45.6%
4667     Programs Available: IP0120
4668*/
4669   ROM_REGION( 0x10000, "maincpu", 0 )
4670   ROM_LOAD( "ip0120_ipp023.u68",   0x00000, 0x8000, CRC(a836cc58) SHA1(ee49961b3782d5bfd6c4f7cd453b04fee014ae02) )
4671   ROM_RELOAD(                      0x08000, 0x8000) /* 32K version built using earlier gaming libraries */
4672
4673   ROM_REGION( 0x020000, "gfx1", 0 )
4674   ROM_LOAD( "mro-cg820.u72",   0x00000, 0x8000, CRC(2638e91f) SHA1(13dfd29b4fcf7862fc497975ccf65a9aee618839) )
4675   ROM_LOAD( "mgo-cg820.u73",   0x08000, 0x8000, CRC(1fe4820e) SHA1(27d376ad78f3d05672a842665675ac1a0535b6bf) )
4676   ROM_LOAD( "mbo-cg820.u74",   0x10000, 0x8000, CRC(97756bb3) SHA1(cdaa5d3ce50b75799429d270c1b79fc2f91e2e2b) )
4677   ROM_LOAD( "mxo-cg820.u75",   0x18000, 0x8000, CRC(57aa951f) SHA1(72b290976774634ccbe081699650f8c60fd7d169) )
4678
4679   ROM_REGION( 0x100, "proms", 0 )
4680   ROM_LOAD( "cap656.u50", 0x0000, 0x0100, CRC(038cabc6) SHA1(c6514b4f9dbed6ab2631f563f7e00648661ebdbb) )
4681ROM_END
4682
4683ROM_START( pebe0014 ) /* Normal board : Blackjack (BE0014) */
4684/*
4685Paytable ID: BJ7
4686
4687Deal: 1 Deck (52 cards)
4688      Shuffled before each hand
4689
4690Progressive Jackpot: None
4691
4692Game Rules:
4693  1. Dealer stands on any 17 or more
4694  2. Blackjack pays 2 for 1, all other wins pay 2 for 1
4695  3. Bet returned on pushes
4696  4. Player wins on six (6) cards totaling 21 or less
4697  5. Split allowed on 1st two cards if a pair, Aces only receive one card
4698  6. Insurance if dealer has an Ace showing
4699  7. Surrender only on 1st two cards and if dealer has no Ace (pays 1/2 of original bet)
4700  8. Double Down only on the 1st two cards
4701  9. Insurances pays 3 for 1
4702
4703Optimum percentage payout: 98.3%
4704
4705In game features that can be enabled/disabled:
4706  Auto Bet
4707  Double Down
4708
4709Known to exist:
4710 BE0013 508-544 (Non Double-up version of BE0014)
4711 BE0013 528-A22 (Non Double-up version of BE0014)
4712 BE0014 526-906
4713 BE0014 527-936
4714 BE0017 532-A22
4715*/
4716   ROM_REGION( 0x10000, "maincpu", 0 )
4717   ROM_LOAD( "be0014_528-a22.u68",   0x00000, 0x10000, CRC(232b32b7) SHA1(a3af9414577642fedc23b4c1911901cd31e9d6e0) ) /* Game Version: 528, Library Version: A22 */
4718
4719   ROM_REGION( 0x020000, "gfx1", 0 )
4720   ROM_LOAD( "mro-cg2036.u72",  0x00000, 0x8000, CRC(0a168d06) SHA1(7ed4fb5c7bcacab077bcec030f0465c6eaf3ce1c) )
4721   ROM_LOAD( "mgo-cg2036.u73",  0x08000, 0x8000, CRC(826b4090) SHA1(34390484c0faffe9340fd93d273b9292d09f97fd) )
4722   ROM_LOAD( "mbo-cg2036.u74",  0x10000, 0x8000, CRC(46aac851) SHA1(28d84b49c6cebcf2894b5a15d935618f84093caa) )
4723   ROM_LOAD( "mxo-cg2036.u75",  0x18000, 0x8000, CRC(60204a56) SHA1(2e3420da9e79ba304ca866d124788f84861380a7) )
4724
4725   ROM_REGION( 0x100, "proms", 0 )
4726   ROM_LOAD( "cap707.u50", 0x0000, 0x0100, CRC(9851ba36) SHA1(5a0a43c1e212ae8c173102ede9c57a3d95752f99) )
4727ROM_END
4728
4729ROM_START( peke1012 ) /* Normal board : Keno 1-10 Spot (KE1012) - Payout 90.27%, Paytable 90-P */
4730   ROM_REGION( 0x10000, "maincpu", 0 )
4731   ROM_LOAD( "ke1012_576-a3u.u68",   0x00000, 0x10000, CRC(470e8c10) SHA1(f8a65a3a73477e9e9d2f582eeefa93b470497dfa) ) /* Game Version: 576, Library Version: A3U */
4732
4733   ROM_REGION( 0x020000, "gfx1", 0 )
4734   ROM_LOAD( "mro-cg1267.u72",  0x00000, 0x8000, CRC(16498b57) SHA1(9c22726299af7204c4be1c6d8afc4c1b512ad918) )
4735   ROM_LOAD( "mgo-cg1267.u73",  0x08000, 0x8000, CRC(80847c5a) SHA1(8422cd13a91c3c462af5efcfca8615e7eeaa2e52) )
4736   ROM_LOAD( "mbo-cg1267.u74",  0x10000, 0x8000, CRC(ce7af8a7) SHA1(38675122c764b8fa9260246ea99ac0f0750da277) )
4737   ROM_LOAD( "mxo-cg1267.u75",  0x18000, 0x8000, CRC(a4394303) SHA1(30a07028de35f74cc4fb776b0505ca743c8d7b5b) )
4738
4739   ROM_REGION( 0x100, "proms", 0 )
4740   ROM_LOAD( "cap1267.u50", 0x0000, 0x0100, CRC(7051db57) SHA1(76751a3cc47d506983205decb07e99ca0c178a42) )
4741ROM_END
4742
4743ROM_START( peke1013 ) /* Normal board : Keno 2-10 Spot (KE1013) - Payout 91.97%, Paytable 91-D */
4744   ROM_REGION( 0x10000, "maincpu", 0 )
4745   ROM_LOAD( "ke1013_590-a77.u68",   0x00000, 0x10000, CRC(3b178f94) SHA1(c601150a728d750b73f949ba6e2d2979c4c4be2e) ) /* Game Version: 590, Library Version: A77 */
4746
4747   ROM_REGION( 0x020000, "gfx1", 0 )
4748   ROM_LOAD( "mro-cg1267.u72",  0x00000, 0x8000, CRC(16498b57) SHA1(9c22726299af7204c4be1c6d8afc4c1b512ad918) )
4749   ROM_LOAD( "mgo-cg1267.u73",  0x08000, 0x8000, CRC(80847c5a) SHA1(8422cd13a91c3c462af5efcfca8615e7eeaa2e52) )
4750   ROM_LOAD( "mbo-cg1267.u74",  0x10000, 0x8000, CRC(ce7af8a7) SHA1(38675122c764b8fa9260246ea99ac0f0750da277) )
4751   ROM_LOAD( "mxo-cg1267.u75",  0x18000, 0x8000, CRC(a4394303) SHA1(30a07028de35f74cc4fb776b0505ca743c8d7b5b) )
4752
4753   ROM_REGION( 0x100, "proms", 0 )
4754   ROM_LOAD( "cap1267.u50", 0x0000, 0x0100, CRC(7051db57) SHA1(76751a3cc47d506983205decb07e99ca0c178a42) )
4755ROM_END
4756
4757ROM_START( peps0014 ) /* Normal board : Super Joker Slots (PS0014) - Payout 90.11% */
4758   ROM_REGION( 0x10000, "maincpu", 0 )
4759   ROM_LOAD( "ps0014_569-a2c.u68",   0x00000, 0x10000, CRC(368c3f58) SHA1(ebefcefbb5386659680719936bff72ad61087343) ) /* 3 Coins Max / 1 Line */
4760
4761   ROM_REGION( 0x020000, "gfx1", 0 )
4762   ROM_LOAD( "mro-cg0916.u72",  0x00000, 0x8000, CRC(d97049d9) SHA1(78f7bb33866ca92922a8b83d5f9ac459edd39176) )
4763   ROM_LOAD( "mgo-cg0916.u73",  0x08000, 0x8000, CRC(6e075788) SHA1(e8e9d8b7943d62e31d1d58f870bc765cba65c203) )
4764   ROM_LOAD( "mbo-cg0916.u74",  0x10000, 0x8000, CRC(a5cdf0f3) SHA1(23b2749fd2cb5b8462ce7c912005779b611f32f9) )
4765   ROM_LOAD( "mxo-cg0916.u75",  0x18000, 0x8000, CRC(1f3a2d72) SHA1(8e07324d436980b628e007d30a835757c1f70f6d) )
4766
4767   ROM_REGION( 0x100, "proms", 0 )
4768   ROM_LOAD( "cap916.u50", 0x0000, 0x0100, CRC(b9a5ee21) SHA1(d3c952f594baca9dc234602d90c506dd537c4dcc) )
4769ROM_END
4770
4771ROM_START( peps0021 ) /* Normal board : Red White & Blue Slots (PS0021) - Payout 92.51% */
4772   ROM_REGION( 0x10000, "maincpu", 0 )
4773   ROM_LOAD( "ps0021_569-a2c.u68",   0x00000, 0x10000, CRC(e87d5040) SHA1(e7478e845c888d97190f0398da4bfb043222a3c1) ) /* 3 Coins Max / 1 Line */
4774
4775   ROM_REGION( 0x020000, "gfx1", 0 )
4776   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4777   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4778   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4779   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4780
4781   ROM_REGION( 0x100, "proms", 0 )
4782   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4783ROM_END
4784
4785ROM_START( peps0022 ) /* Normal board : Red White & Blue Slots (PS0022) - Payout 90.08% */
4786   ROM_REGION( 0x10000, "maincpu", 0 )
4787   ROM_LOAD( "ps0022_569-a2c.u68",   0x00000, 0x10000, CRC(d65c0939) SHA1(d91f472a43f77f9df8845e97561540f988e522e3) ) /* 3 Coins Max / 1 Line */
4788
4789   ROM_REGION( 0x020000, "gfx1", 0 )
4790   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4791   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4792   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4793   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4794
4795   ROM_REGION( 0x100, "proms", 0 )
4796   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4797ROM_END
4798
4799ROM_START( peps0042 ) /* Normal board : Double Diamond Slots (PS0042) - Payout 92.58% */
4800   ROM_REGION( 0x10000, "maincpu", 0 )
4801   ROM_LOAD( "ps0042_569-a2c.u68",   0x00000, 0x10000, CRC(b891f04b) SHA1(e735de918e6d91fd87cc85ff40f187dc421a8cf2) ) /* 3 Coins Max / 1 Line */
4802
4803   ROM_REGION( 0x020000, "gfx1", 0 )
4804   ROM_LOAD( "mro-cg1003.u72",  0x00000, 0x8000, CRC(41ce0395) SHA1(ae90dbae30e4efed33f83ee7038fb2e5171c1945) )
4805   ROM_LOAD( "mgo-cg1003.u73",  0x08000, 0x8000, CRC(5a383fa1) SHA1(27b1febbdda7332e8d474fc0cca683f451a07090) )
4806   ROM_LOAD( "mbo-cg1003.u74",  0x10000, 0x8000, CRC(5ec00224) SHA1(bb70a4326cd1810b200e193a449061df62085f37) )
4807   ROM_LOAD( "mxo-cg1003.u75",  0x18000, 0x8000, CRC(2ffacd52) SHA1(38126ac4998806a1ddd55e6aa1942044240d41d0) )
4808
4809   ROM_REGION( 0x100, "proms", 0 )
4810   ROM_LOAD( "cap1003.u50", 0x0000, 0x0100, CRC(cc400805) SHA1(f5ac48ad2a5df64da150f09f2ea5d910230bde56) )
4811ROM_END
4812
4813ROM_START( peps0043 ) /* Normal board : Double Diamond Slots (PS0043) - Payout 90.10% */
4814   ROM_REGION( 0x10000, "maincpu", 0 )
4815   ROM_LOAD( "ps0043_569-a2c.u68",   0x00000, 0x10000, CRC(d612429c) SHA1(95eb4774482a930066456d517fb2e4f67d4df4cb) ) /* 3 Coins Max / 1 Line */
4816
4817   ROM_REGION( 0x020000, "gfx1", 0 )
4818   ROM_LOAD( "mro-cg1003.u72",  0x00000, 0x8000, CRC(41ce0395) SHA1(ae90dbae30e4efed33f83ee7038fb2e5171c1945) )
4819   ROM_LOAD( "mgo-cg1003.u73",  0x08000, 0x8000, CRC(5a383fa1) SHA1(27b1febbdda7332e8d474fc0cca683f451a07090) )
4820   ROM_LOAD( "mbo-cg1003.u74",  0x10000, 0x8000, CRC(5ec00224) SHA1(bb70a4326cd1810b200e193a449061df62085f37) )
4821   ROM_LOAD( "mxo-cg1003.u75",  0x18000, 0x8000, CRC(2ffacd52) SHA1(38126ac4998806a1ddd55e6aa1942044240d41d0) )
4822
4823   ROM_REGION( 0x100, "proms", 0 )
4824   ROM_LOAD( "cap1003.u50", 0x0000, 0x0100, CRC(cc400805) SHA1(f5ac48ad2a5df64da150f09f2ea5d910230bde56) )
4825ROM_END
4826
4827ROM_START( peps0045 ) /* Normal board : Red White & Blue Slots (PS0045) - Payout 87.56% */
4828   ROM_REGION( 0x10000, "maincpu", 0 )
4829   ROM_LOAD( "ps0045_569-a2c.u68",   0x00000, 0x10000, CRC(de180b84) SHA1(0d592d7d535b0aacbd62c18ac222da770fab7b85) ) /* 3 Coins Max / 3 Lines */
4830
4831   ROM_REGION( 0x020000, "gfx1", 0 )
4832   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4833   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4834   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4835   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4836
4837   ROM_REGION( 0x100, "proms", 0 )
4838   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4839ROM_END
4840
4841ROM_START( peps0047 ) /* Normal board : Wild Cherry Slots (PS0047) - Payout 90.20% */
4842   ROM_REGION( 0x10000, "maincpu", 0 )
4843   ROM_LOAD( "ps0047_569-a2c.u68",   0x00000, 0x10000, CRC(b7df1cf8) SHA1(5c5392b7b3a387ccb45fe96310b47078215f2ea0) ) /* 2 Coins Max / 1 Line */
4844
4845   ROM_REGION( 0x020000, "gfx1", 0 )
4846   ROM_LOAD( "mro-cg1004.u72",  0x00000, 0x3000, BAD_DUMP CRC(631ca70e) SHA1(c4d9c4ebc9e90bd1704f154f1bf9b0ce91af35b4) ) /* These should each be 0x8000 bytes */
4847   ROM_LOAD( "mgo-cg1004.u73",  0x08000, 0x1000, BAD_DUMP CRC(28b4f718) SHA1(91ca3ebf288bb60f43fb0e7aace1f2ada2e978ba) ) /* Needs to redumped as standard 27C256 roms */
4848   ROM_LOAD( "mbo-cg1004.u74",  0x10000, 0x1000, BAD_DUMP CRC(542a3a45) SHA1(13569e5bac44c2cffd647c27cf40456494d4612e) )
4849   ROM_LOAD( "mxo-cg1004.u75",  0x18000, 0x1000, BAD_DUMP CRC(20242083) SHA1(f9c9bbe559516f1d02cd4f0bab69f0f7765780ca) )
4850
4851   ROM_REGION( 0x100, "proms", 0 )
4852   ROM_LOAD( "cap1004.u50", 0x0000, 0x0100, CRC(5eced808) SHA1(b40b8efa8cbc76cff7560c36939275eb360c6f11) )
4853ROM_END
4854
4855ROM_START( peps0092 ) /* Normal board : Wild Cherry Slots (PS0092) - Payout 90.18% */
4856   ROM_REGION( 0x10000, "maincpu", 0 )
4857   ROM_LOAD( "ps0092_569-a2c.u68",   0x00000, 0x10000, CRC(d533f6d5) SHA1(9c470f7c474022445aeb45ee8c5757d1b6957a91) ) /* 3 Coins Max / 1 Line */
4858
4859   ROM_REGION( 0x020000, "gfx1", 0 )
4860   ROM_LOAD( "mro-cg1004.u72",  0x00000, 0x3000, BAD_DUMP CRC(631ca70e) SHA1(c4d9c4ebc9e90bd1704f154f1bf9b0ce91af35b4) ) /* These should each be 0x8000 bytes */
4861   ROM_LOAD( "mgo-cg1004.u73",  0x08000, 0x1000, BAD_DUMP CRC(28b4f718) SHA1(91ca3ebf288bb60f43fb0e7aace1f2ada2e978ba) ) /* Needs to redumped as standard 27C256 roms */
4862   ROM_LOAD( "mbo-cg1004.u74",  0x10000, 0x1000, BAD_DUMP CRC(542a3a45) SHA1(13569e5bac44c2cffd647c27cf40456494d4612e) )
4863   ROM_LOAD( "mxo-cg1004.u75",  0x18000, 0x1000, BAD_DUMP CRC(20242083) SHA1(f9c9bbe559516f1d02cd4f0bab69f0f7765780ca) )
4864
4865   ROM_REGION( 0x100, "proms", 0 )
4866   ROM_LOAD( "cap1004.u50", 0x0000, 0x0100, CRC(5eced808) SHA1(b40b8efa8cbc76cff7560c36939275eb360c6f11) )
4867ROM_END
4868
4869ROM_START( peps0206 ) /* Normal board : Red White & Blue Slots (PS0206) - Payout 85.13% */
4870   ROM_REGION( 0x10000, "maincpu", 0 )
4871   ROM_LOAD( "ps0206_569-a2c.u68",   0x00000, 0x10000, CRC(e165efc0) SHA1(170f917740c63b0b00f424ce02bfd04dc48a1397) ) /* 3 Coins Max / 1 Line */
4872
4873   ROM_REGION( 0x020000, "gfx1", 0 )
4874   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4875   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4876   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4877   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4878
4879   ROM_REGION( 0x100, "proms", 0 )
4880   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4881ROM_END
4882
4883ROM_START( peps0207 ) /* Normal board : Red White & Blue Slots (PS0207) - Payout 90.14% */
4884   ROM_REGION( 0x10000, "maincpu", 0 )
4885   ROM_LOAD( "ps0207_569-a2c.u68",   0x00000, 0x10000, CRC(e7c5f103) SHA1(6e420c151e07863b21a423f8743da360d6389cde) ) /* 3 Coins Max / 3 Lines */
4886
4887   ROM_REGION( 0x020000, "gfx1", 0 )
4888   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4889   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4890   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4891   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4892
4893   ROM_REGION( 0x100, "proms", 0 )
4894   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4895ROM_END
4896
4897ROM_START( peps0296 ) /* Normal board : Haywire Slots (PS0296) - Payout 90.00% */
4898   ROM_REGION( 0x10000, "maincpu", 0 )
4899   ROM_LOAD( "ps0296_561-959.u68",   0x00000, 0x10000, CRC(da871550) SHA1(99e7a4fc77731b185751622ba2e08a44ad8eb7f9) ) /* 3 Coins Max / 1 Line */
4900
4901   ROM_REGION( 0x020000, "gfx1", 0 )
4902   ROM_LOAD( "mro-cg1220.u72",   0x00000, 0x8000, CRC(ad101bc1) SHA1(64d801522d32c35ac0fd359a9b1ca51dfe2e7467) )
4903   ROM_LOAD( "mgo-cg1220.u73",   0x08000, 0x8000, CRC(22b64f11) SHA1(39f350433fc2c96b3848d5af3cc106290b7540c9) )
4904   ROM_LOAD( "mbo-cg1220.u74",   0x10000, 0x8000, CRC(8ba1ddb3) SHA1(d5d8621b14ed4873cb1343b97202a1536763eee8) )
4905   ROM_LOAD( "mxo-cg1220.u75",   0x18000, 0x8000, CRC(07bc5413) SHA1(fcba1b60a2eb6bba4f7bb5ef3e67ff23dd036bf5) )
4906
4907   ROM_REGION( 0x100, "proms", 0 )
4908   ROM_LOAD( "cap1228.u50", 0x0000, 0x0100, CRC(e15b6db9) SHA1(3c637d1ff95a34bfa0259f7fe74989535b2b3a25) )
4909ROM_END
4910
4911ROM_START( peps0298 ) /* Normal board : Double Diamond Slots (PS0298) - Payout 87.42% */
4912   ROM_REGION( 0x10000, "maincpu", 0 )
4913   ROM_LOAD( "ps0298_569-a2c.u68",   0x00000, 0x10000, CRC(3af2eb50) SHA1(1b2e1036f78658da3821bcf88a48b5068b2421b2) ) /* 5 Coins Max / 5 Lines */
4914
4915   ROM_REGION( 0x020000, "gfx1", 0 )
4916   ROM_LOAD( "mro-cg1003.u72",  0x00000, 0x8000, CRC(41ce0395) SHA1(ae90dbae30e4efed33f83ee7038fb2e5171c1945) )
4917   ROM_LOAD( "mgo-cg1003.u73",  0x08000, 0x8000, CRC(5a383fa1) SHA1(27b1febbdda7332e8d474fc0cca683f451a07090) )
4918   ROM_LOAD( "mbo-cg1003.u74",  0x10000, 0x8000, CRC(5ec00224) SHA1(bb70a4326cd1810b200e193a449061df62085f37) )
4919   ROM_LOAD( "mxo-cg1003.u75",  0x18000, 0x8000, CRC(2ffacd52) SHA1(38126ac4998806a1ddd55e6aa1942044240d41d0) )
4920
4921   ROM_REGION( 0x100, "proms", 0 )
4922   ROM_LOAD( "cap1003.u50", 0x0000, 0x0100, CRC(cc400805) SHA1(f5ac48ad2a5df64da150f09f2ea5d910230bde56) )
4923ROM_END
4924
4925ROM_START( peps0308 ) /* Normal board : Double Jackpot Slots (PS0308) - Payout 90.10% */
4926   ROM_REGION( 0x10000, "maincpu", 0 )
4927   ROM_LOAD( "ps0308_569-a2c.u68",   0x00000, 0x10000, CRC(fe30e081) SHA1(d216cbc6336727caf359e6b178c856ab2659cabd) ) /* 5 Coins Max / 5 Lines */
4928
4929   ROM_REGION( 0x020000, "gfx1", 0 )
4930   ROM_LOAD( "mro-cg0911.u72",  0x00000, 0x8000, CRC(48491b50) SHA1(9ec6d3ff34a08d40082a1347a46635838fd31afc) )
4931   ROM_LOAD( "mgo-cg0911.u73",  0x08000, 0x8000, CRC(c1ff7d97) SHA1(78ab138ae9c7f9b3352f9b1ef5fbc473993bb8c8) )
4932   ROM_LOAD( "mbo-cg0911.u74",  0x10000, 0x8000, CRC(202e0f9e) SHA1(51421dfd1b00a9e3b1e938d5bffaa3b7cd4c2b5e) )
4933   ROM_LOAD( "mxo-cg0911.u75",  0x18000, 0x8000, CRC(d97740a2) SHA1(d76926d7fbbc24d2384a1079cb97e654600b134b) )
4934
4935   ROM_REGION( 0x100, "proms", 0 )
4936   ROM_LOAD( "cap911.u50", 0x0000, 0x0100, CRC(f117e781) SHA1(ba9d850c93e5f3abc26b0ba51f67fa7c07e05f59) )
4937ROM_END
4938
4939ROM_START( peps0364 ) /* Normal board : Red White & Blue Slots (PS0364) - Payout 90.09% */
4940   ROM_REGION( 0x10000, "maincpu", 0 )
4941   ROM_LOAD( "ps0364_569-a2c.u68",   0x00000, 0x10000, CRC(596c4ae4) SHA1(a06626fb7d17fd12c7514d435031924973e4ba55) ) /* 3 Coins Max / 1 Line (show alt graphics??) */
4942
4943   ROM_REGION( 0x020000, "gfx1", 0 )
4944   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4945   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4946   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4947   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4948
4949   ROM_REGION( 0x100, "proms", 0 )
4950   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4951ROM_END
4952
4953ROM_START( peps0426 ) /* Normal board : Sizzling Sevens Slots (PS0268) - Payout 90.35% */
4954   ROM_REGION( 0x10000, "maincpu", 0 )
4955   ROM_LOAD( "ps0426_571-a3h.u68",   0x00000, 0x10000, CRC(b53771c1) SHA1(23fccd5facb98fc83b8903946435be4f15199ff8) ) /* 3 Coins Max / 1 Lines */
4956
4957   ROM_REGION( 0x020000, "gfx1", 0 )
4958   ROM_LOAD( "mro-cg1428.u72",  0x00000, 0x8000, CRC(90a4ef75) SHA1(effcaabcbc52b7fb3a85546b201f2628131a96fa) )
4959   ROM_LOAD( "mgo-cg1428.u73",  0x08000, 0x8000, CRC(78416e96) SHA1(4523339e00eacbae5cd1a9aabb3dce18ff1a604e) )
4960   ROM_LOAD( "mbo-cg1428.u74",  0x10000, 0x8000, CRC(b84034e2) SHA1(704962eed288c8e7bed288ae8f99576c9851c52b) )
4961   ROM_LOAD( "mxo-cg1428.u75",  0x18000, 0x8000, CRC(3da3cb07) SHA1(882ee4f3008ef44f09c3ffb2b4b8085cac05c93c) )
4962
4963   ROM_REGION( 0x100, "proms", 0 )
4964   ROM_LOAD( "cap1428.u50", 0x0000, 0x0100, CRC(c15aae14) SHA1(9b2784ad3da7afdb7778cae9906d0a7c76df7a32) )
4965ROM_END
4966
4967ROM_START( peps0581 ) /* Normal board : Red White & Blue Slots (PS0581) - Payout 85.06% */
4968   ROM_REGION( 0x10000, "maincpu", 0 )
4969   ROM_LOAD( "ps0581_571-a3h.u68",   0x00000, 0x10000, CRC(8730cbf3) SHA1(2e81aec6982909511a9782f60ff506215f9aac7c) ) /* 5 Coins Max / 5 Lines */
4970
4971   ROM_REGION( 0x020000, "gfx1", 0 )
4972   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
4973   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
4974   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
4975   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
4976
4977   ROM_REGION( 0x100, "proms", 0 )
4978   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
4979ROM_END
4980
4981ROM_START( peps0615 ) /* Normal board : Chaos Slots (PS0615) - Payout 90.02% */
4982   ROM_REGION( 0x10000, "maincpu", 0 )
4983   ROM_LOAD( "ps0615_586-a6c.u68",   0x00000, 0x10000, CRC(d27dd6ab) SHA1(b3f065f507191682edbd93b07b72ed87bf6ae9b1) ) /* 3 Coins Max / 1 Line */
4984
4985   ROM_REGION( 0x020000, "gfx1", 0 )
4986   ROM_LOAD( "mro-cg2246.u72",  0x00000, 0x8000, CRC(7c08c355) SHA1(2a154b81c6d9671cea55a924bffb7f5461747142) )
4987   ROM_LOAD( "mgo-cg2246.u73",  0x08000, 0x8000, CRC(b3c16487) SHA1(c97232fadd086f604eaeb3cd3c2d1c8fe0dcfa70) )
4988   ROM_LOAD( "mbo-cg2246.u74",  0x10000, 0x8000, CRC(e61331f5) SHA1(4364edc625d64151cbae40780b54cb1981086647) )
4989   ROM_LOAD( "mxo-cg2246.u75",  0x18000, 0x8000, CRC(f0f4a27d) SHA1(3a10ab196aeaa5b50d47b9d3c5b378cfadd6fe96) )
4990
4991   ROM_REGION( 0x100, "proms", 0 )
4992   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) ) /* WRONG!! - Should be CAP2246 here */
4993ROM_END
4994
4995ROM_START( peps0631 ) /* Normal board : Red White & Blue Slots (PS0631) - Payout 89.96% */
4996   ROM_REGION( 0x10000, "maincpu", 0 )
4997   ROM_LOAD( "ps0631_586-a6c.u68",   0x00000, 0x10000, CRC(3d4c52dd) SHA1(f6b31a77de52c0d6402b51349f34bdb687b27178) ) /* 3 Coins Max / 1 Line (show alt graphics??) */
4998
4999   ROM_REGION( 0x020000, "gfx1", 0 )
5000   ROM_LOAD( "mro-cg0960.u72",  0x00000, 0x8000, CRC(8c38c6fd) SHA1(5d6e9ac18b9b3f1253bba080bef1c067b2fdd7a8) )
5001   ROM_LOAD( "mgo-cg0960.u73",  0x08000, 0x8000, CRC(b4f44163) SHA1(1bc635a5160fdff2882c8362644aebf983a1a427) )
5002   ROM_LOAD( "mbo-cg0960.u74",  0x10000, 0x8000, CRC(8057e3a8) SHA1(5510872b1607daaf890603e76a8a47680e639e8e) )
5003   ROM_LOAD( "mxo-cg0960.u75",  0x18000, 0x8000, CRC(d57b4c25) SHA1(6ddfbaae87f9958642ddb95e581ac31e1dd55608) )
5004
5005   ROM_REGION( 0x100, "proms", 0 )
5006   ROM_LOAD( "cap960.u50", 0x0000, 0x0100, CRC(00dd8d0a) SHA1(542763b12aeb0aec2b410f7c075c52907f45d171) )
5007ROM_END
5008
5009ROM_START( peps0716 ) /* Normal board : River Gambler Slots (PS0716) - Payout 95.00% */
5010   ROM_REGION( 0x10000, "maincpu", 0 )
5011   ROM_LOAD( "ps0716_589-a6x.u68",   0x00000, 0x10000, CRC(7615d7b6) SHA1(91fe62eec720a0dc2ebf48835065148f19499d16) ) /* 2 Coins Max / 1 Line */
5012
5013   ROM_REGION( 0x020000, "gfx1", 0 )
5014   ROM_LOAD( "mro-cg2266.u72",  0x00000, 0x8000, CRC(590accd8) SHA1(4e1c963c50799eaa49970e25ecf9cb01eb6b09e1) )
5015   ROM_LOAD( "mgo-cg2266.u73",  0x08000, 0x8000, CRC(b87ffa05) SHA1(92126b670b9cabeb5e2cc35b6e9c458088b18eea) )
5016   ROM_LOAD( "mbo-cg2266.u74",  0x10000, 0x8000, CRC(e3df30e1) SHA1(c7d2ae9a7c7e53bfb6197b635efcb5dc231e4fe0) )
5017   ROM_LOAD( "mxo-cg2266.u75",  0x18000, 0x8000, CRC(56271442) SHA1(61ad0756b9f6412516e46ef6625a4c3899104d4e) )
5018
5019   ROM_REGION( 0x100, "proms", 0 )
5020   ROM_LOAD( "cap2266.u50", 0x0000, 0x0100, CRC(5aaff103) SHA1(9cfda9c095cb77a8bb761c131a0f358e79b97abc) )
5021ROM_END
5022
5023ROM_START( pex0002p ) /* Superboard : Standard Draw Poker (X000002P+XP000038) */
5024/*
5025PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5026----------------------------------------------------------
5027   BB       1    2    3    4    5   8  25  50 250   1000
5028  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
5029     Programs Available: PP0002, X000002P
5030*/
5031   ROM_REGION( 0x10000, "maincpu", 0 )
5032   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5033
5034   ROM_REGION( 0x10000, "user1", 0 )
5035   ROM_LOAD( "x000002p.u66",   0x00000, 0x10000, CRC(17cee391) SHA1(173e5775c3e887e16b4f0330d21873331dfb7c33) ) /* Standard Draw Poker */
5036
5037   ROM_REGION( 0x020000, "gfx1", 0 )
5038   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5039   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5040   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5041   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5042
5043   ROM_REGION( 0x200, "proms", 0 )
5044   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5045ROM_END
5046
5047ROM_START( pex0002pa ) /* Superboard : Standard Draw Poker (X000002P+XP000109) */
5048/*
5049PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5050----------------------------------------------------------
5051   BB       1    2    3    4    5   8  25  50 250   1000
5052  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
5053     Programs Available: PP0002, X000002P
5054*/
5055   ROM_REGION( 0x10000, "maincpu", 0 )
5056   ROM_LOAD( "xp000109.u67",   0x00000, 0x10000, CRC(2e3347a7) SHA1(ef4f1822389ff67c00065b2c04897deabee2eba1) ) /* Monaco Region */
5057
5058   ROM_REGION( 0x10000, "user1", 0 )
5059   ROM_LOAD( "x000002p.u66",   0x00000, 0x10000, CRC(17cee391) SHA1(173e5775c3e887e16b4f0330d21873331dfb7c33) ) /* Standard Draw Poker */
5060
5061   ROM_REGION( 0x020000, "gfx1", 0 )
5062   ROM_LOAD( "mro-cg2201.u77",  0x00000, 0x8000, CRC(8f82a114) SHA1(dc4aaaa12442a66386d9bef969afa60a7e2e386b) ) /* Monaco Region */
5063   ROM_LOAD( "mgo-cg2201.u78",  0x08000, 0x8000, CRC(71797c5b) SHA1(15dff00aad8006855af98a2ad39fe1a6e87d7d24) )
5064   ROM_LOAD( "mbo-cg2201.u79",  0x10000, 0x8000, CRC(27201cbf) SHA1(9d197e04c36e94ff08bd76c7200ea4e8f345b8ab) )
5065   ROM_LOAD( "mxo-cg2201.u80",  0x18000, 0x8000, CRC(b79b6d11) SHA1(dcc30465e4de104c54b19e95e7216023576d90c7) )
5066
5067   ROM_REGION( 0x200, "proms", 0 )
5068   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5069ROM_END
5070
5071ROM_START( pex0040p ) /* Superboard : Standard Draw Poker (X000040P+XP000038) */
5072/*
5073PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5074----------------------------------------------------------
5075   WA       1    2    3    4    5   7  20  50 300    800
5076  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
5077     Programs Available: PP0040, X000040P
5078*/
5079   ROM_REGION( 0x10000, "maincpu", 0 )
5080   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5081
5082   ROM_REGION( 0x10000, "user1", 0 )
5083   ROM_LOAD( "x000040p.u66",   0x00000, 0x10000, CRC(f672c36e) SHA1(c44d78070b8f858cb2ef27c84b62acc8eec1bea8) ) /* Standard Draw Poker */
5084
5085   ROM_REGION( 0x020000, "gfx1", 0 )
5086   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5087   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5088   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5089   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5090
5091   ROM_REGION( 0x200, "proms", 0 )
5092   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5093ROM_END
5094
5095ROM_START( pex0045p ) /* Superboard : Standard Draw Poker (10's or Better) (X000045P+XP000038) */
5096/*
5097PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5098----------------------------------------------------------
5099  P8A      1     1    3    4    5   8  25  50 300    800
5100  % Range: 84.6-86.6%  Optimum: 98.6%  Hit Frequency: 49.2%
5101     Programs Available: PP0045, X000045P
5102*/
5103   ROM_REGION( 0x10000, "maincpu", 0 )
5104   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5105
5106   ROM_REGION( 0x10000, "user1", 0 )
5107   ROM_LOAD( "x000045p.u66",   0x00000, 0x10000, CRC(5412e1f9) SHA1(a962b7731df2f534ea79b6d3e376abf45104df37) ) /* Standard Draw Poker (10's or Better) */
5108
5109   ROM_REGION( 0x020000, "gfx1", 0 )
5110   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5111   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5112   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5113   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5114
5115   ROM_REGION( 0x200, "proms", 0 )
5116   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5117ROM_END
5118
5119ROM_START( pex0046p ) /* Superboard : Standard Draw Poker (10's or Better) (X000046P+XP000038) */
5120/*
5121PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5122----------------------------------------------------------
5123  P8B      1     1    3    4    5   8  25  50 300   1000
5124  % Range: 85.2-87.2%  Optimum: 89.2%  Hit Frequency: 49.0%
5125     Programs Available: PP0046, X000046P
5126*/
5127   ROM_REGION( 0x10000, "maincpu", 0 )
5128   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5129
5130   ROM_REGION( 0x10000, "user1", 0 )
5131   ROM_LOAD( "x000046p.u66",   0x00000, 0x10000, CRC(f19cdab4) SHA1(4502a8660100be69625e215610cf918e3ffc5e4f) ) /* Standard Draw Poker (10's or Better) */
5132
5133   ROM_REGION( 0x020000, "gfx1", 0 )
5134   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5135   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5136   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5137   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5138
5139   ROM_REGION( 0x200, "proms", 0 )
5140   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5141ROM_END
5142
5143ROM_START( pex0053p ) /* Superboard : Joker Poker (X000053P+XP000038) */
5144/*
5145                                            w/J     w/oJ
5146PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
5147----------------------------------------------------------------
5148  P18B      1    1   2   3    5   6  20  50 100 200 500   1000
5149  % Range: 90.6-92.6%  Optimum: 94.6%  Hit Frequency: 39.2%
5150     Programs Available: PP0053, X000053P
5151*/
5152   ROM_REGION( 0x10000, "maincpu", 0 )
5153   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5154
5155   ROM_REGION( 0x10000, "user1", 0 )
5156   ROM_LOAD( "x000053p.u66",   0x00000, 0x10000, CRC(b247e455) SHA1(8d311956e46be62ee17de6fb2ae1594e623a78c0) ) /* Joker Poker */
5157
5158   ROM_REGION( 0x020000, "gfx1", 0 )
5159   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5160   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5161   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5162   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5163
5164   ROM_REGION( 0x200, "proms", 0 )
5165   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5166ROM_END
5167
5168ROM_START( pex0054p ) /* Superboard : Deuces Wild Poker (X000054P+XP000038) */
5169/*
5170                                        w/D     w/oD
5171PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5172------------------------------------------------------------
5173  P21A      1    2    2   3   4   8  10  20 200 300    800
5174  % Range: 87.4-89.4%  Optimum: 91.4%  Hit Frequency: 45.3%
5175     Programs Available: PP0054, X000054P
5176*/
5177   ROM_REGION( 0x10000, "maincpu", 0 )
5178   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5179
5180   ROM_REGION( 0x10000, "user1", 0 )
5181   ROM_LOAD( "x000054p.u66",   0x00000, 0x10000, CRC(820b3738) SHA1(dfa389df0d27b69072b5ece5b624ef97551f4af1) ) /* Deuces Wild Poker - 03/22/95   @ IGT  L95-1142 */
5182
5183   ROM_REGION( 0x020000, "gfx1", 0 )
5184   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5185   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5186   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5187   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5188
5189   ROM_REGION( 0x200, "proms", 0 )
5190   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5191ROM_END
5192
5193ROM_START( pex0055p ) /* Superboard : Deuces Wild Poker (X000055P+XP000019) */
5194/*
5195                                        w/D     w/oD
5196PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5197------------------------------------------------------------
5198  P32A      1    2    2   3   4  10  15  25 200 250    800
5199  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5200     Programs Available: PP0055, X000055P, PP0723
5201*/
5202   ROM_REGION( 0x10000, "maincpu", 0 )
5203   ROM_LOAD( "xp000019.u67",   0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) )
5204
5205   ROM_REGION( 0x10000, "user1", 0 )
5206   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5207
5208   ROM_REGION( 0x020000, "gfx1", 0 )
5209   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5210   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5211   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5212   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5213
5214   ROM_REGION( 0x200, "proms", 0 )
5215   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5216ROM_END
5217
5218ROM_START( pex0055pa ) /* Superboard : Deuces Wild Poker (X000055P+XP000022) */
5219/*
5220                                        w/D     w/oD
5221PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5222------------------------------------------------------------
5223  P32A      1    2    2   3   4  10  15  25 200 250    800
5224  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5225     Programs Available: PP0055, X000055P, PP0723
5226*/
5227   ROM_REGION( 0x10000, "maincpu", 0 )
5228   ROM_LOAD( "xp000022.u67",   0x00000, 0x10000, CRC(7930741b) SHA1(d3b83fd08a458cc794301ef612f8c7b13d4b2050) ) /*  09/28/95   @ IGT  L95-2028  */
5229
5230   ROM_REGION( 0x10000, "user1", 0 )
5231   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5232
5233   ROM_REGION( 0x020000, "gfx1", 0 )
5234   ROM_LOAD( "mro-cg2291.u77",  0x00000, 0x8000, CRC(db4e491c) SHA1(e371e7b236962a0f30640c683d3a0a302c51aee9) ) /* Custom The Orleans graphics */
5235   ROM_LOAD( "mgo-cg2291.u78",  0x08000, 0x8000, CRC(17bb35f8) SHA1(ba9e8aa3ff42b17c7be6ee46c70db22d8e60e52c) ) /* Compatible with most "standard" game sets */
5236   ROM_LOAD( "mbo-cg2291.u79",  0x10000, 0x8000, CRC(de1036e4) SHA1(774bbcda301754dc4a606974248847a2264c3827) )
5237   ROM_LOAD( "mxo-cg2291.u80",  0x18000, 0x8000, CRC(7049403c) SHA1(3a29a00fb8dfdb30dba757c1536151827ea09068) )
5238
5239   ROM_REGION( 0x200, "proms", 0 )
5240   ROM_LOAD( "capx2291.u43", 0x0000, 0x0200, CRC(6dfbb409) SHA1(10cd84e53344cb8502a268c41bdd41bc927e5544) )
5241ROM_END
5242
5243ROM_START( pex0055pb ) /* Superboard : Deuces Wild Poker (X000055P+XP000023) */
5244/*
5245                                        w/D     w/oD
5246PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5247------------------------------------------------------------
5248  P32A      1    2    2   3   4  10  15  25 200 250    800
5249  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5250     Programs Available: PP0055, X000055P, PP0723
5251*/
5252   ROM_REGION( 0x10000, "maincpu", 0 )
5253   ROM_LOAD( "xp000023.u67",   0x00000, 0x10000, CRC(d2ad7dd3) SHA1(9c5fe5ca5a5a682566e96c6802b7164730cda919) ) /* No Double-up */
5254
5255   ROM_REGION( 0x10000, "user1", 0 )
5256   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5257
5258   ROM_REGION( 0x020000, "gfx1", 0 )
5259   ROM_LOAD( "mro-cg2399.u72",  0x00000, 0x8000, CRC(0424f4ba) SHA1(c8b192a6f63c8c9937cb3923d27b9ba2c39823cd) ) /* Custom The Fun Ships graphics */
5260   ROM_LOAD( "mgo-cg2399.u73",  0x08000, 0x8000, CRC(5848a2fa) SHA1(4173a473016b7a776d2b59bf3ded0be35bd43721) )
5261   ROM_LOAD( "mbo-cg2399.u74",  0x10000, 0x8000, CRC(5c3e16f6) SHA1(a4aa457f239527bffa6472e0d6f9d836f796b326) )
5262   ROM_LOAD( "mxo-cg2399.u75",  0x18000, 0x8000, CRC(bd7669d5) SHA1(4343a9764fd563e2e1cdd8558f2f53f77006b159) )
5263
5264   ROM_REGION( 0x200, "proms", 0 )
5265   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5266ROM_END
5267
5268ROM_START( pex0055pc ) /* Superboard : Deuces Wild Poker (X000055P+XP000028) */
5269/*
5270                                        w/D     w/oD
5271PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5272------------------------------------------------------------
5273  P32A      1    2    2   3   4  10  15  25 200 250    800
5274  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5275     Programs Available: PP0055, X000055P, PP0723
5276*/
5277   ROM_REGION( 0x10000, "maincpu", 0 )
5278   ROM_LOAD( "xp000028.u67",   0x00000, 0x10000, CRC(1407fe54) SHA1(4615efbba9a58698e2cfd53c93fa133678101441) ) /* 01/15/96   @ IGT  L96-0716 */
5279
5280   ROM_REGION( 0x10000, "user1", 0 )
5281   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5282
5283   ROM_REGION( 0x020000, "gfx1", 0 )
5284   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5285   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5286   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5287   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5288
5289   ROM_REGION( 0x200, "proms", 0 )
5290   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5291ROM_END
5292
5293ROM_START( pex0055pd ) /* Superboard : Deuces Wild Poker (X000055P+XP000035) */
5294/*
5295                                        w/D     w/oD
5296PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5297------------------------------------------------------------
5298  P32A      1    2    2   3   4  10  15  25 200 250    800
5299  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5300     Programs Available: PP0055, X000055P, PP0723
5301*/
5302   ROM_REGION( 0x10000, "maincpu", 0 )
5303   ROM_LOAD( "xp000035.u67",   0x00000, 0x10000, CRC(aa16e53b) SHA1(5a37c7af2c09be26e8734b36da765fd408754771) ) /* 07/08/96   @ IGT  L96-1587 */
5304
5305   ROM_REGION( 0x10000, "user1", 0 )
5306   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5307
5308   ROM_REGION( 0x020000, "gfx1", 0 )
5309   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5310   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5311   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5312   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5313
5314   ROM_REGION( 0x200, "proms", 0 )
5315   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5316ROM_END
5317
5318ROM_START( pex0055pe ) /* Superboard : Deuces Wild Poker (X000055P+XP000038) */
5319/*
5320                                        w/D     w/oD
5321PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5322------------------------------------------------------------
5323  P32A      1    2    2   3   4  10  15  25 200 250    800
5324  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5325     Programs Available: PP0055, X000055P, PP0723
5326*/
5327   ROM_REGION( 0x10000, "maincpu", 0 )
5328   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5329
5330   ROM_REGION( 0x10000, "user1", 0 )
5331   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5332
5333   ROM_REGION( 0x020000, "gfx1", 0 )
5334   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5335   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5336   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5337   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5338
5339   ROM_REGION( 0x200, "proms", 0 )
5340   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5341ROM_END
5342
5343ROM_START( pex0055pf ) /* Superboard : Deuces Wild Poker (X000055P+XP000040) */
5344/*
5345                                        w/D     w/oD
5346PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5347------------------------------------------------------------
5348  P32A      1    2    2   3   4  10  15  25 200 250    800
5349  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5350     Programs Available: PP0055, X000055P, PP0723
5351*/
5352   ROM_REGION( 0x10000, "maincpu", 0 )
5353   ROM_LOAD( "xp000040.u67",   0x00000, 0x10000, CRC(7b30b1d5) SHA1(394c964cf6269a4cd9b9debe8f4a5a0c96db06a7) )
5354
5355   ROM_REGION( 0x10000, "user1", 0 )
5356   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5357
5358   ROM_REGION( 0x020000, "gfx1", 0 )
5359   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5360   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5361   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5362   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5363
5364   ROM_REGION( 0x200, "proms", 0 )
5365   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5366ROM_END
5367
5368ROM_START( pex0055pg ) /* Superboard : Deuces Wild Poker (X000055P+XP000053) */
5369/*
5370                                        w/D     w/oD
5371PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5372------------------------------------------------------------
5373  P32A      1    2    2   3   4  10  15  25 200 250    800
5374  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5375     Programs Available: PP0055, X000055P, PP0723
5376*/
5377   ROM_REGION( 0x10000, "maincpu", 0 )
5378   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
5379
5380   ROM_REGION( 0x10000, "user1", 0 )
5381   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5382
5383   ROM_REGION( 0x020000, "gfx1", 0 )
5384   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5385   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5386   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5387   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5388
5389   ROM_REGION( 0x200, "proms", 0 )
5390   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5391ROM_END
5392
5393ROM_START( pex0055ph ) /* Superboard : Deuces Wild Poker (X000055P+XP000055) */
5394/*
5395                                        w/D     w/oD
5396PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5397------------------------------------------------------------
5398  P32A      1    2    2   3   4  10  15  25 200 250    800
5399  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5400     Programs Available: PP0055, X000055P, PP0723
5401*/
5402   ROM_REGION( 0x10000, "maincpu", 0 )
5403   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
5404
5405   ROM_REGION( 0x10000, "user1", 0 )
5406   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5407
5408   ROM_REGION( 0x020000, "gfx1", 0 )
5409   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5410   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5411   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5412   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5413
5414   ROM_REGION( 0x200, "proms", 0 )
5415   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5416ROM_END
5417
5418ROM_START( pex0055pi ) /* Superboard : Deuces Wild Poker (X000055P+XP000063) */
5419/*
5420                                        w/D     w/oD
5421PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5422------------------------------------------------------------
5423  P32A      1    2    2   3   4  10  15  25 200 250    800
5424  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5425     Programs Available: PP0055, X000055P, PP0723
5426*/
5427   ROM_REGION( 0x10000, "maincpu", 0 )
5428   ROM_LOAD( "xp000063.u67",   0x00000, 0x10000, CRC(008dcaf9) SHA1(34203f602a531c1a58febdf31fe7a94c2c09fcb4) )
5429
5430   ROM_REGION( 0x10000, "user1", 0 )
5431   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5432
5433   ROM_REGION( 0x020000, "gfx1", 0 )
5434   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5435   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5436   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5437   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5438
5439   ROM_REGION( 0x200, "proms", 0 )
5440   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5441ROM_END
5442
5443ROM_START( pex0055pj ) /* Superboard : Deuces Wild Poker (X000055P+XP000075) */
5444/*
5445                                        w/D     w/oD
5446PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5447------------------------------------------------------------
5448  P32A      1    2    2   3   4  10  15  25 200 250    800
5449  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5450     Programs Available: PP0055, X000055P, PP0723
5451*/
5452   ROM_REGION( 0x10000, "maincpu", 0 )
5453   ROM_LOAD( "xp000075.u67",   0x00000, 0x10000, CRC(79b3013f) SHA1(98e6f2c7756643bc9c2371c015cba7ed2c314a60) ) /* English / Spanish */
5454
5455   ROM_REGION( 0x10000, "user1", 0 )
5456   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5457
5458   ROM_REGION( 0x020000, "gfx1", 0 )
5459   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) /* Contains needed English / Spanish graphics */
5460   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
5461   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
5462   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
5463
5464   ROM_REGION( 0x200, "proms", 0 )
5465   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5466ROM_END
5467
5468ROM_START( pex0055pk ) /* Superboard : Deuces Wild Poker (X000055P+XP000079) */
5469/*
5470                                        w/D     w/oD
5471PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5472------------------------------------------------------------
5473  P32A      1    2    2   3   4  10  15  25 200 250    800
5474  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5475     Programs Available: PP0055, X000055P, PP0723
5476*/
5477   ROM_REGION( 0x10000, "maincpu", 0 )
5478   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
5479
5480   ROM_REGION( 0x10000, "user1", 0 )
5481   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5482
5483   ROM_REGION( 0x020000, "gfx1", 0 )
5484   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5485   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5486   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5487   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5488
5489   ROM_REGION( 0x200, "proms", 0 )
5490   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5491ROM_END
5492
5493ROM_START( pex0055pl ) /* Superboard : Deuces Wild Poker (X000055P+XP000094) */
5494/*
5495                                        w/D     w/oD
5496PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5497------------------------------------------------------------
5498  P32A      1    2    2   3   4  10  15  25 200 250    800
5499  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5500     Programs Available: PP0055, X000055P, PP0723
5501*/
5502   ROM_REGION( 0x10000, "maincpu", 0 )
5503   ROM_LOAD( "xp000094.u67",   0x00000, 0x10000, CRC(97ff8171) SHA1(ca714f201a7425df81b830698f65640570ac5935) ) /* Coupon Compatible */
5504
5505   ROM_REGION( 0x10000, "user1", 0 )
5506   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5507
5508   ROM_REGION( 0x020000, "gfx1", 0 )
5509   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5510   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5511   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5512   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5513
5514   ROM_REGION( 0x200, "proms", 0 )
5515   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5516ROM_END
5517
5518ROM_START( pex0055pm ) /* Superboard : Deuces Wild Poker (X000055P+XP000095) */
5519/*
5520                                        w/D     w/oD
5521PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5522------------------------------------------------------------
5523  P32A      1    2    2   3   4  10  15  25 200 250    800
5524  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5525     Programs Available: PP0055, X000055P, PP0723
5526*/
5527   ROM_REGION( 0x10000, "maincpu", 0 )
5528   ROM_LOAD( "xp000095.u67",   0x00000, 0x10000, CRC(6a1679ea) SHA1(421e8c9eacc8e397267a48cad7ae96f541b1c19a) )
5529
5530   ROM_REGION( 0x10000, "user1", 0 )
5531   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5532
5533   ROM_REGION( 0x020000, "gfx1", 0 )
5534   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5535   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5536   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5537   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5538
5539   ROM_REGION( 0x200, "proms", 0 )
5540   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5541ROM_END
5542
5543ROM_START( pex0055pn ) /* Superboard : Deuces Wild Poker (X000055P+XP000098) */
5544/*
5545                                        w/D     w/oD
5546PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5547------------------------------------------------------------
5548  P32A      1    2    2   3   4  10  15  25 200 250    800
5549  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5550     Programs Available: PP0055, X000055P, PP0723
5551*/
5552   ROM_REGION( 0x10000, "maincpu", 0 )
5553   ROM_LOAD( "xp000098.u67",   0x00000, 0x10000, CRC(12257ad8) SHA1(8f613377519850f8f711ccb827685dece018c735) )
5554
5555   ROM_REGION( 0x10000, "user1", 0 )
5556   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5557
5558   ROM_REGION( 0x020000, "gfx1", 0 )
5559   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5560   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5561   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5562   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5563
5564   ROM_REGION( 0x200, "proms", 0 )
5565   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5566ROM_END
5567
5568ROM_START( pex0055po ) /* Superboard : Deuces Wild Poker (X000055P+XP000102) */
5569/*
5570                                        w/D     w/oD
5571PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5572------------------------------------------------------------
5573  P32A      1    2    2   3   4  10  15  25 200 250    800
5574  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5575     Programs Available: PP0055, X000055P, PP0723
5576*/
5577   ROM_REGION( 0x10000, "maincpu", 0 )
5578   ROM_LOAD( "xp000102.u67",   0x00000, 0x10000, CRC(76d37639) SHA1(c7190ee3bff135b39ce42428eadef3ca067508b4) ) /* English / Spanish */
5579
5580   ROM_REGION( 0x10000, "user1", 0 )
5581   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5582
5583   ROM_REGION( 0x020000, "gfx1", 0 )
5584   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) /* Contains needed English / Spanish graphics */
5585   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
5586   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
5587   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
5588
5589   ROM_REGION( 0x200, "proms", 0 )
5590   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5591ROM_END
5592
5593ROM_START( pex0055pp ) /* Superboard : Deuces Wild Poker (X000055P+XP000104) */
5594/*
5595                                        w/D     w/oD
5596PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5597------------------------------------------------------------
5598  P32A      1    2    2   3   4  10  15  25 200 250    800
5599  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5600     Programs Available: PP0055, X000055P, PP0723
5601*/
5602   ROM_REGION( 0x10000, "maincpu", 0 )
5603   ROM_LOAD( "xp000104.u67",   0x00000, 0x10000, CRC(53dbef8a) SHA1(0be0d0f0ac33ae86e79ba7a1151a281774f80af9) ) /*  04/06/98   @ IGT  L98-0910  */
5604
5605   ROM_REGION( 0x10000, "user1", 0 )
5606   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5607
5608   ROM_REGION( 0x020000, "gfx1", 0 )
5609   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5610   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5611   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5612   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5613
5614   ROM_REGION( 0x200, "proms", 0 )
5615   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5616ROM_END
5617
5618ROM_START( pex0055pq ) /* Superboard : Deuces Wild Poker (X000055P+XP000112) */
5619/*
5620                                        w/D     w/oD
5621PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5622------------------------------------------------------------
5623  P32A      1    2    2   3   4  10  15  25 200 250    800
5624  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5625     Programs Available: PP0055, X000055P, PP0723
5626*/
5627   ROM_REGION( 0x10000, "maincpu", 0 )
5628   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) ) /* No Double-up */
5629
5630   ROM_REGION( 0x10000, "user1", 0 )
5631   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5632
5633   ROM_REGION( 0x020000, "gfx1", 0 )
5634   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5635   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5636   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5637   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5638
5639   ROM_REGION( 0x200, "proms", 0 )
5640   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5641ROM_END
5642
5643ROM_START( pex0055pr ) /* Superboard : Deuces Wild Poker (X000055P+XP000126) */
5644/*
5645                                        w/D     w/oD
5646PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5647------------------------------------------------------------
5648  P32A      1    2    2   3   4  10  15  25 200 250    800
5649  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 45.1%
5650     Programs Available: PP0055, X000055P, PP0723
5651*/
5652   ROM_REGION( 0x10000, "maincpu", 0 )
5653   ROM_LOAD( "xp000126.u67",   0x00000, 0x10000, CRC(e41685ac) SHA1(a81ad3f352eebcc0684fc20c73a6935288207215) ) /* English / Spanish */
5654
5655   ROM_REGION( 0x10000, "user1", 0 )
5656   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
5657
5658   ROM_REGION( 0x020000, "gfx1", 0 )
5659   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) ) /* Contains needed English / Spanish graphics */
5660   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
5661   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
5662   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
5663
5664   ROM_REGION( 0x200, "proms", 0 )
5665   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5666ROM_END
5667
5668ROM_START( pex0060p ) /* Superboard : Standard Draw Poker (X000060P+XP000038) */
5669/*
5670PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5671----------------------------------------------------------
5672   GA       1    2    3    4    5   6  25  50 250    800
5673  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
5674     Programs Available: PP0060, X000060P & PP0420 - Non Double-up Only
5675*/
5676   ROM_REGION( 0x10000, "maincpu", 0 )
5677   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5678
5679   ROM_REGION( 0x10000, "user1", 0 )
5680   ROM_LOAD( "x000060p.u66",   0x00000, 0x10000, CRC(1ec1ad4d) SHA1(19bc46fe86e0ff23c43ffc072b1c461b60481f0f) ) /* Standard Draw Poker */
5681
5682   ROM_REGION( 0x020000, "gfx1", 0 )
5683   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5684   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5685   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5686   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5687
5688   ROM_REGION( 0x200, "proms", 0 )
5689   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5690ROM_END
5691
5692ROM_START( pex0124p ) /* Superboard : Deuces Wild Poker (X000124P+XP000053) */
5693/*
5694                                        w/D     w/oD
5695PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5696----------------------------------------------------------
5697  P59A      1    2    3   4   4   9  12  20 200 250    800
5698  % Range: 93.1-95.1%  Optimum: 97.1%  Hit Frequency: 44.4%
5699     Programs Available: PP0124, X000124P
5700*/
5701   ROM_REGION( 0x10000, "maincpu", 0 )
5702   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
5703
5704   ROM_REGION( 0x10000, "user1", 0 )
5705   ROM_LOAD( "x000124p.u66",   0x00000, 0x10000, CRC(08096310) SHA1(34d41a67ecdab93be3af0cd33fcdacfe75da6c08) ) /* Deuces Wild Poker */
5706
5707   ROM_REGION( 0x020000, "gfx1", 0 )
5708   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5709   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5710   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5711   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5712
5713   ROM_REGION( 0x200, "proms", 0 )
5714   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5715ROM_END
5716
5717ROM_START( pex0150p ) /* Superboard : Standard Draw Poker (X000150P+XP000038) */
5718/*
5719PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5720----------------------------------------------------------
5721   KK       1    2    3    4    6   9  25  50 500    500
5722  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 45.5%
5723     Programs Available: PP0150, X000150P
5724*/
5725   ROM_REGION( 0x10000, "maincpu", 0 )
5726   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5727
5728   ROM_REGION( 0x10000, "user1", 0 )
5729   ROM_LOAD( "x000150p.u66",   0x00000, 0x10000, CRC(d10759fa) SHA1(eae633d03ac9db86520a70825ac0a59ee9ebc819) ) /* Standard Draw Poker */
5730
5731   ROM_REGION( 0x020000, "gfx1", 0 )
5732   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5733   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5734   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5735   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5736
5737   ROM_REGION( 0x200, "proms", 0 )
5738   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5739ROM_END
5740
5741ROM_START( pex0158p ) /* Superboard : 4 of a Kind Bonus Poker (X000158P+XP000038) */
5742/*
5743                                       5-K 2-4
5744PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
5745------------------------------------------------------------------
5746  P77A      1    2    3    4    5   8  25  40  80  50 250    800
5747  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
5748     Programs Available: PP0158, X000158P
5749*/
5750   ROM_REGION( 0x10000, "maincpu", 0 )
5751   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5752
5753   ROM_REGION( 0x10000, "user1", 0 )
5754   ROM_LOAD( "x000158p.u66",   0x00000, 0x10000, CRC(51a8a294) SHA1(f76992729ceaca18af82ab2fb3403dc5a48b7e8a) ) /* 4 of a Kind Bonus Poker */
5755
5756   ROM_REGION( 0x020000, "gfx1", 0 )
5757   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
5758   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
5759   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
5760   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
5761
5762   ROM_REGION( 0x200, "proms", 0 )
5763   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5764ROM_END
5765
5766ROM_START( pex0171p ) /* Superboard : Joker Poker (X000171P+XP000038) */
5767/*
5768                                            w/J     w/oJ
5769PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
5770----------------------------------------------------------------
5771   YA       1    1   2   3    5   7  15  50 100 200 400    800
5772  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.2%
5773     Programs Available: PP0171, X000171P
5774*/
5775   ROM_REGION( 0x10000, "maincpu", 0 )
5776   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5777
5778   ROM_REGION( 0x10000, "user1", 0 )
5779   ROM_LOAD( "x000171p.u66",   0x00000, 0x10000, CRC(01e7a3f7) SHA1(a81018fd0b659b3d83cfdc9e6db1f387779bbe98) ) /* Joker Poker */
5780
5781   ROM_REGION( 0x020000, "gfx1", 0 )
5782   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5783   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5784   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5785   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5786
5787   ROM_REGION( 0x200, "proms", 0 )
5788   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5789ROM_END
5790
5791ROM_START( pex0188p ) /* Superboard : Standard Draw Poker (X000188P+XP000038) */
5792/*
5793PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5794----------------------------------------------------------
5795  P40A      1    2    3    4    6   9  15  40 250    800
5796  % Range: 86.5-88.5%  Optimum: 92.5%  Hit Frequency: 45.5%
5797     Programs Available: PP0188, X000188P
5798*/
5799   ROM_REGION( 0x10000, "maincpu", 0 )
5800   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5801
5802   ROM_REGION( 0x10000, "user1", 0 )
5803   ROM_LOAD( "x000188p.u66",   0x00000, 0x10000, CRC(3eb7580e) SHA1(86f2280542fb8a55767efd391d0fb04a12ed9408) ) /* Standard Draw Poker */
5804
5805   ROM_REGION( 0x020000, "gfx1", 0 )
5806   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5807   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5808   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5809   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5810
5811   ROM_REGION( 0x200, "proms", 0 )
5812   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5813ROM_END
5814
5815ROM_START( pex0190p ) /* Superboard : Deuces Wild Poker (X000190P+XP000053) */
5816/*
5817                                        w/D     w/oD
5818PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5819------------------------------------------------------------
5820  P57A      1    2    3   4   4   8  10  20 200 250    800
5821  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
5822     Programs Available: PP0417, X000417P, X000190P & PP0190 - Non Double-up Only
5823*/
5824   ROM_REGION( 0x10000, "maincpu", 0 )
5825   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
5826
5827   ROM_REGION( 0x10000, "user1", 0 )
5828   ROM_LOAD( "x000190p.u66",   0x00000, 0x10000, CRC(17cc52f6) SHA1(90818df05c6bba3ffcbc2047c7eedea31abdc05a) ) /* Deuces Wild Poker */
5829
5830   ROM_REGION( 0x020000, "gfx1", 0 )
5831   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5832   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5833   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5834   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5835
5836   ROM_REGION( 0x200, "proms", 0 )
5837   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5838ROM_END
5839
5840ROM_START( pex0197p ) /* Superboard : Standard Draw Poker (X000197P+XP000038) */
5841/*
5842PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
5843----------------------------------------------------------
5844   BA       1    2    3    4    5   8  25  50 250   1000
5845  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 45.3%
5846     Programs Available: PP0197, X000197P & PP0419 - Non Double-up Only
5847*/
5848   ROM_REGION( 0x10000, "maincpu", 0 )
5849   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5850
5851   ROM_REGION( 0x10000, "user1", 0 )
5852   ROM_LOAD( "x000197p.u66",   0x00000, 0x10000, CRC(13394826) SHA1(c9325b2ed47267b2918a3bf365b90338134ce9c7) ) /* Standard Draw Poker */
5853
5854   ROM_REGION( 0x020000, "gfx1", 0 )
5855   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5856   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5857   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5858   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5859
5860   ROM_REGION( 0x200, "proms", 0 )
5861   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5862ROM_END
5863
5864ROM_START( pex0203p ) /* Superboard : 4 of a Kind Bonus Poker (X000203P+XP000038) */
5865/*
5866                                       5-K 2-4
5867PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
5868------------------------------------------------------------------
5869  P90A      1    2    3    4    5   7  25  40  80  50 250    800
5870  % Range: 94.0-96.0%  Optimum: 98.0%  Hit Frequency: 45.5%
5871     Programs Available: PP0203, X000203P, PP0590 & PP0409 - Non Double-up Only
5872*/
5873   ROM_REGION( 0x10000, "maincpu", 0 )
5874   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5875
5876   ROM_REGION( 0x10000, "user1", 0 )
5877   ROM_LOAD( "x000203p.u66",   0x00000, 0x10000, CRC(8e5dc66e) SHA1(e3030598e42e7a76e608d5edfaf263aadc2caf85) ) /* 4 of a Kind Bonus Poker */
5878
5879   ROM_REGION( 0x020000, "gfx1", 0 )
5880   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
5881   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
5882   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
5883   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
5884
5885   ROM_REGION( 0x200, "proms", 0 )
5886   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5887ROM_END
5888
5889ROM_START( pex0224p ) /* Superboard : Deuces Wild Poker (X000224P+XP000053) */
5890/*
5891                                        w/D     w/oD
5892PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5893------------------------------------------------------------
5894  P47A      1    2    2   3   4  13  16  25 200 250    800
5895  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.9%
5896     Programs Available: PP0290, X000224P & PP0224 - Non Double-up Only
5897*/
5898   ROM_REGION( 0x10000, "maincpu", 0 )
5899   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
5900
5901   ROM_REGION( 0x10000, "user1", 0 )
5902   ROM_LOAD( "x000224p.u66",   0x00000, 0x10000, CRC(69ca6ac7) SHA1(e6f119b69f769a1f484a4ced3eb4d9e5406f0b09) ) /* Deuces Wild Poker */
5903
5904   ROM_REGION( 0x020000, "gfx1", 0 )
5905   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5906   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5907   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5908   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5909
5910   ROM_REGION( 0x200, "proms", 0 )
5911   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5912ROM_END
5913
5914ROM_START( pex0225p ) /* Superboard : Dueces Joker Wild Poker 1-100 Coins (X000225P+XP000079) */
5915/*
5916                                         With  w/o  w/o  With
5917                                         Wild  JKR  Wild JKR
5918PayTable   3K   STR  FL  FH  4K  SF  5K   RF    4D   RF   4D  (Bonus)
5919---------------------------------------------------------------------
5920  P76N      1    1    3   3   3   6   9   12    25  800  1000  2000
5921  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 50.4%
5922     Programs Available: PP0431, PP0812, PP0813, X000225P & PP0225 - Non Double-up Only
5923*/
5924   ROM_REGION( 0x10000, "maincpu", 0 )
5925   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
5926
5927   ROM_REGION( 0x10000, "user1", 0 )
5928   ROM_LOAD( "x000225p.u66",   0x00000, 0x10000, CRC(d965dd5e) SHA1(1f3e3acb9319e26fa8563f57d1c75940a4445959) ) /* Dueces Joker Wild Poker */
5929
5930   ROM_REGION( 0x020000, "gfx1", 0 )
5931   ROM_LOAD( "mro-cg2242.u77",  0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) )
5932   ROM_LOAD( "mgo-cg2242.u78",  0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) )
5933   ROM_LOAD( "mbo-cg2242.u79",  0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) )
5934   ROM_LOAD( "mxo-cg2242.u80",  0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) )
5935
5936   ROM_REGION( 0x200, "proms", 0 )
5937   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5938ROM_END
5939
5940ROM_START( pex0242p ) /* Superboard : Deuces Wild Poker (X000242P+XP000053) */
5941/*
5942                                        w/D     w/oD
5943PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5944------------------------------------------------------------
5945  P56A      1    2    3   3   4   8  10  20 200 250    800
5946  % Range: 89.4-91.4%  Optimum: 93.4%  Hit Frequency: 45.1%
5947     Programs Available: PP0242, X000242P
5948*/
5949   ROM_REGION( 0x10000, "maincpu", 0 )
5950   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
5951
5952   ROM_REGION( 0x10000, "user1", 0 )
5953   ROM_LOAD( "x000242p.u66",   0x00000, 0x10000, CRC(e0292d63) SHA1(8d8ec5dc1abaf8e8a8a7451d3a814023d8195fb5) ) /* Deuces Wild Poker */
5954
5955   ROM_REGION( 0x020000, "gfx1", 0 )
5956   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
5957   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
5958   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
5959   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
5960
5961   ROM_REGION( 0x200, "proms", 0 )
5962   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5963ROM_END
5964
5965ROM_START( pex0265p ) /* Superboard : 4 of a Kind Bonus Poker (X000265P+XP000038) */
5966/*
5967                                       5-K 2-4
5968PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
5969------------------------------------------------------------------
5970 P101A      1    2    3    4    5   6  25  40  80  50 250    800
5971  % Range: 92.5-94.5%  Optimum: 96.9%  Hit Frequency: 45.5%
5972     Programs Available: PP0265, X000265P, PP0403 & PP0410 - Non Double-up Only
5973*/
5974   ROM_REGION( 0x10000, "maincpu", 0 )
5975   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
5976
5977   ROM_REGION( 0x10000, "user1", 0 )
5978   ROM_LOAD( "x000265p.u66",   0x00000, 0x10000, CRC(70a7ab9b) SHA1(3574f89406da12e6a48e5e2c45cad0ba7ee4caf3) ) /* 4 of a Kind Bonus Poker */
5979
5980   ROM_REGION( 0x020000, "gfx1", 0 )
5981   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
5982   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
5983   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
5984   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
5985
5986   ROM_REGION( 0x200, "proms", 0 )
5987   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
5988ROM_END
5989
5990ROM_START( pex0291p ) /* Superboard : Deuces Wild Poker (X000291P+XP000053) */
5991/*
5992                                        w/D     w/oD
5993PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
5994------------------------------------------------------------
5995  P62A      1    2    3   4   4   9  15  25 200 250    800
5996  % Range: 94.9-96.9%  Optimum: 98.9%  Hit Frequency: 44.4%
5997     Programs Available: PP0418, X000291P & PP0291 - Non Double-up Only
5998*/
5999   ROM_REGION( 0x10000, "maincpu", 0 )
6000   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
6001
6002   ROM_REGION( 0x10000, "user1", 0 )
6003   ROM_LOAD( "x000291p.u66",   0x00000, 0x10000, CRC(7aa72bbd) SHA1(f754b85579720abd2efd57efa31091bca3c01425) ) /* Deuces Wild Poker */
6004
6005   ROM_REGION( 0x020000, "gfx1", 0 )
6006   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6007   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6008   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6009   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6010
6011   ROM_REGION( 0x200, "proms", 0 )
6012   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6013ROM_END
6014
6015ROM_START( pex0417p ) /* Superboard : Deuces Wild Poker (X000417P+XP000053) */
6016/*
6017                                        w/D     w/oD
6018PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
6019-----------------------------------------------------------
6020  P57A      1    2    3   4   4   8  10  20 200 250    800
6021  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: 44.5%
6022     Programs Available: PP0417, X000417P & PP0190 - Non Double-up Only
6023*/
6024   ROM_REGION( 0x10000, "maincpu", 0 )
6025   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
6026
6027   ROM_REGION( 0x10000, "user1", 0 )
6028   ROM_LOAD( "x000417p.u66",   0x00000, 0x10000, CRC(8c80433d) SHA1(508f49522fa391ca39523829c0dda6af7c99a5fe) ) /* Deuces Wild Poker */
6029
6030   ROM_REGION( 0x020000, "gfx1", 0 )
6031   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6032   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6033   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6034   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6035
6036   ROM_REGION( 0x200, "proms", 0 )
6037   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6038ROM_END
6039
6040ROM_START( pex0430p ) /* Superboard : Dueces Joker Wild Poker (X000430P+XP000079) */
6041/*
6042                                         With  w/o  w/o  With
6043                                         Wild  JKR  Wild JKR
6044PayTable   3K   STR  FL  FH  4K  SF  5K   RF    4D   RF   4D  (Bonus)
6045---------------------------------------------------------------------
6046  P73N      1    2    3   3   3   5   8   10    25  800  1000  2000
6047  % Range: 93.2-95.2%  Optimum: 97.2%  Hit Frequency: 50.5%
6048     Programs Available: PP0430, X000430P
6049*/
6050   ROM_REGION( 0x10000, "maincpu", 0 )
6051   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
6052
6053   ROM_REGION( 0x10000, "user1", 0 )
6054   ROM_LOAD( "x000430p.u66",   0x00000, 0x10000, CRC(905571e3) SHA1(fd506516fed22842df8e9dbb3683dcb4c459719b) ) /* Dueces Joker Wild Poker */
6055
6056   ROM_REGION( 0x020000, "gfx1", 0 )
6057   ROM_LOAD( "mro-cg2242.u77",  0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) )
6058   ROM_LOAD( "mgo-cg2242.u78",  0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) )
6059   ROM_LOAD( "mbo-cg2242.u79",  0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) )
6060   ROM_LOAD( "mxo-cg2242.u80",  0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) )
6061
6062   ROM_REGION( 0x200, "proms", 0 )
6063   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6064ROM_END
6065
6066ROM_START( pex0434p ) /* Superboard : Bonus Poker Deluxe (X000434P+XP000038) */
6067/*
6068PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
6069----------------------------------------------------------
6070  P200A     1    1    3    4    6   8  80  50 250    800
6071  % Range: 94.5-96.5%  Optimum: 98.5%  Hit Frequency: 45.2%
6072     Programs Available: PP0434, X000434P & PP0713 - Non Double-up Only
6073*/
6074   ROM_REGION( 0x10000, "maincpu", 0 )
6075   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6076
6077   ROM_REGION( 0x10000, "user1", 0 )
6078   ROM_LOAD( "x000434p.u66",   0x00000, 0x10000, CRC(5a3ad28b) SHA1(d4f103c7ce3c4f72728450ab015aca8ef10cd79c) ) /* Bonus Poker Deluxe */
6079
6080   ROM_REGION( 0x020000, "gfx1", 0 )
6081   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6082   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6083   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6084   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6085
6086   ROM_REGION( 0x200, "proms", 0 )
6087   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6088ROM_END
6089
6090ROM_START( pex0447p ) /* Superboard : Standard Draw Poker (X000447P+XP000038) */
6091/*
6092PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
6093---------------------------------------------------------
6094  CA        1    2    3   4    6   9  25  50 250    800
6095  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 45.5%
6096     Programs Available: PP0447, X000447P
6097*/
6098   ROM_REGION( 0x10000, "maincpu", 0 )
6099   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6100
6101   ROM_REGION( 0x10000, "user1", 0 )
6102   ROM_LOAD( "x000447p.u66",   0x00000, 0x10000, CRC(4d3ab095) SHA1(337255658242816dc552432aee328fa52e556793) ) /* Standard Draw Poker */
6103
6104   ROM_REGION( 0x020000, "gfx1", 0 )
6105   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6106   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6107   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6108   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6109
6110   ROM_REGION( 0x200, "proms", 0 )
6111   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6112ROM_END
6113
6114ROM_START( pex0449p ) /* Superboard : Standard Draw Poker (X000449P+XP000038) */
6115/*
6116PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
6117----------------------------------------------------------
6118  P11A      1    2    3    4    5   9  25  50 250    800
6119  % Range: 92.1-94.1%  Optimum: 96.1%  Hit Frequency: 45.5%
6120     Programs Available: PP0221, PP0449, X000449P & PP0585 - Non Double-up Only
6121*/
6122   ROM_REGION( 0x10000, "maincpu", 0 )
6123   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6124
6125   ROM_REGION( 0x10000, "user1", 0 )
6126   ROM_LOAD( "x000449p.u66",   0x00000, 0x10000, CRC(6c22b0b3) SHA1(47cb1b8edb3e1d5d2055a7a31a1dfb46b4fd6391) ) /* Standard Draw Poker */
6127
6128   ROM_REGION( 0x020000, "gfx1", 0 )
6129   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6130   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6131   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6132   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6133
6134   ROM_REGION( 0x200, "proms", 0 )
6135   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6136ROM_END
6137
6138ROM_START( pex0451p ) /* Superboard : Bonus Poker Deluxe (X000451P+XP000038) */
6139/*
6140PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
6141----------------------------------------------------------
6142  P253A     1    1    3    4    5   8  80  50 250    800
6143  % Range: 93.4-95.4%  Optimum: 97.4%  Hit Frequency: 45.2%
6144     Programs Available: PP0451, X000451P
6145*/
6146   ROM_REGION( 0x10000, "maincpu", 0 )
6147   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6148
6149   ROM_REGION( 0x10000, "user1", 0 )
6150   ROM_LOAD( "x000451p.u66",   0x00000, 0x10000, CRC(4f11e26c) SHA1(6cea3cbef530ef4ece2a4351cbd9ead5b66bb359) ) /* Bonus Poker Deluxe */
6151
6152   ROM_REGION( 0x020000, "gfx1", 0 )
6153   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6154   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6155   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6156   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6157
6158   ROM_REGION( 0x200, "proms", 0 )
6159   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6160ROM_END
6161
6162ROM_START( pex0452p ) /* Superboard : Double Deuces Wild Poker (X000452P+XP000038) */
6163/*
6164                                        w/D     wo/D
6165PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
6166------------------------------------------------------------
6167  P236A     1    2    2   3   4  11  16  25 400 250    800
6168  % Range: 95.6-97.6%  Optimum: 99.6%  Hit Frequency: 45.1%
6169     Programs Available: PP0452, X000452P
6170*/
6171   ROM_REGION( 0x10000, "maincpu", 0 )
6172   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6173
6174   ROM_REGION( 0x10000, "user1", 0 )
6175   ROM_LOAD( "x000452p.u66",   0x00000, 0x10000, CRC(a96c7a71) SHA1(6be1012e68035fbc9aa5e0e6ea3a6c54c1864b1b) ) /* Double Deuces Wild Poker */
6176
6177   ROM_REGION( 0x020000, "gfx1", 0 )
6178   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6179   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6180   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6181   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6182
6183   ROM_REGION( 0x200, "proms", 0 )
6184   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6185ROM_END
6186
6187ROM_START( pex0454p ) /* Superboard : Bonus Poker Deluxe (X000454P+XP000038) */
6188/*
6189PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
6190----------------------------------------------------------
6191  P253A     1    1    3    4    5   7  80  50 250    800
6192  % Range: 92.3-94.3%  Optimum: 96.3%  Hit Frequency: 45.2%
6193     Programs Available: PP0454, X000454P
6194*/
6195   ROM_REGION( 0x10000, "maincpu", 0 )
6196   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6197
6198   ROM_REGION( 0x10000, "user1", 0 )
6199   ROM_LOAD( "x000454p.u66",   0x00000, 0x10000, CRC(93934ae4) SHA1(f243c66e23269e5509bf1306e9e37a579b08fda4) ) /* Bonus Poker Deluxe */
6200
6201   ROM_REGION( 0x020000, "gfx1", 0 )
6202   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6203   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6204   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6205   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6206
6207   ROM_REGION( 0x200, "proms", 0 )
6208   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6209ROM_END
6210
6211ROM_START( pex0458p ) /* Superboard : Joker Poker (X000458P+XP000038) */
6212/*
6213                                            w/J     w/oJ
6214PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6215----------------------------------------------------------------
6216  P18A      1    1   2   3    5   6  20  50 100 200 500    800
6217  % Range: 89.8-91.8%  Optimum: 93.8%  Hit Frequency: 37.6%
6218     Programs Available: PP0458, X000458P & PP0429 - Non Double-up Only
6219*/
6220   ROM_REGION( 0x10000, "maincpu", 0 )
6221   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6222
6223   ROM_REGION( 0x10000, "user1", 0 )
6224   ROM_LOAD( "x000458p.u66",   0x00000, 0x10000, CRC(dcd20558) SHA1(22c99a265431b0ef8199d3cb69fbbc4aff822dc0) ) /* Joker Poker */
6225
6226   ROM_REGION( 0x020000, "gfx1", 0 )
6227   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6228   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6229   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6230   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6231
6232   ROM_REGION( 0x200, "proms", 0 )
6233   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6234ROM_END
6235
6236ROM_START( pex0459p ) /* Superboard : Joker Poker (X000459P+XP000038) */
6237/*
6238                                            w/J     w/oJ
6239PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6240----------------------------------------------------------------
6241  P17A      1    1   2   3    4   5  20  40 100 200 500    800
6242  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
6243     Programs Available: PP0459, X000459P & PP0428 - Non Double-up Only
6244*/
6245   ROM_REGION( 0x10000, "maincpu", 0 )
6246   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6247
6248   ROM_REGION( 0x10000, "user1", 0 )
6249   ROM_LOAD( "x000459p.u66",   0x00000, 0x10000, CRC(03cef341) SHA1(3813c4781ca6d164880f6d06a7d6dbae29012e7d) ) /* Joker Poker */
6250
6251   ROM_REGION( 0x020000, "gfx1", 0 )
6252   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6253   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6254   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6255   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6256
6257   ROM_REGION( 0x200, "proms", 0 )
6258   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6259ROM_END
6260
6261ROM_START( pex0459pa ) /* Superboard : Joker Poker (X000459P+XP000155) - Use SET038 to set Denomination for this game */
6262/*
6263                                            w/J     w/oJ
6264PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6265----------------------------------------------------------------
6266  P17A      1    1   2   3    4   5  20  40 100 200 500    800
6267  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
6268     Programs Available: PP0459, X000459P & PP0428 - Non Double-up Only
6269*/
6270   ROM_REGION( 0x10000, "maincpu", 0 )
6271   ROM_LOAD( "xp000155.u67",   0x00000, 0x10000, CRC(13d2cc01) SHA1(8d5a7d7a2e1e811d3f99a7eb4f662d02751d45a6) )
6272
6273   ROM_REGION( 0x10000, "user1", 0 )
6274   ROM_LOAD( "x000459p.u66",   0x00000, 0x10000, CRC(03cef341) SHA1(3813c4781ca6d164880f6d06a7d6dbae29012e7d) ) /* Joker Poker */
6275
6276   ROM_REGION( 0x020000, "gfx1", 0 )
6277   ROM_LOAD( "mro-cg2296.u77",  0x00000, 0x8000, CRC(d0d92665) SHA1(2c686ee28b69ff975951ccafd8e5030fde640773) ) /* Slovenia + XP000155 */
6278   ROM_LOAD( "mgo-cg2296.u78",  0x08000, 0x8000, CRC(d05fd16e) SHA1(f66b5ba8b4cf4f97ed46ec44cef43fed29bdd492) )
6279   ROM_LOAD( "mbo-cg2296.u79",  0x10000, 0x8000, CRC(6db6a435) SHA1(7ea0d6df1f7e0c4fe389437bf04d1f5a798c68ef) )
6280   ROM_LOAD( "mxo-cg2296.u80",  0x18000, 0x8000, CRC(4faeb79e) SHA1(f69277b729ba88860efc6b9a3d4956f245cc2943) )
6281
6282   ROM_REGION( 0x200, "proms", 0 )
6283   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6284ROM_END
6285
6286ROM_START( pex0508p ) /* Superboard : Loose Deuce Deuces Wild Poker (X000508P+XP000038) */
6287/*
6288                                       w/D     W/oD
6289PayTable   3K  STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
6290-----------------------------------------------------------
6291  P313A     1    2   2   3   4   8  12  25 500 250    800
6292  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.2%
6293     Programs Available: PP0508, X000508P
6294*/
6295   ROM_REGION( 0x10000, "maincpu", 0 )
6296   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6297
6298   ROM_REGION( 0x10000, "user1", 0 )
6299   ROM_LOAD( "x000508p.u66",   0x00000, 0x10000, CRC(5efde4b4) SHA1(ead7448464aecc03748f04e4d6e9f346d262cd96) ) /* Loose Deuce Deuces Wild Poker */
6300
6301   ROM_REGION( 0x020000, "gfx1", 0 )
6302   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6303   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6304   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6305   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6306
6307   ROM_REGION( 0x200, "proms", 0 )
6308   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6309ROM_END
6310
6311ROM_START( pex0514p ) /* Superboard : Double Double Bonus Poker (X000514P+XP000038) */
6312/*
6313                                      5-K 2-4
6314PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6315-----------------------------------------------------------------
6316  P323A     1    1    3   5    7   9  50  80 160  50 250    800
6317  % Range: 95.1-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
6318     Programs Available: PP0514, X000514P & PP0538 - Non Double-up Only
6319*/
6320   ROM_REGION( 0x10000, "maincpu", 0 )
6321   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6322
6323   ROM_REGION( 0x10000, "user1", 0 )
6324   ROM_LOAD( "x000514p.u66",   0x00000, 0x10000, CRC(32cf8696) SHA1(83992695d3af4de10d0e53e01558faad18cdc221) ) /* Double Bonus Poker */
6325
6326   ROM_REGION( 0x020000, "gfx1", 0 )
6327   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6328   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6329   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6330   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6331
6332   ROM_REGION( 0x200, "proms", 0 )
6333   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6334ROM_END
6335
6336ROM_START( pex0515p ) /* Superboard : Double Double Bonus Poker (X000515P+XP000038) */
6337/*
6338                                      5-K 2-4
6339PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6340-----------------------------------------------------------------
6341  P324A     1    1    3   5    7  10  50  80 160  50 250    800
6342  % Range: 96.2-98.2%  Optimum: 100.2%  Hit Frequency: 43.3%
6343     Programs Available: PP0515, X000515P & PP0539 - Non Double-up Only
6344*/
6345   ROM_REGION( 0x10000, "maincpu", 0 )
6346   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6347
6348   ROM_REGION( 0x10000, "user1", 0 )
6349   ROM_LOAD( "x000515p.u66",   0x00000, 0x10000, CRC(4311224a) SHA1(69e6657dacd6e09c2d1514417994adc561f63a83) ) /* Double Bonus Poker */
6350
6351   ROM_REGION( 0x020000, "gfx1", 0 )
6352   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6353   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6354   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6355   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6356
6357   ROM_REGION( 0x200, "proms", 0 )
6358   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6359ROM_END
6360
6361ROM_START( pex0516p ) /* Superboard : Double Double Bonus Poker (X000516P+XP000038) */
6362/*
6363                                      5-K 2-4
6364PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6365-----------------------------------------------------------------
6366  P325A     1    2    3   4    5   8  50  80 160  50 250    800
6367  % Range: 93.8-95.8%  Optimum: 97.8%  Hit Frequency: 44.5%
6368     Programs Available: PP0516, X000516P & PP0540 - Non Double-up Only
6369*/
6370   ROM_REGION( 0x10000, "maincpu", 0 )
6371   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6372
6373   ROM_REGION( 0x10000, "user1", 0 )
6374   ROM_LOAD( "x000516p.u66",   0x00000, 0x10000, CRC(37f84ce7) SHA1(2e5157d02febec0ff31eb5a23254f7c49a486cf5) ) /* Double Bonus Poker */
6375
6376   ROM_REGION( 0x020000, "gfx1", 0 )
6377   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6378   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6379   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6380   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6381
6382   ROM_REGION( 0x200, "proms", 0 )
6383   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6384ROM_END
6385
6386ROM_START( pex0536p ) /* Superboard : Joker Poker (X000536P+XP000038) */
6387/*
6388                                            w/J     w/oJ
6389PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6390----------------------------------------------------------------
6391 P244D      1    1   2   3    5   7  17  50 100 200 400    940
6392  % Range: 94.4-96.4%  Optimum: 98.4%  Hit Frequency: 44.1%
6393     Programs Available: PP0536, X000536P
6394*/
6395   ROM_REGION( 0x10000, "maincpu", 0 )
6396   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6397
6398   ROM_REGION( 0x10000, "user1", 0 )
6399   ROM_LOAD( "x000536p.u66",   0x00000, 0x10000, CRC(0b18dc1b) SHA1(07350fe258441f8565bfd875342823149b7757f1) ) /* Joker Poker */
6400
6401   ROM_REGION( 0x020000, "gfx1", 0 )
6402   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6403   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6404   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6405   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6406
6407   ROM_REGION( 0x200, "proms", 0 )
6408   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6409ROM_END
6410
6411ROM_START( pex0537p ) /* Superboard : Standard Draw Poker (X000537P+XP000038) */
6412/*
6413PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
6414----------------------------------------------------------
6415 P259A      1    2    3    4    5   7  35  50 250    800
6416  % Range: 92.2-94.2%  Optimum: 96.2%  Hit Frequency: 45.5%
6417     Programs Available: PP0537, X000537P
6418
6419Some call this a 4 of a Kind Bonus Poker with all 4K paying the same. Internally it's classified as Standard Draw Poker
6420
6421*/
6422   ROM_REGION( 0x10000, "maincpu", 0 )
6423   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6424
6425   ROM_REGION( 0x10000, "user1", 0 )
6426   ROM_LOAD( "x000537p.u66",   0x00000, 0x10000, CRC(a0c97fde) SHA1(a152b5e99a425127246b2200b7599c17e28479bd) ) /* Standard Draw Poker */
6427
6428   ROM_REGION( 0x020000, "gfx1", 0 )
6429   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6430   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6431   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6432   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6433
6434   ROM_REGION( 0x200, "proms", 0 )
6435   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6436ROM_END
6437
6438ROM_START( pex0550p ) /* Superboard : Joker Poker (X000550P+XP000055) */
6439/*
6440                                       w/J     w/oJ
6441PayTable   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6442-----------------------------------------------------------
6443   NA       1   2   4    5   8  16 100 100 400 100    800
6444  % Range: 93.2-95.2%  Optimum: 97.2%  Hit Frequency: 30.1%
6445     Programs Available: X000550P
6446
6447Internally the program erroneously reports a 95.50% return. Superseded by X002338P
6448
6449*/
6450   ROM_REGION( 0x10000, "maincpu", 0 )
6451   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
6452
6453   ROM_REGION( 0x10000, "user1", 0 )
6454   ROM_LOAD( "x000550p.u66",   0x00000, 0x10000, CRC(8a320403) SHA1(751a83ba25ffdae4b8d745bdec6ecdebf351efa0) ) /* Joker Poker */
6455
6456   ROM_REGION( 0x020000, "gfx1", 0 )
6457   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6458   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6459   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6460   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6461
6462   ROM_REGION( 0x200, "proms", 0 )
6463   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6464ROM_END
6465
6466ROM_START( pex0568p ) /* Superboard : Joker Poker (X000568P+XP000038) */
6467/*
6468                                            w/J     w/oJ
6469PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6470----------------------------------------------------------------
6471   YD       1    1   1   3    5   7  15  50 100 200 400    940
6472  % Range: 92.7-94.7%  Optimum: 96.7%  Hit Frequency: 44.1%
6473     Programs Available: PP0568, X000568P & PP0426 - Non Double-up Only
6474*/
6475   ROM_REGION( 0x10000, "maincpu", 0 )
6476   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6477
6478   ROM_REGION( 0x10000, "user1", 0 )
6479   ROM_LOAD( "x000568p.u66",   0x00000, 0x10000, CRC(570e941d) SHA1(db9227d044f55e8d038e3ea0ba72e42e68efcb30) ) /* Joker Poker */
6480
6481   ROM_REGION( 0x020000, "gfx1", 0 )
6482   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6483   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6484   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6485   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6486
6487   ROM_REGION( 0x200, "proms", 0 )
6488   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6489ROM_END
6490
6491ROM_START( pex0581p ) /* Superboard : 4 of a Kind Bonus Poker (X000581P+XP000038) */
6492/*
6493                                      5-K 2-4
6494PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6495-----------------------------------------------------------------
6496  P373A     1    2    2   4    5   8  25  40  80  50 250    800
6497  % Range: 87.7-89.7%  Optimum: 91.7%  Hit Frequency: 45.2%
6498     Programs Available: X000581P, PP0581 - Non Double-up Only
6499*/
6500   ROM_REGION( 0x10000, "maincpu", 0 )
6501   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6502
6503   ROM_REGION( 0x10000, "user1", 0 )
6504   ROM_LOAD( "x000581p.u66",   0x00000, 0x10000, CRC(a4cfecc3) SHA1(b2c805781ba43bda9e208d8c16578dc96b6f58f7) ) /* 4 of a Kind Bonus Poker */
6505
6506   ROM_REGION( 0x020000, "gfx1", 0 )
6507   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6508   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6509   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6510   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6511
6512   ROM_REGION( 0x200, "proms", 0 )
6513   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6514ROM_END
6515
6516ROM_START( pex0588p ) /* Superboard : Joker Poker (X000588P+XP000038) */
6517/*
6518                                            w/J     w/oJ
6519PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
6520----------------------------------------------------------------
6521   ZA       1    1   2   3    5   7  20  50 100 200 400    800
6522  % Range: 99.2-98.2%  Optimum: 100.2%  Hit Frequency: 44.2%
6523     Programs Available: PP0588, X000588
6524*/
6525   ROM_REGION( 0x10000, "maincpu", 0 )
6526   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6527
6528   ROM_REGION( 0x10000, "user1", 0 )
6529   ROM_LOAD( "x000588p.u66",   0x00000, 0x10000, CRC(baa448cc) SHA1(0f1da407304f7dafbe06119d068f7caf99404cb4) ) /* Joker Poker */
6530
6531   ROM_REGION( 0x020000, "gfx1", 0 )
6532   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6533   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6534   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6535   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6536
6537   ROM_REGION( 0x200, "proms", 0 )
6538   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6539ROM_END
6540
6541ROM_START( pex0725p ) /* Superboard : Double Bonus Poker (X000725P+XP000038) */
6542/*
6543                                      5-K 2-4
6544PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6545-----------------------------------------------------------------
6546  P434A     1    1    3   4    6   9  50  80 160  50 250    800
6547  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.9%
6548     Programs Available: PP0725, X000725P
6549*/
6550   ROM_REGION( 0x10000, "maincpu", 0 )
6551   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6552
6553   ROM_REGION( 0x10000, "user1", 0 )
6554   ROM_LOAD( "x000725p.u66",   0x00000, 0x10000, CRC(a56f3910) SHA1(06d0d4a8722e033ff1fbe0947135952ce8274725) ) /* Double Bonus Poker */
6555
6556   ROM_REGION( 0x020000, "gfx1", 0 )
6557   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6558   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6559   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6560   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6561
6562   ROM_REGION( 0x200, "proms", 0 )
6563   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6564ROM_END
6565
6566ROM_START( pex0726p ) /* Superboard : Double Bonus Poker (X000726P+XP000038) */
6567/*
6568                                      5-K 2-4
6569PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6570-----------------------------------------------------------------
6571  P435A     1    1    3   4    5   8  50  80 160  50 250    800
6572  % Range: 90.2-92.2%  Optimum: 94.2%  Hit Frequency: 45.1%
6573     Programs Available: PP0726, X000726P
6574*/
6575   ROM_REGION( 0x10000, "maincpu", 0 )
6576   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6577
6578   ROM_REGION( 0x10000, "user1", 0 )
6579   ROM_LOAD( "x000726p.u66",   0x00000, 0x10000, CRC(800eb7e5) SHA1(cb4c2749d025ab093f26967909d5f366f1cc9cba) ) /* Double Bonus Poker */
6580
6581   ROM_REGION( 0x020000, "gfx1", 0 )
6582   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6583   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6584   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6585   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6586
6587   ROM_REGION( 0x200, "proms", 0 )
6588   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6589ROM_END
6590
6591ROM_START( pex0727p ) /* Superboard : Double Bonus Poker (X000727P+XP000038) */
6592/*
6593                                      5-K 2-4
6594PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6595-----------------------------------------------------------------
6596  P436A     1    1    3   4    5   9  50  80 160  50 250    800
6597  % Range: 91.3-93.3%  Optimum: 95.3%  Hit Frequency: 45.0%
6598     Programs Available: PP0727, X000727P
6599*/
6600   ROM_REGION( 0x10000, "maincpu", 0 )
6601   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6602
6603   ROM_REGION( 0x10000, "user1", 0 )
6604   ROM_LOAD( "x000727p.u66",   0x00000, 0x10000, CRC(4828474c) SHA1(9836b76113a71802df30ca15f7c9a5790e6f1c5b) ) /* Double Bonus Poker */
6605
6606   ROM_REGION( 0x020000, "gfx1", 0 )
6607   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6608   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6609   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6610   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6611
6612   ROM_REGION( 0x200, "proms", 0 )
6613   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6614ROM_END
6615
6616ROM_START( pex0763p ) /* Superboard : 4 of a Kind Bonus Poker (X000763P+XP000038) */
6617/*
6618                                       5-K 2-4
6619PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6620------------------------------------------------------------------
6621 P597A      1    1    3    5    8  10  25  40  80  50 250    800
6622  % Range: 90.2-92.2%  Optimum: 94.2%  Hit Frequency: 42.7%
6623     Programs Available: PP0763, X000763P
6624*/
6625   ROM_REGION( 0x10000, "maincpu", 0 )
6626   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6627
6628   ROM_REGION( 0x10000, "user1", 0 )
6629   ROM_LOAD( "x000763p.u66",   0x00000, 0x10000, CRC(bf7dda7d) SHA1(1a6089d1159c199199e608f3dd2ba7b45a29b31c) ) /* 4 of a Kind Bonus Poker */
6630
6631   ROM_REGION( 0x020000, "gfx1", 0 )
6632   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6633   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6634   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6635   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6636
6637   ROM_REGION( 0x200, "proms", 0 )
6638   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6639ROM_END
6640
6641ROM_START( pex2018p ) /* Superboard : Fullhouse Bonus Poker (X002018P+XP000038) */
6642/*
6643                                      5-K 2-4
6644PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6645-----------------------------------------------------------------
6646  P532A     1    1    3   5    6  12  25  40 200 100 250    800
6647  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.1%
6648     Programs Available: X002018P
6649*/
6650   ROM_REGION( 0x10000, "maincpu", 0 )
6651   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6652
6653   ROM_REGION( 0x10000, "user1", 0 )
6654   ROM_LOAD( "x002018p.u66",   0x00000, 0x10000, CRC(a7b79cfa) SHA1(89216fafffc64fda22a016a906483b76174c3f02) ) /* Full House Bonus Poker */
6655
6656   ROM_REGION( 0x020000, "gfx1", 0 )
6657   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6658   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6659   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6660   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6661
6662   ROM_REGION( 0x200, "proms", 0 )
6663   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6664ROM_END
6665
6666ROM_START( pex2025p ) /* Superboard : Deuces Wild Bonus Poker (X002025P+XP000019) */
6667/*
6668                                   w/D 6-K 3-5         w/A w/oD
6669PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
6670-----------------------------------------------------------------------
6671  P552A     1   1    3   4   4   9  25  20  40  80 200 400 250    800
6672  % Range: 95.5-97.5%  Optimum: 99.5%  Hit Frequency: 41.1%
6673     Programs Available: X002025P
6674*/
6675   ROM_REGION( 0x10000, "maincpu", 0 )
6676   ROM_LOAD( "xp000019.u67",   0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) )
6677
6678   ROM_REGION( 0x10000, "user1", 0 )
6679   ROM_LOAD( "x002025p.u66",   0x00000, 0x10000, CRC(f3dac423) SHA1(e9394d330deb3b8a1001e57e72a506cd9098f161) ) /* Deuces Wild Bonus Poker */
6680
6681   ROM_REGION( 0x020000, "gfx1", 0 )
6682   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6683   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6684   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6685   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6686
6687   ROM_REGION( 0x200, "proms", 0 )
6688   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6689ROM_END
6690
6691ROM_START( pex2026p ) /* Superboard : Deuces Wild Bonus Poker (X002026P+XP000019) */
6692/*
6693                                   w/D 6-K 3-5         w/A w/oD
6694PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
6695-----------------------------------------------------------------------
6696  P553A     1   1    3   3   4  13  25  20  40  80 200 400 250    800
6697  % Range: 94.8-96.8%  Optimum: 98.8%  Hit Frequency: 44.6%
6698     Programs Available: X002026P
6699*/
6700   ROM_REGION( 0x10000, "maincpu", 0 )
6701   ROM_LOAD( "xp000019.u67",   0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) )
6702
6703   ROM_REGION( 0x10000, "user1", 0 )
6704   ROM_LOAD( "x002026p.u66",   0x00000, 0x10000, CRC(7fcbc10a) SHA1(5d50b356ae1a3461a5916b469f85b690b086e675) ) /* Deuces Wild Bonus Poker */
6705
6706   ROM_REGION( 0x020000, "gfx1", 0 )
6707   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6708   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6709   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6710   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6711
6712   ROM_REGION( 0x200, "proms", 0 )
6713   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6714ROM_END
6715
6716ROM_START( pex2027p ) /* Superboard : Deuces Wild Bonus Poker (X002027P+XP000019) */
6717/*
6718                                   w/D 6-K 3-5         w/A w/oD
6719PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
6720-----------------------------------------------------------------------
6721  P554A     1   1    3   3   4  10  25  20  40  80 200 400 250    800
6722  % Range: 93.4-95.4%  Optimum: 97.4%  Hit Frequency: 44.6%
6723     Programs Available: X002027P
6724*/
6725   ROM_REGION( 0x10000, "maincpu", 0 )
6726   ROM_LOAD( "xp000019.u67",   0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) )
6727
6728   ROM_REGION( 0x10000, "user1", 0 )
6729   ROM_LOAD( "x002027p.u66",   0x00000, 0x10000, CRC(40dbc35a) SHA1(56bf79738e35a22d1f23d76cd6197c8949eba3fb) ) /* Deuces Wild Bonus Poker */
6730
6731   ROM_REGION( 0x020000, "gfx1", 0 )
6732   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6733   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6734   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6735   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6736
6737   ROM_REGION( 0x200, "proms", 0 )
6738   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6739ROM_END
6740
6741ROM_START( pex2029p ) /* Superboard : Deuces Wild Bonus Poker (X002029P+XP000019) */
6742/*
6743                                   w/D 6-K 3-5         w/A w/oD
6744PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
6745-----------------------------------------------------------------------
6746  P556A     1   1    2   3   4  10  25  20  40  80 200 400 250    800
6747  % Range: 91.3-93.3%  Optimum: 95.3%  Hit Frequency: 45.0%
6748     Programs Available: X002029P
6749*/
6750   ROM_REGION( 0x10000, "maincpu", 0 )
6751   ROM_LOAD( "xp000019.u67",   0x00000, 0x10000, CRC(8ac876eb) SHA1(105b4aee2692ccb20795586ccbdf722c59db66cf) )
6752
6753   ROM_REGION( 0x10000, "user1", 0 )
6754   ROM_LOAD( "x002029p.u66",   0x00000, 0x10000, CRC(e2f6fb89) SHA1(4b60b580b00b4268d1cb9065ffe0d21f8fa6a931) ) /* Deuces Wild Bonus Poker */
6755
6756   ROM_REGION( 0x020000, "gfx1", 0 )
6757   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6758   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6759   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6760   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6761
6762   ROM_REGION( 0x200, "proms", 0 )
6763   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6764ROM_END
6765
6766ROM_START( pex2031p ) /* Superboard : Lucky Deal Poker (X002031P+XP000112) */
6767/*
6768                                      5-K 2-4
6769PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6770-----------------------------------------------------------------
6771  P566AL    1    1    3   5    7   9  25  40  80  50 250    800
6772  % Range: 93.0-95.0%  Optimum: 97.0%  Hit Frequency: 42.9%
6773     Programs Available: X002031P
6774
6775Straights or Better on the initial deal PAY DOUBLE!
6776
6777*/
6778   ROM_REGION( 0x10000, "maincpu", 0 )
6779   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
6780
6781   ROM_REGION( 0x10000, "user1", 0 )
6782   ROM_LOAD( "x002031p.u66",   0x00000, 0x10000, CRC(c883fbdd) SHA1(c0444ffdac1ffe542d0d6a65f3c810346e2b2e05) ) /* Lucky Deal Poker */
6783
6784   ROM_REGION( 0x020000, "gfx1", 0 )
6785   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
6786   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
6787   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
6788   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
6789
6790   ROM_REGION( 0x200, "proms", 0 )
6791   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6792ROM_END
6793
6794ROM_START( pex2035p ) /* Superboard : White Hot Aces Poker (X002035P+XP000112) */
6795/*
6796                                      5-K 2-4
6797PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6798-----------------------------------------------------------------
6799  P581A     1    1    3   4    5   7  50 120 240  80 250    800
6800  % Range: 93.4-95.4%  Optimum: 97.4%  Hit Frequency: 44.7%
6801     Programs Available: X002035P
6802*/
6803   ROM_REGION( 0x10000, "maincpu", 0 )
6804   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
6805
6806   ROM_REGION( 0x10000, "user1", 0 )
6807   ROM_LOAD( "x002035p.u66",   0x00000, 0x10000, CRC(dc3f0742) SHA1(d57cf3353b81f41895458019e47203f98645f17a) ) /* White Hot Aces Poker */
6808
6809   ROM_REGION( 0x020000, "gfx1", 0 )
6810   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
6811   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
6812   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
6813   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
6814
6815   ROM_REGION( 0x200, "proms", 0 )
6816   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6817ROM_END
6818
6819ROM_START( pex2036p ) /* Superboard : White Hot Aces Poker (X002036P+XP000112) */
6820/*
6821                                      5-K 2-4
6822PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6823-----------------------------------------------------------------
6824  P582A     1    1    3   4    5   6  50 120 240  80 250    800
6825  % Range: 92.4-94.4%  Optimum: 96.4%  Hit Frequency: 44.7%
6826     Programs Available: X002036P
6827*/
6828   ROM_REGION( 0x10000, "maincpu", 0 )
6829   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
6830
6831   ROM_REGION( 0x10000, "user1", 0 )
6832   ROM_LOAD( "x002036p.u66",   0x00000, 0x10000, CRC(69207baf) SHA1(fe038b969106ae5cdc8dde1c06497be9c7b5b8bf) ) /* White Hot Aces Poker */
6833
6834   ROM_REGION( 0x020000, "gfx1", 0 )
6835   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
6836   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
6837   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
6838   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
6839
6840   ROM_REGION( 0x200, "proms", 0 )
6841   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6842ROM_END
6843
6844ROM_START( pex2038p ) /* Superboard : Nevada Bonus Poker (X002038P+XP000038) */
6845/*
6846                                         2-K
6847PayTable   Js+  2PR  3K  3A  STR  FL  FH  4K  4A  SF  RF  (Bonus)
6848-----------------------------------------------------------------
6849  P576A     1    1    3   6   5    7  10  25 200 100 250    800
6850  % Range: 93.2-95.2%  Optimum: 97.2%  Hit Frequency: 43.4%
6851     Programs Available: X002038P
6852*/
6853   ROM_REGION( 0x10000, "maincpu", 0 )
6854   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6855
6856   ROM_REGION( 0x10000, "user1", 0 )
6857   ROM_LOAD( "x002038p.u66",   0x00000, 0x10000, CRC(58d01ba5) SHA1(6d4cde9c9e55967db2b661c7123cce9958a00639) ) /* Nevada Bonus Poker */
6858
6859   ROM_REGION( 0x020000, "gfx1", 0 )
6860   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6861   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6862   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6863   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6864
6865   ROM_REGION( 0x200, "proms", 0 )
6866   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6867ROM_END
6868
6869ROM_START( pex2040p ) /* Superboard : Nevada Bonus Poker (X002040P+XP000038) */
6870/*
6871                                         2-K
6872PayTable   Js+  2PR  3K  3A  STR  FL  FH  4K  4A  SF  RF  (Bonus)
6873-----------------------------------------------------------------
6874  P578A     1    1    3   6   5    6   9  25 200 100 250    800
6875  % Range: 90.8-92.8%  Optimum: 94.8%  Hit Frequency: 44.2%
6876     Programs Available: X002040P
6877*/
6878   ROM_REGION( 0x10000, "maincpu", 0 )
6879   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6880
6881   ROM_REGION( 0x10000, "user1", 0 )
6882   ROM_LOAD( "x002040p.u66",   0x00000, 0x10000, CRC(38acb477) SHA1(894f5861ac84323e50e8972602251f2873988e6c) ) /* Nevada Bonus Poker */
6883
6884   ROM_REGION( 0x020000, "gfx1", 0 )
6885   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
6886   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
6887   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
6888   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
6889
6890   ROM_REGION( 0x200, "proms", 0 )
6891   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6892ROM_END
6893
6894ROM_START( pex2042p ) /* Superboard : Triple Bonus Poker (X002042P+XP000038) */
6895/*
6896                                      5-K 2-4
6897PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6898-----------------------------------------------------------------
6899  P604A     1    1    3   4    7  11  75 120 240  50 250    800
6900  % Range: 95.6-97.6%  Optimum: 99.6%  Hit Frequency: 34.7%
6901     Programs Available: X002042P
6902*/
6903   ROM_REGION( 0x10000, "maincpu", 0 )
6904   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6905
6906   ROM_REGION( 0x10000, "user1", 0 )
6907   ROM_LOAD( "x002042p.u66",   0x00000, 0x10000, CRC(12787a36) SHA1(4ef478cc5c23694ffa6733e2fc47c2b6f545c30a) ) /* Triple Bonus Poker */
6908
6909   ROM_REGION( 0x020000, "gfx1", 0 )
6910   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6911   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6912   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6913   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6914
6915   ROM_REGION( 0x200, "proms", 0 )
6916   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6917ROM_END
6918
6919ROM_START( pex2043p ) /* Superboard : Triple Bonus Poker (X002043P+XP000038) */
6920/*
6921                                      5-K 2-4
6922PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6923-----------------------------------------------------------------
6924  P605A     1    1    3   4    7  10  75 120 240  50 250    800
6925  % Range: 94.5-96.5%  Optimum: 98.5%  Hit Frequency: 34.7%
6926     Programs Available: X002043P
6927*/
6928   ROM_REGION( 0x10000, "maincpu", 0 )
6929   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6930
6931   ROM_REGION( 0x10000, "user1", 0 )
6932   ROM_LOAD( "x002043p.u66",   0x00000, 0x10000, CRC(2cec81ab) SHA1(d28fa9075c63e49d34c463f19e7741609b0b3343) ) /* Triple Bonus Poker */
6933
6934   ROM_REGION( 0x020000, "gfx1", 0 )
6935   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6936   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6937   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6938   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6939
6940   ROM_REGION( 0x200, "proms", 0 )
6941   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6942ROM_END
6943
6944ROM_START( pex2044p ) /* Superboard : Triple Bonus Poker (X002044P+XP000038) */
6945/*
6946                                      5-K 2-4
6947PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6948-----------------------------------------------------------------
6949  P606A     1    1    3   4    7   9  75 120 240  50 250    800
6950  % Range: 93.5-95.5%  Optimum: 97.5%  Hit Frequency: 34.7%
6951     Programs Available: X002044P
6952*/
6953   ROM_REGION( 0x10000, "maincpu", 0 )
6954   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6955
6956   ROM_REGION( 0x10000, "user1", 0 )
6957   ROM_LOAD( "x002044p.u66",   0x00000, 0x10000, CRC(158af97f) SHA1(452247d981f1202da8c44a31f0d3343184d3db41) ) /* Triple Bonus Poker */
6958
6959   ROM_REGION( 0x020000, "gfx1", 0 )
6960   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6961   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6962   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6963   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6964
6965   ROM_REGION( 0x200, "proms", 0 )
6966   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6967ROM_END
6968
6969ROM_START( pex2045p ) /* Superboard : Triple Bonus Poker (X002045P+XP000038) */
6970/*
6971                                      5-K 2-4
6972PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
6973-----------------------------------------------------------------
6974  P607A     1    1    3   4    6   9  75 120 240  50 250    800
6975  % Range: 91.9-93.9%  Optimum: 95.9%  Hit Frequency: 32.5%
6976     Programs Available: X002045P
6977*/
6978   ROM_REGION( 0x10000, "maincpu", 0 )
6979   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
6980
6981   ROM_REGION( 0x10000, "user1", 0 )
6982   ROM_LOAD( "x002045p.u66",   0x00000, 0x10000, CRC(75fe81db) SHA1(980bcc06b54a1ef78e3beac1db83b73e17a04818) ) /* Triple Bonus Poker */
6983
6984   ROM_REGION( 0x020000, "gfx1", 0 )
6985   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
6986   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
6987   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
6988   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
6989
6990   ROM_REGION( 0x200, "proms", 0 )
6991   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
6992ROM_END
6993
6994ROM_START( pex2066p ) /* Superboard : Double Double Bonus Poker (X002066P+XP000038) */
6995/*
6996                                                  2-4
6997                                                   4K    4A
6998                                      5-K 2-4     with   with
6999PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7000-----------------------------------------------------------------------------
7001  P505A     1    1    3   4    6   9  50  80 160   160   400  50 250    800
7002  % Range: 95.0-97.0%  Optimum: 99.0%  Hit Frequency: 44.7%
7003     Programs Available: X002066P
7004*/
7005   ROM_REGION( 0x10000, "maincpu", 0 )
7006   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7007
7008   ROM_REGION( 0x10000, "user1", 0 )
7009   ROM_LOAD( "x002066p.u66",   0x00000, 0x10000, CRC(01236011) SHA1(3edfee014705b3540386c5e42026ab93628b2597) ) /* Double Double Bonus Poker */
7010
7011   ROM_REGION( 0x020000, "gfx1", 0 )
7012   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7013   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7014   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7015   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7016
7017   ROM_REGION( 0x200, "proms", 0 )
7018   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7019ROM_END
7020
7021ROM_START( pex2067p ) /* Superboard : Double Double Bonus Poker (X002067P+XP000038) */
7022/*
7023                                                  2-4
7024                                                   4K    4A
7025                                      5-K 2-4     with   with
7026PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7027-----------------------------------------------------------------------------
7028  P505A     1    1    3   4    5   9  50  80 160   160   400  50 250    800
7029  % Range: 93.9-95.9%  Optimum: 97.9%  Hit Frequency: 44.8%
7030     Programs Available: X002067P
7031*/
7032   ROM_REGION( 0x10000, "maincpu", 0 )
7033   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7034
7035   ROM_REGION( 0x10000, "user1", 0 )
7036   ROM_LOAD( "x002067p.u66",   0x00000, 0x10000, CRC(c62adf21) SHA1(25e037f91ef1860d1d45cae12f21bdd1c39ba264) ) /* Double Double Bonus Poker */
7037
7038   ROM_REGION( 0x020000, "gfx1", 0 )
7039   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7040   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7041   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7042   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7043
7044   ROM_REGION( 0x200, "proms", 0 )
7045   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7046ROM_END
7047
7048ROM_START( pex2068p ) /* Superboard : Double Double Bonus Poker (X002068P+XP000038) */
7049/*
7050                                                   2-4    4A
7051                                      5-K 2-4      4K    with
7052PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  with A  2-4  SF  RF  (Bonus)
7053------------------------------------------------------------------------------
7054  P506A     1    1    3   4    5   8  50  80 160   160    400  50 250    800
7055  % Range: 92.8-94.8%  Optimum: 96.8%  Hit Frequency: 44.8%
7056     Programs Available: X002068P
7057*/
7058   ROM_REGION( 0x10000, "maincpu", 0 )
7059   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7060
7061   ROM_REGION( 0x10000, "user1", 0 )
7062   ROM_LOAD( "x002068p.u66",   0x00000, 0x10000, CRC(a5e4279d) SHA1(c4dfd1e77a03a94d9911d1754b5874200bfe6c71) ) /* Double Double Bonus Poker */
7063
7064   ROM_REGION( 0x020000, "gfx1", 0 )
7065   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7066   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7067   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7068   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7069
7070   ROM_REGION( 0x200, "proms", 0 )
7071   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7072ROM_END
7073
7074ROM_START( pex2069p ) /* Superboard : Double Double Bonus Poker (X002069P+XP000038) */
7075/*
7076                                                  2-4
7077                                                   4K    4A
7078                                      5-K 2-4     with   with
7079PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7080-----------------------------------------------------------------------------
7081  P507A     1    1    3   4    5   7  50  80 160   160   400  50 250    800
7082  % Range: 91.6-93.6%  Optimum: 95.6%  Hit Frequency: 45.0%
7083     Programs Available: X002069P
7084*/
7085   ROM_REGION( 0x10000, "maincpu", 0 )
7086   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7087
7088   ROM_REGION( 0x10000, "user1", 0 )
7089   ROM_LOAD( "x002069p.u66",   0x00000, 0x10000, CRC(875ecfcf) SHA1(80472cb43b36e518216e60a9b4883a81163718a2) ) /* Double Double Bonus Poker - 08/17/95   @ IGT  L95-2088 */
7090
7091   ROM_REGION( 0x020000, "gfx1", 0 )
7092   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7093   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7094   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7095   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7096
7097   ROM_REGION( 0x200, "proms", 0 )
7098   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7099ROM_END
7100
7101ROM_START( pex2070p ) /* Superboard : Double Double Bonus Poker (X002070P+XP000038) */
7102/*
7103                                                  2-4
7104                                                   4K    4A
7105                                      5-K 2-4     with   with
7106PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7107-----------------------------------------------------------------------------
7108  P508A     1    1    3   4    5   6  50  80 160   160   400  50 250    800
7109  % Range: 90.5-92.5%  Optimum: 94.5%  Hit Frequency: 45.0%
7110     Programs Available: X002070P
7111*/
7112   ROM_REGION( 0x10000, "maincpu", 0 )
7113   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7114
7115   ROM_REGION( 0x10000, "user1", 0 )
7116   ROM_LOAD( "x002070p.u66",   0x00000, 0x10000, CRC(e7732ff9) SHA1(de1a68040d46e78831a6c806f26f253b4ab014b5) ) /* Double Double Bonus Poker */
7117
7118   ROM_REGION( 0x020000, "gfx1", 0 )
7119   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7120   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7121   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7122   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7123
7124   ROM_REGION( 0x200, "proms", 0 )
7125   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7126ROM_END
7127
7128ROM_START( pex2121p ) /* Superboard : Standard Draw Poker (X002121P+XP000038) */
7129/*
7130PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7131----------------------------------------------------------
7132   PE       1    2    3    4    6   9  25  50 300    900
7133  % Range: 95.8-97.8%  Optimum: 99.8%  Hit Frequency: 45.4%
7134     Programs Available: PP0038, X002121P
7135*/
7136   ROM_REGION( 0x10000, "maincpu", 0 )
7137   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7138
7139   ROM_REGION( 0x10000, "user1", 0 )
7140   ROM_LOAD( "x002121p.u66",   0x00000, 0x10000, CRC(53e5853b) SHA1(a66dc531ac762d8acd2ac5d4228c9c04fc9758df) ) /* Standard Draw Poker */
7141
7142   ROM_REGION( 0x020000, "gfx1", 0 )
7143   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7144   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7145   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7146   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7147
7148   ROM_REGION( 0x200, "proms", 0 )
7149   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7150ROM_END
7151
7152ROM_START( pex2121pa ) /* Superboard : Standard Draw Poker (X002121P+XP000037) */
7153/*
7154PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7155----------------------------------------------------------
7156   PE       1    2    3    4    6   9  25  50 300    900
7157  % Range: 95.8-97.8%  Optimum: 99.8%  Hit Frequency: 45.4%
7158     Programs Available: PP0038, X002121P
7159*/
7160   ROM_REGION( 0x10000, "maincpu", 0 )
7161   ROM_LOAD( "xp000037.u67",   0x00000, 0x10000, CRC(9ee67f20) SHA1(8f23a5593efbd21894b99196889cd560871c4615) ) /* Monaco Region */
7162
7163   ROM_REGION( 0x10000, "user1", 0 )
7164   ROM_LOAD( "x002121p.u66",   0x00000, 0x10000, CRC(53e5853b) SHA1(a66dc531ac762d8acd2ac5d4228c9c04fc9758df) ) /* Standard Draw Poker */
7165
7166   ROM_REGION( 0x020000, "gfx1", 0 )
7167   ROM_LOAD( "mro-cg2201.u77",  0x00000, 0x8000, CRC(8f82a114) SHA1(dc4aaaa12442a66386d9bef969afa60a7e2e386b) ) /* Monaco Region */
7168   ROM_LOAD( "mgo-cg2201.u78",  0x08000, 0x8000, CRC(71797c5b) SHA1(15dff00aad8006855af98a2ad39fe1a6e87d7d24) )
7169   ROM_LOAD( "mbo-cg2201.u79",  0x10000, 0x8000, CRC(27201cbf) SHA1(9d197e04c36e94ff08bd76c7200ea4e8f345b8ab) )
7170   ROM_LOAD( "mxo-cg2201.u80",  0x18000, 0x8000, CRC(b79b6d11) SHA1(dcc30465e4de104c54b19e95e7216023576d90c7) )
7171
7172   ROM_REGION( 0x200, "proms", 0 )
7173   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7174ROM_END
7175
7176ROM_START( pex2150p ) /* Superboard : 4 of a Kind Bonus Poker (X002105P+XP000038) - $1 Denominations Only */
7177/*
7178                                      5-K 2-4
7179PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7180-----------------------------------------------------------------
7181 P769BA     1    1    3   4    6   9  75 120 240  50 250    800
7182  % Range: 91.9-93.9%  Optimum: 95.9%  Hit Frequency: 32.5%
7183     Programs Available: X002150P
7184*/
7185   ROM_REGION( 0x10000, "maincpu", 0 )
7186   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7187
7188   ROM_REGION( 0x10000, "user1", 0 )
7189   ROM_LOAD( "x002150p.u66",   0x00000, 0x10000, CRC(b4b531c4) SHA1(f5fa988d963cb0fe00aebc4eb99043d1b70f9516) ) /* 4 of a Kind Bonus Poker */
7190
7191   ROM_REGION( 0x020000, "gfx1", 0 )
7192   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
7193   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
7194   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
7195   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
7196
7197   ROM_REGION( 0x200, "proms", 0 )
7198   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7199ROM_END
7200
7201ROM_START( pex2172p ) /* Superboard : Ace$ Bonus Poker (X002172P+XP000112) */
7202/*
7203                                      5-K 2-4
7204PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SA$  SF  RF  (Bonus)
7205----------------------------------------------------------------------
7206  P789AM    1    2    3   4    5   7  25  40  80  250  50 250    800
7207  % Range: 94.3-96.3%  Optimum: 98.3%  Hit Frequency: 45.5%
7208     Programs Available: X002172P
7209
7210SA$ - Sequential ACE$ pays the same as RF
7211
7212*/
7213   ROM_REGION( 0x10000, "maincpu", 0 )
7214   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7215
7216   ROM_REGION( 0x10000, "user1", 0 )
7217   ROM_LOAD( "x002172p.u66",   0x00000, 0x10000, CRC(d4c44409) SHA1(8082b76a51fa131751b8c2c446cb29fb04f531dc) ) /* Ace$ Bonus Poker - 05/09/96   @ IGT  L96-1119 */
7218
7219   ROM_REGION( 0x020000, "gfx1", 0 )
7220   ROM_LOAD( "mro-cg2172.u77",  0x00000, 0x8000, CRC(45c84d0b) SHA1(796b6ff14adacf1cbca6acd9b4903d7420519f2b) ) /*  06/05/95   @ IGT  L95-1494  */
7221   ROM_LOAD( "mgo-cg2172.u78",  0x08000, 0x8000, CRC(fff049bc) SHA1(d4b340e0c932db767cade56a55b649c80750fee4) )
7222   ROM_LOAD( "mbo-cg2172.u79",  0x10000, 0x8000, CRC(1665c6be) SHA1(4650b9d8336434ce531c31b63e7780b47ef4e985) )
7223   ROM_LOAD( "mxo-cg2172.u80",  0x18000, 0x8000, CRC(cc9d64e4) SHA1(4bf78e49150ca6fb4a05f3320f712bbbabcacf56) )
7224
7225   ROM_REGION( 0x200, "proms", 0 )
7226   ROM_LOAD( "capx2172.u43", 0x0000, 0x0200, CRC(c9b4f1da) SHA1(c911da564cfb33218441de0f91e67a02191d76c2) ) /* Philips N82S147N */
7227ROM_END
7228
7229ROM_START( pex2173p ) /* Superboard : Ace$ Bonus Poker (X002173P+XP000038) */
7230/*
7231                                      5-K 2-4
7232PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SA$  SF  RF  (Bonus)
7233----------------------------------------------------------------------
7234  P790AM    1    2    3   4    5   6  25  40  80  250  50 250    800
7235  % Range: 93.1-95.1%  Optimum: 97.1%  Hit Frequency: 45.5%
7236     Programs Available: X002173P
7237
7238SA$ - Sequential ACE$ pays the same as RF
7239
7240*/
7241   ROM_REGION( 0x10000, "maincpu", 0 )
7242   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7243
7244   ROM_REGION( 0x10000, "user1", 0 )
7245   ROM_LOAD( "x002173p.u66",   0x00000, 0x10000, CRC(509e50e1) SHA1(db4ee11f29107ff48ee5f5410c9d0e1a6a6fd567) ) /* Ace$ Bonus Poker */
7246
7247   ROM_REGION( 0x020000, "gfx1", 0 )
7248   ROM_LOAD( "mro-cg2172.u77",  0x00000, 0x8000, CRC(45c84d0b) SHA1(796b6ff14adacf1cbca6acd9b4903d7420519f2b) ) /*  06/05/95   @ IGT  L95-1494  */
7249   ROM_LOAD( "mgo-cg2172.u78",  0x08000, 0x8000, CRC(fff049bc) SHA1(d4b340e0c932db767cade56a55b649c80750fee4) )
7250   ROM_LOAD( "mbo-cg2172.u79",  0x10000, 0x8000, CRC(1665c6be) SHA1(4650b9d8336434ce531c31b63e7780b47ef4e985) )
7251   ROM_LOAD( "mxo-cg2172.u80",  0x18000, 0x8000, CRC(cc9d64e4) SHA1(4bf78e49150ca6fb4a05f3320f712bbbabcacf56) )
7252
7253   ROM_REGION( 0x200, "proms", 0 )
7254   ROM_LOAD( "capx2172.u43", 0x0000, 0x0200, CRC(c9b4f1da) SHA1(c911da564cfb33218441de0f91e67a02191d76c2) ) /* Philips N82S147N */
7255ROM_END
7256
7257ROM_START( pex2180p ) /* Superboard : Double Bonus Poker (X002180P+XP000038) */
7258/*
7259                                      5-K 2-4
7260PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7261-----------------------------------------------------------------
7262  P437A     1    1    3   4    5   6  50  80 160  50 250    800
7263  % Range: 88.0-90.0%  Optimum: 92.0%  Hit Frequency: 45.1%
7264     Programs Available: X002180P
7265*/
7266   ROM_REGION( 0x10000, "maincpu", 0 )
7267   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7268
7269   ROM_REGION( 0x10000, "user1", 0 )
7270   ROM_LOAD( "x002180p.u66",   0x00000, 0x10000, CRC(c929b3a5) SHA1(6b47c67275f6894bfcd52640aa32fbe1270dba9c) ) /* Double Bonus Poker */
7271
7272   ROM_REGION( 0x020000, "gfx1", 0 )
7273   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7274   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7275   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7276   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7277
7278   ROM_REGION( 0x200, "proms", 0 )
7279   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7280ROM_END
7281
7282ROM_START( pex2241p ) /* Superboard : 4 of a Kind Bonus Poker 1-100 Coins (X002241P+XP000079) */
7283/*
7284                                       5-K 2-4
7285PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7286------------------------------------------------------------------
7287  ????      1    2    3    4    5   8  25  40  80  50 800    800
7288  % Range: 95.2-97.2%  Optimum: 99.2%  Hit Frequency: 45.5%
7289*/
7290   ROM_REGION( 0x10000, "maincpu", 0 )
7291   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
7292
7293   ROM_REGION( 0x10000, "user1", 0 )
7294   ROM_LOAD( "x002241p.u66",   0x00000, 0x10000, CRC(c6b45cf4) SHA1(3d47e8ff5c915c4b35e4a2ffe20fcc950e838454) ) /* 4 of a Kind Bonus Poker */
7295
7296   ROM_REGION( 0x020000, "gfx1", 0 )
7297   ROM_LOAD( "mro-cg2242.u77",  0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) )
7298   ROM_LOAD( "mgo-cg2242.u78",  0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) )
7299   ROM_LOAD( "mbo-cg2242.u79",  0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) )
7300   ROM_LOAD( "mxo-cg2242.u80",  0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) )
7301
7302   ROM_REGION( 0x200, "proms", 0 )
7303   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7304ROM_END
7305
7306ROM_START( pex2244p ) /* Superboard : Double Bonus Poker 1-100 Coins (X002244P+XP000079) */
7307/*
7308                                       5-K 2-4
7309PayTable   Js+  2PR  3K   STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7310------------------------------------------------------------------
7311  ????      1    1    3    5    7   9  50  80 160  50 800    800
7312  % Range: 91.2-97.1%  Optimum: 99.1%  Hit Frequency: 43.2%
7313*/
7314   ROM_REGION( 0x10000, "maincpu", 0 )
7315   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
7316
7317   ROM_REGION( 0x10000, "user1", 0 )
7318   ROM_LOAD( "x002244p.u66",   0x00000, 0x10000, CRC(06a3e60d) SHA1(8abeafab589406ff68898e8f90431c1a5f8d2de5) ) /* Double Bonus Poker */
7319
7320   ROM_REGION( 0x020000, "gfx1", 0 )
7321   ROM_LOAD( "mro-cg2242.u77",  0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) )
7322   ROM_LOAD( "mgo-cg2242.u78",  0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) )
7323   ROM_LOAD( "mbo-cg2242.u79",  0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) )
7324   ROM_LOAD( "mxo-cg2242.u80",  0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) )
7325
7326   ROM_REGION( 0x200, "proms", 0 )
7327   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7328ROM_END
7329
7330ROM_START( pex2245p ) /* Superboard : Standard Draw Poker (X002245P+XP000055) */
7331/*
7332PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7333----------------------------------------------------------
7334  ????      1    2    3    4    5   6  25  50 800    800
7335  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
7336     Programs Available: X002245P
7337*/
7338   ROM_REGION( 0x10000, "maincpu", 0 )
7339   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
7340
7341   ROM_REGION( 0x10000, "user1", 0 )
7342   ROM_LOAD( "x002245p.u66",   0x00000, 0x10000, CRC(df49a54c) SHA1(1c89d0a114e27e27117120c9e2fc36b124fe7761) ) /* Standard Draw Poker */
7343
7344   ROM_REGION( 0x020000, "gfx1", 0 )
7345   ROM_LOAD( "mro-cg2242.u77",  0x00000, 0x8000, CRC(963a7e7d) SHA1(ebb159f6c731a3f912382745ef9a9c6d4fa2fc99) )
7346   ROM_LOAD( "mgo-cg2242.u78",  0x08000, 0x8000, CRC(53eed56f) SHA1(e79f31c5c817b8b96b4970c1a702d1892961d441) )
7347   ROM_LOAD( "mbo-cg2242.u79",  0x10000, 0x8000, CRC(af092f50) SHA1(53a3536593bb14c4072e8a5ee9e05af332feceb1) )
7348   ROM_LOAD( "mxo-cg2242.u80",  0x18000, 0x8000, CRC(ecacb6b2) SHA1(32660adcc266fbbb3702a0cd30e25d11b953d23d) )
7349
7350   ROM_REGION( 0x200, "proms", 0 )
7351   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7352ROM_END
7353
7354ROM_START( pex2245pa ) /* Superboard : Standard Draw Poker (X002245P+XP000079) */
7355/*
7356PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7357----------------------------------------------------------
7358  ????      1    2    3    4    5   6  25  50 800    800
7359  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
7360     Programs Available: X002245P
7361*/
7362   ROM_REGION( 0x10000, "maincpu", 0 )
7363   ROM_LOAD( "xp000079.u67",   0x00000, 0x10000, CRC(fe9757b7) SHA1(8547f00f23e2e3cd4b36d006b760eca6a19f0710) )
7364
7365   ROM_REGION( 0x10000, "user1", 0 )
7366   ROM_LOAD( "x002245p.u66",   0x00000, 0x10000, CRC(df49a54c) SHA1(1c89d0a114e27e27117120c9e2fc36b124fe7761) ) /* Standard Draw Poker */
7367
7368   ROM_REGION( 0x020000, "gfx1", 0 )
7369   ROM_LOAD( "mro-cg2275.u77",  0x00000, 0x8000, CRC(15d5d6b8) SHA1(61b6821d4cc059732bc3831bf19bf01aa3910b31) )
7370   ROM_LOAD( "mgo-cg2275.u78",  0x08000, 0x8000, CRC(bcb49579) SHA1(d5d9f523304582fa6f0a0c69aade77629bdec006) )
7371   ROM_LOAD( "mbo-cg2275.u79",  0x10000, 0x8000, CRC(9f893787) SHA1(0b79d5cbac920394d5f5c04d0d9d3727e0060366) )
7372   ROM_LOAD( "mxo-cg2275.u80",  0x18000, 0x8000, CRC(6187c68b) SHA1(7777b141fd1379d37d93a228b2e2159476c2b89e) )
7373
7374   ROM_REGION( 0x200, "proms", 0 )
7375   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7376ROM_END
7377
7378ROM_START( pex2250p ) /* Superboard : Shockwave Poker (X002250P+XP000050) */
7379/*
7380PayTable   Js+  2PR  3K  STR  FL  FH  4K* SF  RF  (Bonus)
7381---------------------------------------------------------
7382 P598BA     1    1    3   5    8  11  25 100 250    800
7383  % Range: 94.5-96.5%  Optimum: 98.5%  Hit Frequency: 42.6%
7384     Programs Available: X002250P
7385
73864K* - Getting a 4K hand sets the game in "Shockwave" mode for the next 10 dealt hands.
7387      While in shockwave mode, 4K pays the same as RF
7388
7389*/
7390   ROM_REGION( 0x10000, "maincpu", 0 )
7391   ROM_LOAD( "xp000050.u67",   0x00000, 0x10000, CRC(cf9e72d6) SHA1(fc5c679aae43df0bd563fbcc3e00a3274af1ed11) )
7392
7393   ROM_REGION( 0x10000, "user1", 0 )
7394   ROM_LOAD( "x002250p.u66",   0x00000, 0x10000, CRC(8d8810f9) SHA1(14262d83cf5f2511c3de7777336ac9df7270dab2) ) /* Shockwave Poker */
7395
7396   ROM_REGION( 0x020000, "gfx1", 0 )
7397   ROM_LOAD( "mro-cg2309.u77",  0x00000, 0x8000, CRC(fdef322c) SHA1(8024cb6fcba18b56168e853173b9856c4d011831) )
7398   ROM_LOAD( "mgo-cg2309.u78",  0x08000, 0x8000, CRC(f70b30c0) SHA1(e4acd0060b3d68b9f385cb60ed43a0988fca66a8) )
7399   ROM_LOAD( "mbo-cg2309.u79",  0x10000, 0x8000, CRC(1843eec7) SHA1(0d0b80cd4d458081394c2943023b2440c2c2e42c) )
7400   ROM_LOAD( "mxo-cg2309.u80",  0x18000, 0x8000, CRC(5c73d095) SHA1(078c6c815e8c48988f631d9d37018ea0b4bbfa19) )
7401
7402   ROM_REGION( 0x200, "proms", 0 )
7403   ROM_LOAD( "capx2309.u43", 0x0000, 0x0200, CRC(5da912cc) SHA1(6294f8be682e70e9052c9ae5f6865467e9dba2e3) )
7404ROM_END
7405
7406ROM_START( pex2251p ) /* Superboard : Shockwave Poker (X002251P+XP000050) */
7407/*
7408PayTable   Js+  2PR  3K  STR  FL  FH  4K* SF  RF  (Bonus)
7409---------------------------------------------------------
7410  P719A     1    1    3   5    8  12  25 100 250    800
7411  % Range: 95.6-97.6%  Optimum: 99.6%  Hit Frequency: 42.6%
7412     Programs Available: X002251P
7413
74144K* - Getting a 4K hand sets the game in "Shockwave" mode for the next 10 dealt hands.
7415      While in shockwave mode, 4K pays the same as RF
7416
7417*/
7418   ROM_REGION( 0x10000, "maincpu", 0 )
7419   ROM_LOAD( "xp000050.u67",   0x00000, 0x10000, CRC(cf9e72d6) SHA1(fc5c679aae43df0bd563fbcc3e00a3274af1ed11) )
7420
7421   ROM_REGION( 0x10000, "user1", 0 )
7422   ROM_LOAD( "x002251p.u66",   0x00000, 0x10000, CRC(9069aa23) SHA1(299d5befce817e8334d4ac53470ff678775546ff) ) /* Shockwave Poker */
7423
7424   ROM_REGION( 0x020000, "gfx1", 0 )
7425   ROM_LOAD( "mro-cg2309.u77",  0x00000, 0x8000, CRC(fdef322c) SHA1(8024cb6fcba18b56168e853173b9856c4d011831) )
7426   ROM_LOAD( "mgo-cg2309.u78",  0x08000, 0x8000, CRC(f70b30c0) SHA1(e4acd0060b3d68b9f385cb60ed43a0988fca66a8) )
7427   ROM_LOAD( "mbo-cg2309.u79",  0x10000, 0x8000, CRC(1843eec7) SHA1(0d0b80cd4d458081394c2943023b2440c2c2e42c) )
7428   ROM_LOAD( "mxo-cg2309.u80",  0x18000, 0x8000, CRC(5c73d095) SHA1(078c6c815e8c48988f631d9d37018ea0b4bbfa19) )
7429
7430   ROM_REGION( 0x200, "proms", 0 )
7431   ROM_LOAD( "capx2309.u43", 0x0000, 0x0200, CRC(5da912cc) SHA1(6294f8be682e70e9052c9ae5f6865467e9dba2e3) )
7432ROM_END
7433
7434ROM_START( pex2272p ) /* Superboard : Black Jack Bonus Poker (X002272P+XP000055) */
7435/*
7436Black Jack as in Jack of Spades/Clubs, not 21       With With
7437                                                     BJ   BJ  With
7438                                        5-K 2-4     5-K  2-4   BJ
7439PayTable   Js+ 2PR  STR  FL  FH  4K  SF  4K  4K  4A  4K   4K   4A  RF (Bonus)
7440-----------------------------------------------------------------------------
7441 P870BB     1   1    3    4   7   9  50  25  80 160 160  400  400 400   800
7442  % Range: 95.4-97.4%  Optimum: 99.4%  Hit Frequency: ???%
7443     Programs Available: X002272P
7444*/
7445   ROM_REGION( 0x10000, "maincpu", 0 )
7446   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
7447
7448   ROM_REGION( 0x10000, "user1", 0 )
7449   ROM_LOAD( "x002272p.u66",   0x00000, 0x10000, CRC(ee4f27b9) SHA1(1ee105430358ea27badd943bb6b18663e4029388) ) /* Black Jack Bonus Poker */
7450
7451   ROM_REGION( 0x020000, "gfx1", 0 )
7452   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7453   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7454   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7455   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7456
7457   ROM_REGION( 0x200, "proms", 0 )
7458   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7459ROM_END
7460
7461ROM_START( pex2275p ) /* Superboard : Black Jack Bonus Poker (X002275P+XP000055) */
7462/*
7463Black Jack as in Jack of Spades/Clubs, not 21       With With
7464                                                     BJ   BJ  With
7465                                        5-K 2-4     5-K  2-4   BJ
7466PayTable   Js+ 2PR  STR  FL  FH  4K  SF  4K  4K  4A  4K   4K   4A  RF (Bonus)
7467-----------------------------------------------------------------------------
7468 P873BB     1   1    3    4   5   8  50  25  80 160 160  400  400 400   800
7469  % Range: 92.0-94.0%  Optimum: 96.0%  Hit Frequency: ???%
7470     Programs Available: X002275P
7471*/
7472   ROM_REGION( 0x10000, "maincpu", 0 )
7473   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
7474
7475   ROM_REGION( 0x10000, "user1", 0 )
7476   ROM_LOAD( "x002275p.u66",   0x00000, 0x10000, CRC(5ba4f5ab) SHA1(def069025ec4aa340646dfd7cfacc8ce836a210c) ) /* Black Jack Bonus Poker */
7477
7478   ROM_REGION( 0x020000, "gfx1", 0 )
7479   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7480   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7481   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7482   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7483
7484   ROM_REGION( 0x200, "proms", 0 )
7485   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7486ROM_END
7487
7488ROM_START( pex2276p ) /* Superboard : Black Jack Bonus Poker (X002276P+XP000055) */
7489/*
7490Black Jack as in Jack of Spades/Clubs, not 21       With With
7491                                                     BJ   BJ  With
7492                                        5-K 2-4     5-K  2-4   BJ
7493PayTable   Js+ 2PR  STR  FL  FH  4K  SF  4K  4K  4A  4K   4K   4A  RF (Bonus)
7494-----------------------------------------------------------------------------
7495 P874BB     1   1    3    4   5   7  50  25  80 160 160  400  400 400   800
7496  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: ???%
7497     Programs Available: X002276P
7498*/
7499   ROM_REGION( 0x10000, "maincpu", 0 )
7500   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
7501
7502   ROM_REGION( 0x10000, "user1", 0 )
7503   ROM_LOAD( "x002276p.u66",   0x00000, 0x10000, CRC(7a660f24) SHA1(d0b621a779bfc00668492cfb3dea65d1583fa4f1) ) /* Black Jack Bonus Poker */
7504
7505   ROM_REGION( 0x020000, "gfx1", 0 )
7506   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7507   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7508   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7509   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7510
7511   ROM_REGION( 0x200, "proms", 0 )
7512   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7513ROM_END
7514
7515ROM_START( pex2283p ) /* Superboard : Dealt Deuces Wild Bonus (X002283P+XP000057) */
7516/*
7517                                   w/D 6-K 3-5         w/A w/oD
7518PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
7519-----------------------------------------------------------------------
7520  ????      1   1    3   3   4  10  25  20  40  80 200 400 250    800
7521  % Range: 94.6-96.6%  Optimum: 98.6%  Hit Frequency: ??.?%
7522     Programs Available: X002283P
7523
7524Bonus "Dealt" payouts at MAX BET are:
7525 Dealt 3 Deuces .....   15
7526 Dealt 4 Deuces ..... 1500
7527 Dealt 4 Deuces + Ace 8000
7528
7529Designed and co-created by Best Bet Products
7530
7531*/
7532   ROM_REGION( 0x10000, "maincpu", 0 )
7533   ROM_LOAD( "xp000057.u67",   0x00000, 0x10000, CRC(a1186020) SHA1(d42823aac1cb16521ecc0a09cba694374642cff7) )
7534
7535   ROM_REGION( 0x10000, "user1", 0 )
7536   ROM_LOAD( "x002283p.u66",   0x00000, 0x10000, CRC(90f7f7b3) SHA1(0c8460391303ed16f20c41472840d798950bb2c0) ) /* Dealt Deuces Wild Bonus */
7537
7538   ROM_REGION( 0x020000, "gfx1", 0 )
7539   ROM_LOAD( "mro-cg2325.u77",  0x00000, 0x8000, CRC(ae53d1f6) SHA1(bf28b8f784d6683bb352944b88d0b646d7313efd) )
7540   ROM_LOAD( "mgo-cg2325.u78",  0x08000, 0x8000, CRC(a637679e) SHA1(4cb24f1f907ae482419981cac49af19ca1cdbc99) )
7541   ROM_LOAD( "mbo-cg2325.u79",  0x10000, 0x8000, CRC(4a179b6d) SHA1(2ed51ed85444b939bbd48344f18fa97c146438ff) )
7542   ROM_LOAD( "mxo-cg2325.u80",  0x18000, 0x8000, CRC(afae8fd5) SHA1(7c6380f21fe8444234ada8d88a46d3a4f1623b29) )
7543
7544   ROM_REGION( 0x200, "proms", 0 )
7545   ROM_LOAD( "capx2325.u43", 0x0000, 0x0200, NO_DUMP )
7546   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7547ROM_END
7548
7549ROM_START( pex2284p ) /* Superboard : Barbaric Decues Wild Bonus (X002284P+XP000057) */
7550/*
7551                                   w/D 6-K 3-5         w/A w/oD
7552PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
7553-----------------------------------------------------------------------
7554  ????      1   1    2   3   4  12  25  20  40  80 200 400 250    800
7555  % Range: 93.5-95.5%  Optimum: 97.5%  Hit Frequency: ??.?%
7556     Programs Available: X002284P
7557
7558Bonus "Dealt" payouts at MAX BET are:
7559 Dealt 3 Deuces .....   15
7560 Dealt 4 Deuces ..... 1500
7561 Dealt 4 Deuces + Ace 8000
7562
7563Designed and co-created by Best Bet Products
7564
7565*/
7566   ROM_REGION( 0x10000, "maincpu", 0 )
7567   ROM_LOAD( "xp000057.u67",   0x00000, 0x10000, CRC(a1186020) SHA1(d42823aac1cb16521ecc0a09cba694374642cff7) )
7568
7569   ROM_REGION( 0x10000, "user1", 0 )
7570   ROM_LOAD( "x002284p.u66",   0x00000, 0x10000, CRC(2a3cb2a9) SHA1(76bfbf9a25913604454142716e1433ec73f0f0c9) ) /* Barbaric Decues Wild Bonus */
7571
7572   ROM_REGION( 0x020000, "gfx1", 0 )
7573   ROM_LOAD( "mro-cg2325.u77",  0x00000, 0x8000, CRC(ae53d1f6) SHA1(bf28b8f784d6683bb352944b88d0b646d7313efd) )
7574   ROM_LOAD( "mgo-cg2325.u78",  0x08000, 0x8000, CRC(a637679e) SHA1(4cb24f1f907ae482419981cac49af19ca1cdbc99) )
7575   ROM_LOAD( "mbo-cg2325.u79",  0x10000, 0x8000, CRC(4a179b6d) SHA1(2ed51ed85444b939bbd48344f18fa97c146438ff) )
7576   ROM_LOAD( "mxo-cg2325.u80",  0x18000, 0x8000, CRC(afae8fd5) SHA1(7c6380f21fe8444234ada8d88a46d3a4f1623b29) )
7577
7578   ROM_REGION( 0x200, "proms", 0 )
7579   ROM_LOAD( "capx2325.u43", 0x0000, 0x0200, NO_DUMP )
7580   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7581ROM_END
7582
7583ROM_START( pex2302p ) /* Superboard : Bonus Poker Deluxe (X002302P+XP000038) */
7584/*
7585PayTable   Js+  2PR  3K  STR  FL  FH  4K  SF  RF  (Bonus)
7586---------------------------------------------------------
7587  P902A     1    1    3   4    5   6  80  50 250    800
7588  % Range: 91.4-93.4%  Optimum: 95.4%  Hit Frequency: 45.2%
7589     Programs Available: X002302P
7590*/
7591   ROM_REGION( 0x10000, "maincpu", 0 )
7592   ROM_LOAD( "xp000038.u67",   0x00000, 0x10000, CRC(8707ab9e) SHA1(3e00a2ad8017e1495c6d6fe900d0efa68a1772b8) ) /* 09/05/95   @ IGT  L95-2452 */
7593
7594   ROM_REGION( 0x10000, "user1", 0 )
7595   ROM_LOAD( "x002302p.u66",   0x00000, 0x10000, CRC(8e52646e) SHA1(f6722778eb7e2981a00f8e4e5ea32f71a35e20e5) ) /* Bonus Poker Deluxe */
7596
7597   ROM_REGION( 0x020000, "gfx1", 0 )
7598   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7599   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7600   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7601   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7602
7603   ROM_REGION( 0x200, "proms", 0 )
7604   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7605ROM_END
7606
7607ROM_START( pex2303p ) /* Superboard : White Hot Aces Poker (X002303P+XP000112) */
7608/*
7609                                      5-K 2-4
7610PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7611-----------------------------------------------------------------
7612  P903A     1    1    3   4    5   5  50 120 240  80 250    800
7613  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
7614     Programs Available: X002303P
7615*/
7616   ROM_REGION( 0x10000, "maincpu", 0 )
7617   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7618
7619   ROM_REGION( 0x10000, "user1", 0 )
7620   ROM_LOAD( "x002303p.u66",   0x00000, 0x10000, CRC(81cfd71b) SHA1(485a45412cad705d050b369c4cd1472a438374e8) ) /* White Hot Aces Poker */
7621
7622   ROM_REGION( 0x020000, "gfx1", 0 )
7623   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7624   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7625   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7626   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7627
7628   ROM_REGION( 0x200, "proms", 0 )
7629   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7630ROM_END
7631
7632ROM_START( pex2306p ) /* Superboard : Triple Double Bonus Poker (X002306P+XP000112) */
7633/*
7634                                                  2-4
7635                                                   4K    4A
7636                                      5-K 2-4     with   with
7637PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7638-----------------------------------------------------------------------------
7639 P908BM     1    1    2   4    7   9  50  80 160   400   400  50 400    800
7640  % Range: 95.6-97.6%  Optimum: 99.6%  Hit Frequency: 43.3%
7641     Programs Available: X002306P
7642*/
7643   ROM_REGION( 0x10000, "maincpu", 0 )
7644   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7645
7646   ROM_REGION( 0x10000, "user1", 0 )
7647   ROM_LOAD( "x002306p.u66",   0x00000, 0x10000, CRC(ef36ea67) SHA1(8914ad20526fd63e14d9fa1901e9c779a11eb29d) ) /* Triple Double Bonus Poker */
7648
7649   ROM_REGION( 0x020000, "gfx1", 0 )
7650   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7651   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7652   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7653   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7654
7655   ROM_REGION( 0x200, "proms", 0 )
7656   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7657ROM_END
7658
7659ROM_START( pex2307p ) /* Superboard : Triple Double Bonus Poker (X002307P+XP000112) */
7660/*
7661                                                  2-4
7662                                                   4K    4A
7663                                      5-K 2-4     with   with
7664PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7665-----------------------------------------------------------------------------
7666 P908BM     1    1    3   4    6   9  50  80 160   400   400  50 400    800
7667  % Range: 94.2-96.2%  Optimum: 98.2%  Hit Frequency: 44.1%
7668     Programs Available: X002307P
7669*/
7670   ROM_REGION( 0x10000, "maincpu", 0 )
7671   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7672
7673   ROM_REGION( 0x10000, "user1", 0 )
7674   ROM_LOAD( "x002307p.u66",   0x00000, 0x10000, CRC(c6d5db70) SHA1(017e1e382fb789e4cd8b410362ad5e82b61f61db) ) /* Triple Double Bonus Poker */
7675
7676   ROM_REGION( 0x020000, "gfx1", 0 )
7677   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7678   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7679   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7680   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7681
7682   ROM_REGION( 0x200, "proms", 0 )
7683   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7684ROM_END
7685
7686ROM_START( pex2308p ) /* Superboard : Triple Double Bonus Poker (X002308P+XP000112) */
7687/*
7688                                                  2-4
7689                                                   4K    4A
7690                                      5-K 2-4     with   with
7691PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7692-----------------------------------------------------------------------------
7693 P909BM     1    1    2   4    5   9  50  80 160   400   400  50 400    800
7694  % Range: 93.0-95.0%  Optimum: 97.0%  Hit Frequency: 44.6%
7695     Programs Available: X002308P
7696*/
7697   ROM_REGION( 0x10000, "maincpu", 0 )
7698   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7699
7700   ROM_REGION( 0x10000, "user1", 0 )
7701   ROM_LOAD( "x002308p.u66",   0x00000, 0x10000, CRC(632fe9e4) SHA1(bb99a610f42aa32ad4729bb2bb4b99b4070977cf) ) /* Triple Double Bonus Poker */
7702
7703   ROM_REGION( 0x020000, "gfx1", 0 )
7704   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7705   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7706   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7707   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7708
7709   ROM_REGION( 0x200, "proms", 0 )
7710   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7711ROM_END
7712
7713ROM_START( pex2310p ) /* Superboard : Triple Double Bonus Poker (X002310P+XP000112) */
7714/*
7715                                                  2-4
7716                                                   4K    4A
7717                                      5-K 2-4     with   with
7718PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  A,2-4  2-4  SF  RF  (Bonus)
7719-----------------------------------------------------------------------------
7720 P911BM     1    1    2   4    5   7  50  80 160   400   400  50 400    800
7721  % Range: 90.9-92.9%  Optimum: 94.9%  Hit Frequency: 44.5%
7722     Programs Available: X002310P
7723*/
7724   ROM_REGION( 0x10000, "maincpu", 0 )
7725   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7726
7727   ROM_REGION( 0x10000, "user1", 0 )
7728   ROM_LOAD( "x002310p.u66",   0x00000, 0x10000, CRC(c006c3f1) SHA1(45c87a2f882147d1d132237cfa12ae47b202264f) ) /* Triple Double Bonus Poker */
7729
7730   ROM_REGION( 0x020000, "gfx1", 0 )
7731   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7732   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7733   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7734   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7735
7736   ROM_REGION( 0x200, "proms", 0 )
7737   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7738ROM_END
7739
7740ROM_START( pex2314p ) /* Superboard : Triple Bonus Poker Plus (X002314P+XP000112) */
7741/*
7742                                      5-K 2-4
7743PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7744-----------------------------------------------------------------
7745  P903A     1    1    3   4    5   6  50 120 240 100 250    800
7746  % Range: 92.6-94.6%  Optimum: 96.6%  Hit Frequency: 44.7%
7747     Programs Available: X002314P
7748*/
7749   ROM_REGION( 0x10000, "maincpu", 0 )
7750   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7751
7752   ROM_REGION( 0x10000, "user1", 0 )
7753   ROM_LOAD( "x002314p.u66",   0x00000, 0x10000, CRC(bfc0acf0) SHA1(a6b7c228a84d0ea224ad945964c53de2d44e4a8d) ) /* Triple Bonus Poker Plus */
7754
7755   ROM_REGION( 0x020000, "gfx1", 0 )
7756   ROM_LOAD( "mro-cg2324.u77",  0x00000, 0x8000, CRC(6eceef42) SHA1(a2ddd2a3290c41e510f483c6b633fe0002694d0b) )
7757   ROM_LOAD( "mgo-cg2324.u78",  0x08000, 0x8000, CRC(26d0acbe) SHA1(09a9127deb88185cd5b748bac657461eadb2f48f) )
7758   ROM_LOAD( "mbo-cg2324.u79",  0x10000, 0x8000, CRC(47baee32) SHA1(d8af09022ccb5fc06aa3aa4c200a734b66cbee00) )
7759   ROM_LOAD( "mxo-cg2324.u80",  0x18000, 0x8000, CRC(60449fc0) SHA1(251d1e04786b70c1d2bc7b02f3b69cd58ac76398) )
7760
7761   ROM_REGION( 0x200, "proms", 0 )
7762   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7763ROM_END
7764
7765ROM_START( pex2374p ) /* Superboard : Super Aces Poker (X002374P+XP000112) */
7766/*
7767                                      5-K 2-4
7768PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
7769-----------------------------------------------------------------
7770 P956A      1    1    3   4    5   6  50  80 400  60 250    800
7771  % Range: 93.7-95.7%  Optimum: 97.8%  Hit Frequency: 44.8%
7772     Programs Available: X002374P
7773*/
7774   ROM_REGION( 0x10000, "maincpu", 0 )
7775   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7776
7777   ROM_REGION( 0x10000, "user1", 0 )
7778   ROM_LOAD( "x002374p.u66",   0x00000, 0x10000, CRC(fc4b6c8d) SHA1(b101f9042bd54dbfdeed4c7a3acf3798096f6857) ) /* Super Aces Poker */
7779
7780   ROM_REGION( 0x020000, "gfx1", 0 )
7781   ROM_LOAD( "mro-cg2374.u72",  0x00000, 0x8000, CRC(ceeb714d) SHA1(6de908d04bcaa243195943affa9ad0d725de5c81) ) /* Custom Horseshoe Casino card backs */
7782   ROM_LOAD( "mgo-cg2374.u73",  0x08000, 0x8000, CRC(d0fabad5) SHA1(438ebe074fa3eaa3073ef042f481449f416d0665) )
7783   ROM_LOAD( "mbo-cg2374.u74",  0x10000, 0x8000, CRC(9a0fbc8d) SHA1(aa39f47cbeaf8218fd2d753c9a350e9eab5df5d3) )
7784   ROM_LOAD( "mxo-cg2374.u75",  0x18000, 0x8000, CRC(99814562) SHA1(2d8e132f4cc4edd06332c0327927219513b22832) )
7785
7786   ROM_REGION( 0x200, "proms", 0 )
7787   ROM_LOAD( "cap2374.u43", 0x0000, 0x0200, CRC(f922e1b8) SHA1(4aa5291c59431c022dc0561a6e3b38209f60286a) )
7788ROM_END
7789
7790ROM_START( pex2377p ) /* Superboard : Super Double Bonus Poker (X002377P+XP000112) */
7791/*
7792                                          2-4 J-K
7793PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4K  4A  SF  RF  (Bonus)
7794---------------------------------------------------------------------
7795 P977A      1    1    3   4    5   6  50  80 120 160  80 250    800
7796  % Range: 92.9-94.9%  Optimum: 96.9%  Hit Frequency: 45.2%
7797     Programs Available: X002377P
7798*/
7799   ROM_REGION( 0x10000, "maincpu", 0 )
7800   ROM_LOAD( "xp000112.u67",   0x00000, 0x10000, CRC(c1ae96ad) SHA1(da109602f0fbe9b225cdcd60be0613fd41014864) )
7801
7802   ROM_REGION( 0x10000, "user1", 0 )
7803   ROM_LOAD( "x002377p.u66",   0x00000, 0x10000, CRC(541320d2) SHA1(670b17432e994fe1937091e5e96e1d58b9afbf29) ) /* Super Double Bonus Poker */
7804
7805   ROM_REGION( 0x020000, "gfx1", 0 )
7806   ROM_LOAD( "mro-cg2244.u72",  0x00000, 0x8000, CRC(25561458) SHA1(fe5d624e0e16956df589f3682bad9181bdc99956) ) /*  */
7807   ROM_LOAD( "mgo-cg2244.u73",  0x08000, 0x8000, CRC(b2de0a7a) SHA1(34f0ef951560f6f71e14c822baa4ccb1028b5028) )
7808   ROM_LOAD( "mbo-cg2244.u74",  0x10000, 0x8000, CRC(d2c12418) SHA1(dfb1aebaac23ff6e2cf556f228dbdb7c272a1b30) )
7809   ROM_LOAD( "mxo-cg2244.u75",  0x18000, 0x8000, CRC(8dc10a99) SHA1(92edb31f44e52609ed1ba2a53577048d424c6238) )
7810
7811   ROM_REGION( 0x200, "proms", 0 )
7812   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7813ROM_END
7814
7815ROM_START( pex2419p ) /* Superboard : Deuces Wild Bonus Poker - French (X002419P+XP000064) */
7816/*
7817   Same payouts as X002027P English Deuces Wild Bonus Poker:
7818
7819                                   w/D 6-K 3-5         w/A w/oD
7820PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
7821-----------------------------------------------------------------------
7822 PI554A     1   1    3   3   4  13  25  20  40  80 200 400 250    800
7823  % Range: 93.4-95.4%  Optimum: 97.4%  Hit Frequency: 44.6%
7824     Programs Available: X002419P
7825*/
7826   ROM_REGION( 0x10000, "maincpu", 0 )
7827   ROM_LOAD( "xp000064.u67",   0x00000, 0x10000, CRC(bb958158) SHA1(5d171ba71f70c668c70e4afd59ef7a0283798bbd) )
7828
7829   ROM_REGION( 0x10000, "user1", 0 )
7830   ROM_LOAD( "x002419p.u66",   0x00000, 0x10000, CRC(a9a686c2) SHA1(40b8e2f4a4fab58161f161292024cecd046cc206) ) /* Deuces Wild Bonus Poker - French */
7831
7832   ROM_REGION( 0x020000, "gfx1", 0 )
7833   ROM_LOAD( "mro-cg2353.u77",  0x00000, 0x8000, CRC(7ed7f7cd) SHA1(406b124b3db5335acf8f8987afbfa10d90e04351) )
7834   ROM_LOAD( "mgo-cg2353.u78",  0x08000, 0x8000, CRC(aab4e5fb) SHA1(7d6e048dc1a9d01900ba71fc23c884637f5850f2) )
7835   ROM_LOAD( "mbo-cg2353.u79",  0x10000, 0x8000, CRC(119f59cd) SHA1(52283feb21b880960efef06c780d4e22b31ea18c) )
7836   ROM_LOAD( "mxo-cg2353.u80",  0x18000, 0x8000, CRC(3bb871c1) SHA1(0b9439fd6565c742c1c7dda23a80bdd1d91d7293) )
7837
7838   ROM_REGION( 0x200, "proms", 0 )
7839   ROM_LOAD( "capx2307.u43", 0x0000, 0x0200, CRC(58d81338) SHA1(f0044ebbd0128d6fb74d850528ef02730c180f00) )
7840ROM_END
7841
7842ROM_START( pex2420p ) /* Superboard : Deuces Wild Bonus Poker - French (X002420P+XP000064) */
7843/*
7844   Same payouts as X002028P English Deuces Wild Bonus Poker:
7845
7846                                   w/D 6-K 3-5         w/A w/oD
7847PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
7848-----------------------------------------------------------------------
7849 PI555A     1   1    2   3   4  12  25  20  40  80 200 400 250    800
7850  % Range: 92.2-94.2%  Optimum: 96.2%  Hit Frequency: 44.9%
7851     Programs Available: X002420P
7852*/
7853   ROM_REGION( 0x10000, "maincpu", 0 )
7854   ROM_LOAD( "xp000064.u67",   0x00000, 0x10000, CRC(bb958158) SHA1(5d171ba71f70c668c70e4afd59ef7a0283798bbd) )
7855
7856   ROM_REGION( 0x10000, "user1", 0 )
7857   ROM_LOAD( "x002420p.u66",   0x00000, 0x10000, CRC(8ed6595a) SHA1(2250cc1a75074640443a1aded7cef041e61f0016) ) /* Deuces Wild Bonus Poker - French */
7858
7859   ROM_REGION( 0x020000, "gfx1", 0 )
7860   ROM_LOAD( "mro-cg2353.u77",  0x00000, 0x8000, CRC(7ed7f7cd) SHA1(406b124b3db5335acf8f8987afbfa10d90e04351) )
7861   ROM_LOAD( "mgo-cg2353.u78",  0x08000, 0x8000, CRC(aab4e5fb) SHA1(7d6e048dc1a9d01900ba71fc23c884637f5850f2) )
7862   ROM_LOAD( "mbo-cg2353.u79",  0x10000, 0x8000, CRC(119f59cd) SHA1(52283feb21b880960efef06c780d4e22b31ea18c) )
7863   ROM_LOAD( "mxo-cg2353.u80",  0x18000, 0x8000, CRC(3bb871c1) SHA1(0b9439fd6565c742c1c7dda23a80bdd1d91d7293) )
7864
7865   ROM_REGION( 0x200, "proms", 0 )
7866   ROM_LOAD( "capx2307.u43", 0x0000, 0x0200, CRC(58d81338) SHA1(f0044ebbd0128d6fb74d850528ef02730c180f00) )
7867ROM_END
7868
7869ROM_START( pex2421p ) /* Superboard : Deuces Wild Bonus Poker - French (X002421P+XP000064) */
7870/*
7871   Same payouts as X002029P English Deuces Wild Bonus Poker:
7872
7873                                   w/D 6-K 3-5         w/A w/oD
7874PayTable   3K  STR  FL  FH  4K  SF  RF  5K  5K  5A  4D  4D  RF  (Bonus)
7875-----------------------------------------------------------------------
7876 PI556A     1   1    2   3   4  10  25  20  40  80 200 400 250    800
7877  % Range: 91.3-93.3%  Optimum: 95.3%  Hit Frequency: 45.0%
7878     Programs Available: X002421P
7879*/
7880   ROM_REGION( 0x10000, "maincpu", 0 )
7881   ROM_LOAD( "xp000064.u67",   0x00000, 0x10000, CRC(bb958158) SHA1(5d171ba71f70c668c70e4afd59ef7a0283798bbd) )
7882
7883   ROM_REGION( 0x10000, "user1", 0 )
7884   ROM_LOAD( "x002421p.u66",   0x00000, 0x10000, CRC(ee6a2bb8) SHA1(7916a8cbe08cd66e5d3b4b1c5b4aaff108e79f59) ) /* Deuces Wild Bonus Poker - French */
7885
7886   ROM_REGION( 0x020000, "gfx1", 0 )
7887   ROM_LOAD( "mro-cg2353.u77",  0x00000, 0x8000, CRC(7ed7f7cd) SHA1(406b124b3db5335acf8f8987afbfa10d90e04351) )
7888   ROM_LOAD( "mgo-cg2353.u78",  0x08000, 0x8000, CRC(aab4e5fb) SHA1(7d6e048dc1a9d01900ba71fc23c884637f5850f2) )
7889   ROM_LOAD( "mbo-cg2353.u79",  0x10000, 0x8000, CRC(119f59cd) SHA1(52283feb21b880960efef06c780d4e22b31ea18c) )
7890   ROM_LOAD( "mxo-cg2353.u80",  0x18000, 0x8000, CRC(3bb871c1) SHA1(0b9439fd6565c742c1c7dda23a80bdd1d91d7293) )
7891
7892   ROM_REGION( 0x200, "proms", 0 )
7893   ROM_LOAD( "capx2307.u43", 0x0000, 0x0200, CRC(58d81338) SHA1(f0044ebbd0128d6fb74d850528ef02730c180f00) )
7894ROM_END
7895
7896ROM_START( pex2440p ) /* Superboard : Deuces Wild Poker (X002440P+XP000053) */
7897/*
7898                                        w/D     w/oD
7899PayTable   3K   STR  FL  FH  4K  SF  5K  RF  4D  RF  (Bonus)
7900------------------------------------------------------------
7901 P129A      1    2    3   4   4  10  16  25 200 250    800
7902  % Range: 95.7-97.7%  Optimum: 99.7%  Hit Frequency: 44.3%
7903     Programs Available: PP0469, X002440P
7904*/
7905   ROM_REGION( 0x10000, "maincpu", 0 )
7906   ROM_LOAD( "xp000053.u67",   0x00000, 0x10000, CRC(f4f1f986) SHA1(84cfc2c4a10ed24d3a971fe75041a4108ec1d7f2) )
7907
7908   ROM_REGION( 0x10000, "user1", 0 )
7909   ROM_LOAD( "x002440p.u66",   0x00000, 0x10000, CRC(2ecb28cc) SHA1(a7b902bdfbf8f5ceedc778b8408c39ee279a1a1d) ) /* Deuces Wild Poker */
7910
7911   ROM_REGION( 0x020000, "gfx1", 0 )
7912   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7913   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7914   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7915   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7916
7917   ROM_REGION( 0x200, "proms", 0 )
7918   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7919ROM_END
7920
7921ROM_START( pex2461p ) /* Superboard : Joker Poker (X002461P+XP000055) */
7922/*
7923                                       w/J     w/oJ
7924PayTable   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
7925-----------------------------------------------------------
7926  NCJ       1   2   4    5   8  16 100 100 400 100    800
7927  % Range: 93.2-95.2%  Optimum: 97.2%  Hit Frequency: 30.1%
7928     Programs Available: X002461P
7929*/
7930   ROM_REGION( 0x10000, "maincpu", 0 )
7931   ROM_LOAD( "xp000055.u67",   0x00000, 0x10000, CRC(339821e0) SHA1(127d4eff01136feaf1e3242d57433349afb7b6ca) )
7932
7933   ROM_REGION( 0x10000, "user1", 0 )
7934   ROM_LOAD( "x002461p.u66",   0x00000, 0x10000, CRC(9eb7b3ac) SHA1(162353e0914bf86d36b653719fc71b56c265cca0) ) /* Joker Poker */
7935
7936   ROM_REGION( 0x020000, "gfx1", 0 )
7937   ROM_LOAD( "mro-cg2185.u77",  0x00000, 0x8000, CRC(7e64bd1a) SHA1(e988a380ee58078bf5bdc7747e83aed1393cfad8) ) /*  07/10/95   @ IGT  L95-1506  */
7938   ROM_LOAD( "mgo-cg2185.u78",  0x08000, 0x8000, CRC(d4127893) SHA1(75039c45ba6fd171a66876c91abc3191c7feddfc) )
7939   ROM_LOAD( "mbo-cg2185.u79",  0x10000, 0x8000, CRC(17dba955) SHA1(5f77379c88839b3a04e235e4fb0120c77e17b60e) )
7940   ROM_LOAD( "mxo-cg2185.u80",  0x18000, 0x8000, CRC(583eb3b1) SHA1(4a2952424969917fb1594698a779fe5a1e99bff5) )
7941
7942   ROM_REGION( 0x200, "proms", 0 )
7943   ROM_LOAD( "capx1321.u43", 0x0000, 0x0200, CRC(4b57569f) SHA1(fa29c0f627e7ce79951ec6dadec114864144f37d) )
7944ROM_END
7945
7946ROM_START( pekoc766 ) /* Superboard : Standard Draw Poker (PP0766) English / Spanish - Key On Credit */
7947/*
7948PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7949----------------------------------------------------------
7950  ????      1    2    3    4    5   8  25  50 300    400
7951  % Range: 92.6-94.6%  Optimum: 96.4%  Hit Frequency: 45.6%
7952     Programs Available: PP0766 A5W-A6F
7953
7954Same as US paytable QJ
7955*/
7956   ROM_REGION( 0x10000, "maincpu", 0 )
7957   ROM_LOAD( "pp0766_a5w-a6f.u67",   0x00000, 0x10000, CRC(e6bfa03b) SHA1(c4a281ab441747db4fefb09f0f07d3718855a9ca) )
7958
7959   ROM_REGION( 0x10000, "user1", 0 )
7960   ROM_LOAD( "pp0766_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
7961
7962   ROM_REGION( 0x020000, "gfx1", 0 )
7963   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
7964   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
7965   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
7966   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
7967
7968   ROM_REGION( 0x200, "proms", 0 )
7969   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
7970ROM_END
7971
7972ROM_START( pekoc801 ) /* Superboard : 10's or Better (PP0801) English / Spanish - Key On Credit */
7973/*
7974PayTable  10s+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
7975----------------------------------------------------------
7976  ????     1     1    3    4    5   8  25  50 300   1000
7977  % Range: 85.2-87.2%  Optimum: 89.2%  Hit Frequency: 49.0%
7978     Programs Available: PP0801 A5W-A6F
7979
7980Same as US paytable P8B
7981*/
7982   ROM_REGION( 0x10000, "maincpu", 0 )
7983   ROM_LOAD( "pp0801_a5w-a6f.u67",   0x00000, 0x10000, CRC(d026b27a) SHA1(fb54699444b1e1950288881d4c7950980535c0f6) )
7984
7985   ROM_REGION( 0x10000, "user1", 0 )
7986   ROM_LOAD( "pp0801_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
7987
7988   ROM_REGION( 0x020000, "gfx1", 0 )
7989   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
7990   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
7991   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
7992   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
7993
7994   ROM_REGION( 0x200, "proms", 0 )
7995   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
7996ROM_END
7997
7998ROM_START( pekoc802 ) /* Superboard : Standard Draw Poker (PP0802) English / Spanish - Key On Credit */
7999/*
8000PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
8001----------------------------------------------------------
8002  ????      1    2    3    4    5   6  25  50 250   1000
8003  % Range: 91.0-93.0%  Optimum: 95.0%  Hit Frequency: 45.5%
8004     Programs Available: PP0802 A5W-A6F
8005
8006Same as US paytable GA
8007*/
8008   ROM_REGION( 0x10000, "maincpu", 0 )
8009   ROM_LOAD( "pp0803_a5w-a6f.u67",   0x00000, 0x10000, CRC(93ea790c) SHA1(ec331565c058b173e343a0d3f6c28bab7f0b10d8) )
8010
8011   ROM_REGION( 0x10000, "user1", 0 )
8012   ROM_LOAD( "pp0802_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8013
8014   ROM_REGION( 0x020000, "gfx1", 0 )
8015   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8016   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8017   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8018   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8019
8020   ROM_REGION( 0x200, "proms", 0 )
8021   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8022ROM_END
8023
8024ROM_START( pekoc803 ) /* Superboard : Joker Poker (PP0830) English / Spanish - Key On Credit */
8025/*
8026                                            w/J     w/oJ
8027PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
8028----------------------------------------------------------------
8029  ????      1    1   2   3    4   5  20  40 100 200 500    800
8030  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
8031     Programs Available: PP0803 A5W-A6F, PP0803 A50-A6N
8032
8033Same as US paytable P17A
8034*/
8035   ROM_REGION( 0x10000, "maincpu", 0 )
8036   ROM_LOAD( "pp0803_a5w-a6f.u67",   0x00000, 0x10000, CRC(26ec73b3) SHA1(0f592d21e83b73f37943b80ded6e83ee7b9c3edf) )
8037
8038   ROM_REGION( 0x10000, "user1", 0 )
8039   ROM_LOAD( "pp0803_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8040
8041   ROM_REGION( 0x020000, "gfx1", 0 )
8042   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8043   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8044   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8045   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8046
8047   ROM_REGION( 0x200, "proms", 0 )
8048   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8049ROM_END
8050
8051ROM_START( pekoc803a ) /* Superboard : Joker Poker (PP0803) English / Spanish - Key On Credit */
8052/*
8053                                            w/J     w/oJ
8054PayTable   Ks+  2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
8055----------------------------------------------------------------
8056  ????      1    1   2   3    4   5  20  40 100 200 500    800
8057  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 44.7%
8058     Programs Available: PP0803 A5W-A6F, PP0803 A50-A6N
8059
8060Same as US paytable P17A
8061*/
8062   ROM_REGION( 0x10000, "maincpu", 0 )
8063   ROM_LOAD( "pp0803_a50-a6n.u67",   0x00000, 0x10000, CRC(40c18868) SHA1(d0e899fd09c1b49e2b93671770e4981c0a3a3501) )
8064
8065   ROM_REGION( 0x10000, "user1", 0 )
8066   ROM_LOAD( "pp0803_data_a50-a6n.u66",   0x00000, 0x10000, CRC(eea95084) SHA1(fddf0d645437f606a31f72a56183d9a879b29418) )
8067
8068   ROM_REGION( 0x020000, "gfx1", 0 )
8069   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8070   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8071   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8072   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8073
8074   ROM_REGION( 0x200, "proms", 0 )
8075   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8076ROM_END
8077
8078ROM_START( pekoc804 ) /* Superboard : Bonus poker Deluxe - Key On Credit */
8079/*
8080PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
8081----------------------------------------------------------
8082  ????      1    1    3    4    5   7  80  50 250    800
8083  % Range: 92.3-94.3%  Optimum: 96.3%  Hit Frequency: 45.2%
8084     Programs Available: PP0804 A5W-A6F
8085
8086Same as US paytable P253A
8087*/
8088   ROM_REGION( 0x10000, "maincpu", 0 )
8089   ROM_LOAD( "pp0804_a5w-a6f.u67",   0x00000, 0x10000, CRC(86a1a37b) SHA1(37c29120870e7ac613e4c06999cc52febb3dd3b0) )
8090
8091   ROM_REGION( 0x10000, "user1", 0 )
8092   ROM_LOAD( "pp0804_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8093
8094   ROM_REGION( 0x020000, "gfx1", 0 )
8095   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8096   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8097   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8098   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8099
8100   ROM_REGION( 0x200, "proms", 0 )
8101   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8102ROM_END
8103
8104ROM_START( pekoc806 ) /* Superboard : Standard Draw Poker - Key On Credit */
8105/*
8106PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
8107----------------------------------------------------------
8108  ????      1    2    3    4    5   6  25  50 250   1000
8109  % Range: 91.5-93.5%  Optimum: 95.5%  Hit Frequency: 45.3%
8110     Programs Available: PP0806 A5W-A6F
8111
8112Same as US paytable GB
8113*/
8114   ROM_REGION( 0x10000, "maincpu", 0 )
8115   ROM_LOAD( "pp0806_a5w-a6f.u67",   0x00000, 0x10000, CRC(299b2f73) SHA1(c0adc3a4b7f3c5a0e99d85be7f77a42fd6fb5160) )
8116
8117   ROM_REGION( 0x10000, "user1", 0 )
8118   ROM_LOAD( "pp0806_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8119
8120   ROM_REGION( 0x020000, "gfx1", 0 )
8121   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8122   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8123   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8124   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8125
8126   ROM_REGION( 0x200, "proms", 0 )
8127   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8128ROM_END
8129
8130ROM_START( pekoc818 ) /* Superboard : Joker Poker (Aces or Better) - Key On Credit */
8131/*
8132                                            w/J     w/oJ
8133PayTable   As   2P  3K  STR  FL  FH  4K  SF  RF  5K  RF  (Bonus)
8134----------------------------------------------------------------
8135  ????      1    1   2   3    4   6  15  50  80 200 500    800
8136  % Range: 83.6-85.6%  Optimum: 87.6%  Hit Frequency: ??.?%
8137     Programs Available: PP0818 A5W-A6F
8138*/
8139   ROM_REGION( 0x10000, "maincpu", 0 )
8140   ROM_LOAD( "pp0818_a5w-a6f.u67",   0x00000, 0x10000, CRC(38b1f3ca) SHA1(d869fbacdd918b146072ca820530cc041aa54568) )
8141
8142   ROM_REGION( 0x10000, "user1", 0 )
8143   ROM_LOAD( "pp0818_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8144
8145   ROM_REGION( 0x020000, "gfx1", 0 )
8146   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8147   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8148   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8149   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8150
8151   ROM_REGION( 0x200, "proms", 0 )
8152   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8153ROM_END
8154
8155ROM_START( pekoc819 ) /* Superboard : Bonus poker Deluxe - Key On Credit */
8156/*
8157PayTable   Js+  2PR  3K   STR  FL  FH  4K  SF  RF  (Bonus)
8158----------------------------------------------------------
8159  ????      1    1    2    4    6   9  60  50 250    800
8160  % Range: 83.6-85.6%  Optimum: 87.6%  Hit Frequency: ??.?%
8161     Programs Available: PP0818 A5W-A6F
8162*/
8163   ROM_REGION( 0x10000, "maincpu", 0 )
8164   ROM_LOAD( "pp0819_a5w-a6f.u67",   0x00000, 0x10000, CRC(f84a0415) SHA1(b501cf3a165b65f8ad2d908c6cb70ea86c0c41e7) )
8165
8166   ROM_REGION( 0x10000, "user1", 0 )
8167   ROM_LOAD( "pp0819_data_a5w-a6f.u66",   0x00000, 0x10000, CRC(636ceb06) SHA1(ca0f7e67f6c86d6aed2bbed2a70372b5d5799bb8) )
8168
8169   ROM_REGION( 0x020000, "gfx1", 0 )
8170   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8171   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8172   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8173   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8174
8175   ROM_REGION( 0x200, "proms", 0 )
8176   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8177ROM_END
8178
8179ROM_START( pekoc825 ) /* Superboard : White Hot Aces - Key On Credit */
8180/*
8181                                      5-K 2-4
8182PayTable   Js+  2PR  3K  STR  FL  FH  4K  4K  4A  SF  RF  (Bonus)
8183-----------------------------------------------------------------
8184  ????      1    1    2   4    7  10  50 120 240  50 250    800
8185  % Range: 91.4-93.4%  Optimum: 95.4%  Hit Frequency: 44.7%
8186     Programs Available: PP0825 A59-A7C
8187*/
8188   ROM_REGION( 0x10000, "maincpu", 0 )
8189   ROM_LOAD( "pp0825_a59-a7c.u67",   0x00000, 0x10000, CRC(f1b7b2e0) SHA1(afa2236541230f546ae55093b4f0389691467c97) )
8190
8191   ROM_REGION( 0x10000, "user1", 0 )
8192   ROM_LOAD( "pp0825_data_a59-a7c.u66",   0x00000, 0x10000, CRC(f343c99b) SHA1(9cf14c6f281d77485ef7244bd5bd64042cf5a85c) )
8193
8194   ROM_REGION( 0x020000, "gfx1", 0 )
8195   ROM_LOAD( "mro-cg2245.u77",  0x00000, 0x8000, CRC(60461758) SHA1(856aa5a2ec2d3dece8a94cd6c58ff0e2941d61b3) )
8196   ROM_LOAD( "mgo-cg2245.u78",  0x08000, 0x8000, CRC(d4939806) SHA1(2852ec153da620868330d0d51b73c779ee6cfc49) )
8197   ROM_LOAD( "mbo-cg2245.u79",  0x10000, 0x8000, CRC(86b2977b) SHA1(a086c05afeb6b2658975f06c33aa768efef92688) )
8198   ROM_LOAD( "mxo-cg2245.u80",  0x18000, 0x8000, CRC(fd95acea) SHA1(be8feb17e22915951ff9b68150674e369ea95758) )
8199
8200   ROM_REGION( 0x200, "proms", 0 )
8201   ROM_LOAD( "capx733.u43", 0x0000, 0x0200, CRC(867efa71) SHA1(f9e303dfaa43d5e44dbd1671b3269c1a658dea89) )
8202ROM_END
8203
8204ROM_START( pex0838s ) /* Superboard : Five Times Pay Slots (X000835S+XS000002) - Payout 90.01% */
8205   ROM_REGION( 0x10000, "maincpu", 0 )
8206   ROM_LOAD( "xs000002.u67",   0x00000, 0x10000, CRC(f25725e8) SHA1(a7a0022162f6aa3303f072b6fab3713bdc6b57ad) )
8207
8208   ROM_REGION( 0x10000, "user1", 0 )
8209   ROM_LOAD( "x000838s.u66",   0x00000, 0x10000, CRC(913d17ac) SHA1(37162ac4384954165d9cfe04811ff5fa2cdde71e) ) /* Five Times Pay Slots - 2 Coins Max / 1 Pay Line */
8210
8211   ROM_REGION( 0x020000, "gfx1", 0 )
8212   ROM_LOAD( "mro-cg2351.u77",  0x00000, 0x8000, CRC(d861f650) SHA1(7b483c5241e6704e8a2c70edb5a315ed6b1ae85d) )
8213   ROM_LOAD( "mgo-cg2351.u78",  0x08000, 0x8000, CRC(3a853984) SHA1(7af217f85f3168a6f2b50a11450d2fa3ff1e0386) )
8214   ROM_LOAD( "mbo-cg2351.u79",  0x10000, 0x8000, CRC(d1dc724e) SHA1(3fa2e9f363b2984cf17eb96b294343613e0e610a) )
8215   ROM_LOAD( "mxo-cg2351.u80",  0x18000, 0x8000, CRC(7888aab5) SHA1(237feae404314c7e394e403e4385bd01b6ac61d7) )
8216
8217   ROM_REGION( 0x200, "proms", 0 )
8218   ROM_LOAD( "capx2351.u43", 0x0000, 0x0200, CRC(34c59e88) SHA1(bf4d7a54c964b1b723ec65a4ede40ad900dd0f08) )
8219ROM_END
8220
8221ROM_START( pex0841s ) /* Superboard : Five Times Pay Slots (X000841S+XS000002) - Payout 92.51% */
8222   ROM_REGION( 0x10000, "maincpu", 0 )
8223   ROM_LOAD( "xs000002.u67",   0x00000, 0x10000, CRC(f25725e8) SHA1(a7a0022162f6aa3303f072b6fab3713bdc6b57ad) )
8224
8225   ROM_REGION( 0x10000, "user1", 0 )
8226   ROM_LOAD( "x000841s.u66",   0x00000, 0x10000, CRC(430cc466) SHA1(3cd4a942274930db260567344008880027d5538c) ) /* Five Times Pay Slots - 3 Coins Max / 1 Pay Line */
8227
8228   ROM_REGION( 0x020000, "gfx1", 0 )
8229   ROM_LOAD( "mro-cg2351.u77",  0x00000, 0x8000, CRC(d861f650) SHA1(7b483c5241e6704e8a2c70edb5a315ed6b1ae85d) )
8230   ROM_LOAD( "mgo-cg2351.u78",  0x08000, 0x8000, CRC(3a853984) SHA1(7af217f85f3168a6f2b50a11450d2fa3ff1e0386) )
8231   ROM_LOAD( "mbo-cg2351.u79",  0x10000, 0x8000, CRC(d1dc724e) SHA1(3fa2e9f363b2984cf17eb96b294343613e0e610a) )
8232   ROM_LOAD( "mxo-cg2351.u80",  0x18000, 0x8000, CRC(7888aab5) SHA1(237feae404314c7e394e403e4385bd01b6ac61d7) )
8233
8234   ROM_REGION( 0x200, "proms", 0 )
8235   ROM_LOAD( "capx2351.u43", 0x0000, 0x0200, CRC(34c59e88) SHA1(bf4d7a54c964b1b723ec65a4ede40ad900dd0f08) )
8236ROM_END
8237
8238ROM_START( pex0998s ) /* Superboard : Triple Triple Diamond Slots (X000998S+XS000006) - Payout 92.47% */
8239   ROM_REGION( 0x10000, "maincpu", 0 )
8240   ROM_LOAD( "xs000006.u67",   0x00000, 0x10000, CRC(4b11ca18) SHA1(f64a1fbd089c01bc35a5484e60b8834a2db4a79f) )
8241
8242   ROM_REGION( 0x10000, "user1", 0 )
8243   ROM_LOAD( "x000998s.u66",   0x00000, 0x10000, CRC(e29d4346) SHA1(93901ff65c8973e34ac1f0dd68bb4c4973da5621) ) /* Triple Triple Diamonds Slots - 2 Coins Max / 1 Pay Line */
8244
8245   ROM_REGION( 0x020000, "gfx1", 0 )
8246   ROM_LOAD( "mro-cg2361.u77",  0x00000, 0x8000, CRC(c0eba866) SHA1(8f217aeb3e8028a5633d95e5612f1b55e601650f) )
8247   ROM_LOAD( "mgo-cg2361.u78",  0x08000, 0x8000, CRC(345eaea2) SHA1(18ebb94a323e1cf671201db8b9f85d4f30d8b5ec) )
8248   ROM_LOAD( "mbo-cg2361.u79",  0x10000, 0x8000, CRC(fa130af6) SHA1(aca5e52e00bc75a4801fd3f6c564e62ed4251d8e) )
8249   ROM_LOAD( "mxo-cg2361.u80",  0x18000, 0x8000, CRC(7de1812c) SHA1(c7e23a10f20fc8b618df21dd33ac456e1d2cfe33) )
8250
8251   ROM_REGION( 0x200, "proms", 0 )
8252   ROM_LOAD( "capx2361.u43", 0x0000, 0x0200, CRC(93057296) SHA1(534bbf8ee80a22822d577f6685501f4c929987ef) )
8253ROM_END
8254
8255ROM_START( pex1087s ) /* Superboard : Double Double Diamond Slots (X001087S+XS000006) - Payout 94.95% */
8256   ROM_REGION( 0x10000, "maincpu", 0 )
8257   ROM_LOAD( "xs000006.u67",   0x00000, 0x10000, CRC(4b11ca18) SHA1(f64a1fbd089c01bc35a5484e60b8834a2db4a79f) )
8258
8259   ROM_REGION( 0x10000, "user1", 0 )
8260   ROM_LOAD( "x001087s.u66",   0x00000, 0x10000, CRC(f811cff6) SHA1(3bdb77774387602ba4d699e009afa8591559c33e) ) /* Double Double Diamonds Slots - 3 Coins Max / 1 Pay Line */
8261
8262   ROM_REGION( 0x020000, "gfx1", 0 )
8263   ROM_LOAD( "mro-cg2415.u77",  0x00000, 0x8000, CRC(f135a9c1) SHA1(366f93ce14da86c237da62f0b252bd26d662c8b1) )
8264   ROM_LOAD( "mgo-cg2415.u78",  0x08000, 0x8000, CRC(3b1f5f13) SHA1(a12b8268f51cce4f71b1e451274f7e5e97bc4f3d) )
8265   ROM_LOAD( "mbo-cg2415.u79",  0x10000, 0x8000, CRC(f14c3a06) SHA1(4132c15323cf2c2cf001c8cdcebdadb533b07312) )
8266   ROM_LOAD( "mxo-cg2415.u80",  0x18000, 0x8000, CRC(c427fff8) SHA1(5f41ff4d4598609a753c2e986f2a8cd63aa87d30) )
8267
8268   ROM_REGION( 0x200, "proms", 0 )
8269   ROM_LOAD( "capx2415.u43", 0x0000, 0x0200, NO_DUMP ) /* Should be CAPX2415(?) */
8270   ROM_LOAD( "capx2361.u43", 0x0000, 0x0200, CRC(93057296) SHA1(534bbf8ee80a22822d577f6685501f4c929987ef) ) /* Wrong!! Should be CAPX2415(?) */
8271ROM_END
8272
8273ROM_START( pexm001p ) /* Superboard : Multi-Poker (XM00001P) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */
8274/*
8275Combined average payout percent: 99.64%
8276
8277Game Type           PayTable   Payout
8278-------------------------------------
8279Bonus Poker          P77A      99.20%
8280Bonus Poker Deluxe   P200A     98.50%
8281Deuces Wild Poker    P34A     100.80%
8282Jacks or Better      CA        99.50%
8283Double Bonus Poker   P324A    100.20%
8284*/
8285   ROM_REGION( 0x10000, "maincpu", 0 )
8286   ROM_LOAD( "xmp00003.u67",   0x00000, 0x10000, CRC(41e33b3e) SHA1(cd5debfb59c4f0cc5d700a1c592a0dc203abcb66) ) /* Linkable Progressive, No Double Up */
8287   /* Known to be found with XMP00003, XMP00006 or XMP00024 programs */
8288
8289   ROM_REGION( 0x10000, "user1", 0 )
8290   ROM_LOAD( "xm00001p.u66",   0x00000, 0x10000, CRC(b1569f05) SHA1(c94409ad74c4585288780cc2f96957592554a250) ) /*  07/18/95   @ IGT  L95-1613  */
8291
8292   ROM_REGION( 0x020000, "gfx1", 0 )
8293   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8294   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) )
8295   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8296   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8297
8298   ROM_REGION( 0x200, "proms", 0 )
8299   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8300ROM_END
8301
8302ROM_START( pexm002p ) /* Superboard : Multi-Poker (XM00002P) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */
8303/*
8304Combined average payout percent: 98.14%
8305
8306Game Type           PayTable   Payout
8307-------------------------------------
8308Bonus Poker          P90A      98.00%
8309Bonus Poker Deluxe   P251A     97.40%
8310Deuces Wild Poker    P62A      98.90%
8311Jacks or Better      BA        97.30%
8312Double Bonus Poker   P323A     99.10%
8313*/
8314   ROM_REGION( 0x10000, "maincpu", 0 )
8315   ROM_LOAD( "xmp00006.u67",   0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /*  07/25/96   @ IGT L96-2041  - Linkable Progressive */
8316   /* Known to be found with XMP00003, XMP00006 or XMP00024 programs */
8317
8318   ROM_REGION( 0x10000, "user1", 0 )
8319   ROM_LOAD( "xm00002p.u66",   0x00000, 0x10000, CRC(96cf471c) SHA1(9597bf6a80c392ee22dc4606db610fdaf032377f) ) /*  07/18/95   @ IGT  L95-1614  */
8320
8321   ROM_REGION( 0x020000, "gfx1", 0 )
8322   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8323   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) )
8324   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8325   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8326
8327   ROM_REGION( 0x200, "proms", 0 )
8328   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8329ROM_END
8330
8331ROM_START( pexm003p ) /* Superboard : Multi-Poker (XM00003P) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */
8332/*
8333Combined average payout percent: 96.78%
8334
8335Game Type           PayTable   Payout
8336-------------------------------------
8337Bonus Poker          P101A     96.90%
8338Bonus Poker Deluxe   P253A     96.30%
8339Deuces Wild Poker    P47A      96.80%
8340Jacks or Better      P11A      96.10%
8341Double Bonus Poker   P325A     97.80%
8342*/
8343   ROM_REGION( 0x10000, "maincpu", 0 )
8344   ROM_LOAD( "xmp00024.u67",   0x00000, 0x10000, CRC(f2df8870) SHA1(bc7fa1d79da07093cf3d3508e226a9c490990e04) ) /* Standalone Progressive */
8345   /* Known to be found with XMP00003, XMP00006 or XMP00024 programs */
8346
8347   ROM_REGION( 0x10000, "user1", 0 )
8348   ROM_LOAD( "xm00003p.u66",   0x00000, 0x10000, CRC(55b44732) SHA1(8e0bbad3aaa7deca85ae641c444be3a513bdce50) ) /*  07/18/95   @ IGT  L95-1615  */
8349
8350   ROM_REGION( 0x020000, "gfx1", 0 )
8351   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8352   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) )
8353   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8354   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8355
8356   ROM_REGION( 0x200, "proms", 0 )
8357   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8358ROM_END
8359
8360ROM_START( pexm004p ) /* Superboard : Multi-Poker (XM00004P) - Dbl Dbl Bonus Poker, Nevada Bonus Poker, Joker Poker, Dbl Bonus Poker & Dbl Deuces Poker */
8361/*
8362Combined average payout percent: 99.22%
8363
8364Game Type           PayTable   Payout
8365-------------------------------------
8366Double Double Bonus  P505A     97.80%
8367Nevada Bonus Poker   P503A     98.80%
8368Joker Poker          ZA       100.20%
8369Double Bonus Poker   P324A    100.20%
8370Double Deuce Poker   P236A     99.60%
8371*/
8372   ROM_REGION( 0x10000, "maincpu", 0 )
8373   ROM_LOAD( "xmp00002.u67",   0x00000, 0x10000, CRC(d5624ac8) SHA1(6b778b0e7ddb81123c6038920b3447e05a0556b2) ) /* Linkable Progressive */
8374
8375   ROM_REGION( 0x10000, "user1", 0 )
8376   ROM_LOAD( "xm00004p.u66",   0x00000, 0x10000, CRC(bafd160f) SHA1(7454fbf992d4d0668ef375b76ce2cae3324a5f75) )
8377
8378   ROM_REGION( 0x020000, "gfx1", 0 )
8379   ROM_LOAD( "mro-cg2196.u77",  0x00000, 0x8000, CRC(f2f95ad9) SHA1(92c105147d4cdcebb4c784d771b9cebc982a742f) )
8380   ROM_LOAD( "mgo-cg2196.u78",  0x08000, 0x8000, CRC(95980a94) SHA1(40b84b2f3b77584739f2eb8df49b64533c60e1e7) )
8381   ROM_LOAD( "mbo-cg2196.u79",  0x10000, 0x8000, CRC(38151131) SHA1(7730a342bcfab2c2acd84f93ce280eb5dc9666f3) )
8382   ROM_LOAD( "mxo-cg2196.u80",  0x18000, 0x8000, CRC(60f748b8) SHA1(61af0bac1d6c23f8e1aa3f0094fd56185aa6ae86) )
8383
8384   ROM_REGION( 0x200, "proms", 0 )
8385   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8386ROM_END
8387
8388ROM_START( pexm005p ) /* Superboard : Multi-Poker (XM00005P) - Bonus Poker, Dbl Dbl Bonus Poker, Joker Poker, Dbl Joker Poker & Dbl Bonus Poker */
8389/*
8390Combined average payout percent: 97.06%
8391
8392Game Type           PayTable   Payout
8393-------------------------------------
8394Bonus Poker          P101A     96.90%
8395Double Double Bonus  P506A     96.70%
8396Joker Poker          NA        97.20%
8397Double Joker Poker   ?????     98.10%
8398Double Bonus Poker   P434A     96.40%
8399*/
8400   ROM_REGION( 0x10000, "maincpu", 0 )
8401   ROM_LOAD( "xmp00004.u67",   0x00000, 0x10000, CRC(83184999) SHA1(b8483917b338be4fd3641b3990eea37072d36885) ) /* Linkable Progressive */
8402   /* Also known to be found with XMP00024 programs */
8403
8404   ROM_REGION( 0x10000, "user1", 0 )
8405   ROM_LOAD( "xm00005p.u66",   0x00000, 0x10000, CRC(c832eac7) SHA1(747d57de602b44ae1276fe1009db1b6de0d2c64c) )
8406
8407   ROM_REGION( 0x020000, "gfx1", 0 )
8408   ROM_LOAD( "mro-cg2240.u77",  0x00000, 0x8000, CRC(eedef2d4) SHA1(419a90e1f4a840625e6ac7afc2c24d13c908156d) )
8409   ROM_LOAD( "mgo-cg2240.u78",  0x08000, 0x8000, CRC(c596b058) SHA1(d53824f869bceeda482e434cba9a77ba8ce2015f) )
8410   ROM_LOAD( "mbo-cg2240.u79",  0x10000, 0x8000, CRC(ab1a58ee) SHA1(44963f27d5f5d8f9415d88c12b2d40f0ef55c559) )
8411   ROM_LOAD( "mxo-cg2240.u80",  0x18000, 0x8000, CRC(75488ff7) SHA1(a34ae53847b5643b8c4dc182dc59b1fccf22d557) )
8412
8413   ROM_REGION( 0x200, "proms", 0 )
8414   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8415ROM_END
8416
8417ROM_START( pexm006p ) /* Superboard : Multi-Poker (XM00006P) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */
8418/*
8419Combined average payout percent: 99.04%
8420
8421Game Type           PayTable   Payout
8422-------------------------------------
8423Bonus Poker          P77A      99.20%
8424Bonus Poker Deluxe   P200A     98.50%
8425Deuces Wild Poker    P62A      98.90%
8426Jacks or Better      CA        99.50%
8427Double Bonus Poker   P323A     99.10%
8428*/
8429   ROM_REGION( 0x10000, "maincpu", 0 )
8430   ROM_LOAD( "xmp00006.u67",   0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /*  07/25/96   @ IGT L96-2041  - Linkable Progressive */
8431   /* Known to be found with XMP00003, XMP00006 or XMP00024 programs */
8432
8433   ROM_REGION( 0x10000, "user1", 0 )
8434   ROM_LOAD( "xm00006p.u66",   0x00000, 0x10000, CRC(b464ee79) SHA1(8768e52c66881c8f327055124ff31bcad79fd027) ) /*  03/08/96   @ IGT  NV  */
8435
8436   ROM_REGION( 0x020000, "gfx1", 0 )
8437   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8438   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) )
8439   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8440   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8441
8442   ROM_REGION( 0x200, "proms", 0 )
8443   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8444ROM_END
8445
8446ROM_START( pexm007p ) /* Superboard : Multi-Poker (XM00007P) - Bonus Poker, Dbl Dbl Bonus Poker, Deuces Wild Poker, Dbl Bonus Poker & Jacks or Better */
8447/*
8448Combined average payout percent: 97.38%
8449
8450Game Type           PayTable   Payout
8451-------------------------------------
8452Bonus Poker          P90A      98.00%
8453Double Double Bonus  P506A     96.70%
8454Deuces Wild Poker    P59A      97.10%
8455Jacks or Better      BA        97.30%
8456Double Bonus Poker   P325A     97.80%
8457*/
8458   ROM_REGION( 0x10000, "maincpu", 0 )
8459   ROM_LOAD( "xmp00006.u67",   0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /*  07/25/96   @ IGT L96-2041  - Linkable Progressive */
8460
8461   ROM_REGION( 0x10000, "user1", 0 )
8462   ROM_LOAD( "xm00007p.u66",   0x00000, 0x10000, CRC(85a76416) SHA1(1bc3b9c2f687e68a085bfc5cf86d99fbd18cb9c7) )
8463
8464   ROM_REGION( 0x020000, "gfx1", 0 )
8465   ROM_LOAD( "mro-cg2233.u77",  0x00000, 0x8000, CRC(8758866a) SHA1(49146560a7e79593a2ac0378dc3b300b96ef1015) )
8466   ROM_LOAD( "mgo-cg2233.u78",  0x08000, 0x8000, CRC(45ac6cfd) SHA1(25ff276320fe51c56aea0cff099be17e4ce8f404) )
8467   ROM_LOAD( "mbo-cg2233.u79",  0x10000, 0x8000, CRC(9e9d702f) SHA1(75bb9adb49095b7cb87d2615bcf725e4a4774e25) )
8468   ROM_LOAD( "mxo-cg2233.u80",  0x18000, 0x8000, CRC(2f05ebcb) SHA1(90d00ee4ce2dcbfbe33e221efe4db45a4e484baa) )
8469
8470   ROM_REGION( 0x200, "proms", 0 )
8471   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8472ROM_END
8473
8474ROM_START( pexm008p ) /* Superboard : Multi-Poker (XM00008P) - Bonus Poker, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Bonus Poker */
8475/*
8476Combined average payout percent: 99.30%
8477
8478Game Type           PayTable   Payout
8479-------------------------------------
8480Bonus Poker          P77A      99.20%
8481Bonus Poker Deluxe   P200A     98.50%
8482Deuces Wild Poker    P34A     100.80%
8483Double Bonus Poker   P324A    100.20%
8484Double Double Bonus  P505A     97.80%
8485*/
8486   ROM_REGION( 0x10000, "maincpu", 0 )
8487   ROM_LOAD( "xmp00006.u67",   0x00000, 0x10000, CRC(d61f1677) SHA1(2eca1315d6aa310a54de2dfa369e443a07495b76) ) /*  07/25/96   @ IGT L96-2041  - Linkable Progressive */
8488
8489   ROM_REGION( 0x10000, "user1", 0 )
8490   ROM_LOAD( "xm00008p.u66",   0x00000, 0x10000, CRC(37ff1a79) SHA1(5b15245e79d8f1b984d254f4307f1a2219ce3ed2) )
8491
8492   ROM_REGION( 0x020000, "gfx1", 0 )
8493   ROM_LOAD( "mro-cg2228.u77",  0x00000, 0x8000, NO_DUMP ) /* This set requires CG2228 for the correct banners on the MENU page */
8494   ROM_LOAD( "mgo-cg2228.u78",  0x08000, 0x8000, NO_DUMP )
8495   ROM_LOAD( "mbo-cg2228.u79",  0x10000, 0x8000, NO_DUMP )
8496   ROM_LOAD( "mxo-cg2228.u80",  0x18000, 0x8000, NO_DUMP )
8497   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8498   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) ) /* Close but banners on MEMU WRONG!! */
8499   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8500   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8501
8502   ROM_REGION( 0x200, "proms", 0 )
8503   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8504ROM_END
8505
8506ROM_START( pexm009p ) /* Superboard : Multi-Poker (XM00009P) - Aces & Faces, Bonus Poker Dlx, Deuces Wild Poker, Jacks or Better & Dbl Aces & Faces Poker */
8507/*
8508Combined average payout percent: 98.47%
8509
8510Game Type           PayTable   Payout
8511-------------------------------------
8512Aces & Faces         ?????     99.20%
8513Bonus Poker Deluxe   P200A     98.50%
8514Deuces Wild Poker    P62A      98.90%
8515Jacks or Better      BB        97.80%
8516Double Aces & Faces  ?????     99.30%
8517*/
8518   ROM_REGION( 0x10000, "maincpu", 0 )
8519   ROM_LOAD( "xmp00002.u67",   0x00000, 0x10000, CRC(d5624ac8) SHA1(6b778b0e7ddb81123c6038920b3447e05a0556b2) ) /* Linkable Progressive */
8520
8521   ROM_REGION( 0x10000, "user1", 0 )
8522   ROM_LOAD( "xm00009p.u66",   0x00000, 0x10000, CRC(e133d0bb) SHA1(7ed4fa335e230c28e6fc66f0c990bc7ead2b279d) )
8523
8524   ROM_REGION( 0x020000, "gfx1", 0 )
8525   ROM_LOAD( "mro-cg2xxx.u77",  0x00000, 0x8000, NO_DUMP ) /* This set requires an unknown CG graphics set for the correct banners on the MENU page */
8526   ROM_LOAD( "mgo-cg2xxx.u78",  0x08000, 0x8000, NO_DUMP ) /* Most likely CG2227, CG2229 or CG2239 */
8527   ROM_LOAD( "mbo-cg2xxx.u79",  0x10000, 0x8000, NO_DUMP )
8528   ROM_LOAD( "mxo-cg2xxx.u80",  0x18000, 0x8000, NO_DUMP )
8529   ROM_LOAD( "mro-cg2174.u77",  0x00000, 0x8000, CRC(bb666733) SHA1(dcaa1980b051a554cb0f443b1183a680edc9ad3f) ) /*  07/26/95   @ IGT  L95-1616  */
8530   ROM_LOAD( "mgo-cg2174.u78",  0x08000, 0x8000, CRC(cc46adb0) SHA1(6065aa5dcb9091ad80e499c7ee6dc629e79c865a) ) /* Close but banners on MEMU WRONG!! */
8531   ROM_LOAD( "mbo-cg2174.u79",  0x10000, 0x8000, CRC(7291a0c8) SHA1(1068f35e6ef5fd88c584922860231840a90fb623) )
8532   ROM_LOAD( "mxo-cg2174.u80",  0x18000, 0x8000, CRC(14f9480c) SHA1(59323f9fc5995277aea86d088893b6eb95b4e89b) )
8533
8534   ROM_REGION( 0x200, "proms", 0 )
8535   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8536ROM_END
8537
8538ROM_START( pexm013p ) /* Superboard : Multi-Poker (XM00013P) - Bonus Poker, Dbl Dbl Bonus Poker, Deuces Wild Poker, Jacks or Better & Joker Poker  */
8539/*
8540Combined average payout percent: 95.80%
8541
8542Game Type           PayTable   Payout
8543-------------------------------------
8544Bonus Poker          P596A     95.80%
8545Double Double Bonus  P507A     95.60%
8546Deuces Wild Poker    P57A      96.00%
8547Jacks or Better      P11A      96.10%
8548Joker Poker          P17A      95.50%
8549*/
8550   ROM_REGION( 0x10000, "maincpu", 0 )
8551   ROM_LOAD( "xmp00025.u67",   0x00000, 0x10000, CRC(5d39ff71) SHA1(0a5f67e61ae0e8a08cc551ab4271ffc97c343ae3) )
8552
8553   ROM_REGION( 0x10000, "user1", 0 )
8554   ROM_LOAD( "xm00013p.u66",   0x00000, 0x10000, CRC(4fde73f9) SHA1(f8eb6fb0585e8df9a7eb2ddc65bb20b120753d7a) )
8555
8556   ROM_REGION( 0x020000, "gfx1", 0 )
8557   ROM_LOAD( "mro-cg2296.u77",  0x00000, 0x8000, CRC(d0d92665) SHA1(2c686ee28b69ff975951ccafd8e5030fde640773) )
8558   ROM_LOAD( "mgo-cg2296.u78",  0x08000, 0x8000, CRC(d05fd16e) SHA1(f66b5ba8b4cf4f97ed46ec44cef43fed29bdd492) )
8559   ROM_LOAD( "mbo-cg2296.u79",  0x10000, 0x8000, CRC(6db6a435) SHA1(7ea0d6df1f7e0c4fe389437bf04d1f5a798c68ef) )
8560   ROM_LOAD( "mxo-cg2296.u80",  0x18000, 0x8000, CRC(4faeb79e) SHA1(f69277b729ba88860efc6b9a3d4956f245cc2943) )
8561
8562   ROM_REGION( 0x200, "proms", 0 )
8563   ROM_LOAD( "capx2174.u43", 0x0000, 0x0200, CRC(50bdad55) SHA1(958d463c7effb3457c1f9c44c9b7822339c04e8b) )
8564ROM_END
8565
8566ROM_START( pexmp013 ) /* Superboard : 5-in-1 Wingboard (XMP00013) Program in Spanish, Requires Spanish Wingboard CG rom set */
8567/*
8568
8569Known Wingboard compatible program roms:
8570   XMP00013 - Spanish
8571   XMP00014 (not dumped)
8572   XMP00017
8573   XMP00022 - Spanish (not dumped)
8574   XMP00026 - Spanish
8575   XMP00030
8576
8577The CG2346 set seems to support all games supported in CG2298 as well as graphics support for the following XnnnnnnP Data game types:
8578  Triple Double Bonus
8579  Black Jack Bonus (comes up as Back Jack Poker)
8580
8581*/
8582   ROM_REGION( 0x10000, "maincpu", 0 )
8583   ROM_LOAD( "xmp00013.u67",   0x00000, 0x10000, CRC(76ca7c2b) SHA1(cdcbfc648d007362bb50541e6415354c07815d66) )
8584
8585   ROM_REGION( 0x10000, "user1", 0 )
8586   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
8587
8588   ROM_REGION( 0x10000, "user2", 0 )
8589   ROM_LOAD( "x000188p.u66",   0x00000, 0x10000, CRC(3eb7580e) SHA1(86f2280542fb8a55767efd391d0fb04a12ed9408) ) /* Standard Draw Poker */
8590
8591   ROM_REGION( 0x10000, "user3", 0 )
8592   ROM_LOAD( "x000516p.u66",   0x00000, 0x10000, CRC(37f84ce7) SHA1(2e5157d02febec0ff31eb5a23254f7c49a486cf5) ) /* Double Bonus Poker */
8593
8594   ROM_REGION( 0x10000, "user4", 0 )
8595   ROM_LOAD( "x002275p.u66",   0x00000, 0x10000, CRC(5ba4f5ab) SHA1(def069025ec4aa340646dfd7cfacc8ce836a210c) ) /* Black Jack Bonus Poker */
8596
8597   ROM_REGION( 0x10000, "user5", 0 )
8598   ROM_LOAD( "x002310p.u66",   0x00000, 0x10000, CRC(c006c3f1) SHA1(45c87a2f882147d1d132237cfa12ae47b202264f) ) /* Triple Double Bonus Poker */
8599
8600   ROM_REGION( 0x040000, "gfx1", 0 )
8601   ROM_LOAD( "mro-cg2346.u77",  0x00000, 0x10000, CRC(3d721779) SHA1(01ac540eddeab5ecdba9b543c69fe7f4b53151a4) ) /* Game titles in English */
8602   ROM_LOAD( "mgo-cg2346.u78",  0x10000, 0x10000, CRC(a4a4856b) SHA1(db0e7528a63c80fab02b463dfb366d32061a93bb) ) /* Poker hands in Spanish */
8603   ROM_LOAD( "mbo-cg2346.u79",  0x20000, 0x10000, CRC(15253b57) SHA1(503b5cb514d9552ed7cf09f236aec63c81cfd828) )
8604   ROM_LOAD( "mxo-cg2346.u80",  0x30000, 0x10000, CRC(68ffb37e) SHA1(b6de07452e52a8c6f8657fbefef081aa9d86dbf0) )
8605
8606   ROM_REGION( 0x200, "proms", 0 )
8607   ROM_LOAD( "capx2346.u43", 0x0000, 0x0200, CRC(8df8ad29) SHA1(2d6a598fdc4290abe83a3d95c0ec8da6eb0f0e84) )
8608ROM_END
8609
8610ROM_START( pexmp017 ) /* Superboard : 5-in-1 Wingboard (XMP00017) */
8611/*
8612
8613Known Wingboard compatible program roms:
8614   XMP00013 - Spanish
8615   XMP00014 (not dumped)
8616   XMP00017
8617   XMP00022 - Spanish (not dumped)
8618   XMP00026 - Spanish
8619   XMP00030
8620
8621Wingboard programs are not compatible with:
8622 Lucky Deal Poker, Shockwave Poker, Ace$ Bonus Poker, Dealt Deuces Bonus, Barbaric Deuces, Pay the Ace (No Face)
8623 and many other "specialty" poker games.
8624
8625The CG2298 graphics can support the following XnnnnnnP Data game types:
8626
8627  Bonus Poker, Bonus Poker Deluxe, Double Bonus Poker, Double Double Bonus Poker, Triple Bonus Poker
8628  Deuces Wild Poker, Deluxe Deuces Wild, Loose Deuces, Deuces Bonus, Double Deuces, Royal Deuces Poker
8629  Joker Poker, Double Joker Poker, Deuces Joker Wild Poker, Sevens or Better, Tens or Better, Jacks or Better
8630  Nevada Draw Poker, Nevada Bonus Poker, White Hot Aces, Double Double Aces & Faces, Odds & Ends Poker
8631  Two Pair, Crazy Eights and Full House Bonus
8632
8633  Super Aces shows as just Bonus Poker
8634  Triple Bonus Poker Plus shows as just Triple Bonus
8635
8636*/
8637   ROM_REGION( 0x10000, "maincpu", 0 )
8638   ROM_LOAD( "xmp00017.u67",   0x00000, 0x10000, CRC(129e6eaa) SHA1(1dd2b83a672a618f338b553a6cbd598b6d4ce672) )
8639
8640   ROM_REGION( 0x10000, "user1", 0 )
8641   ROM_LOAD( "x000055p.u66",   0x00000, 0x10000, CRC(e06819df) SHA1(36590c4588b8036908e63714fbb3e77d23e60eae) ) /* Deuces Wild Poker */
8642
8643   ROM_REGION( 0x10000, "user2", 0 )
8644   ROM_LOAD( "x000188p.u66",   0x00000, 0x10000, CRC(3eb7580e) SHA1(86f2280542fb8a55767efd391d0fb04a12ed9408) ) /* Standard Draw Poker */
8645
8646   ROM_REGION( 0x10000, "user3", 0 )
8647   ROM_LOAD( "x000581p.u66",   0x00000, 0x10000, CRC(a4cfecc3) SHA1(b2c805781ba43bda9e208d8c16578dc96b6f58f7) ) /* Four of a Kind Bonus Poker */
8648
8649   ROM_REGION( 0x10000, "user4", 0 )
8650   ROM_LOAD( "x000727p.u66",   0x00000, 0x10000, CRC(4828474c) SHA1(9836b76113a71802df30ca15f7c9a5790e6f1c5b) ) /* Double Bonus Poker */
8651
8652   ROM_REGION( 0x10000, "user5", 0 )
8653   ROM_LOAD( "x002036p.u66",   0x00000, 0x10000, CRC(69207baf) SHA1(fe038b969106ae5cdc8dde1c06497be9c7b5b8bf) ) /* White Hot Aces */
8654
8655   ROM_REGION( 0x040000, "gfx1", 0 )
8656   ROM_LOAD( "mro-cg2298.u77",  0x00000, 0x10000, CRC(8c35dc7f) SHA1(90e9566e816287e6248d7cab318dee3ad6fac871) )
8657   ROM_LOAD( "mgo-cg2298.u78",  0x10000, 0x10000, CRC(3663174a) SHA1(c203a4a59f6bc1625d47f35426ffc5b4d279251a) )
8658   ROM_LOAD( "mbo-cg2298.u79",  0x20000, 0x10000, CRC(9088cdbe) SHA1(dc62951c584463a1e795a774f5752f890d8e3f65) )
8659   ROM_LOAD( "mxo-cg2298.u80",  0x30000, 0x10000, CRC(8d3aafc8) SHA1(931bc82398b94c63ed9f6f1bd95723aa801894cc) )
8660
8661   ROM_REGION( 0x200, "proms", 0 )
8662   ROM_LOAD( "capx2298.u43", 0x0000, 0x0200, CRC(77856036) SHA1(820487c8494965408402ddee6a54511906218e66) )
8663ROM_END
8664
8665ROM_START( pexmp017a ) /* Superboard : 5-in-1 Wingboard (XMP00017) */
8666/*
8667
8668The CG2352 set supersedes CG2298. It's currently not known what has changed between the two sets.
8669
8670*/
8671   ROM_REGION( 0x10000, "maincpu", 0 )
8672   ROM_LOAD( "xmp00017.u67",   0x00000, 0x10000, CRC(129e6eaa) SHA1(1dd2b83a672a618f338b553a6cbd598b6d4ce672) )
8673
8674   ROM_REGION( 0x10000, "user1", 0 )
8675   ROM_LOAD( "x000430p.u66",   0x00000, 0x10000, CRC(905571e3) SHA1(fd506516fed22842df8e9dbb3683dcb4c459719b) ) /* Dueces Joker Wild Poker */
8676
8677   ROM_REGION( 0x10000, "user2", 0 )
8678   ROM_LOAD( "x000451p.u66",   0x00000, 0x10000, CRC(4f11e26c) SHA1(6cea3cbef530ef4ece2a4351cbd9ead5b66bb359) ) /* Bonus Poker Deluxe */
8679
8680   ROM_REGION( 0x10000, "user3", 0 )
8681   ROM_LOAD( "x000508p.u66",   0x00000, 0x10000, CRC(5efde4b4) SHA1(ead7448464aecc03748f04e4d6e9f346d262cd96) ) /* Loose Deuce Deuces Wild Poker */
8682
8683   ROM_REGION( 0x10000, "user4", 0 )
8684   ROM_LOAD( "x000458p.u66",   0x00000, 0x10000, CRC(dcd20558) SHA1(22c99a265431b0ef8199d3cb69fbbc4aff822dc0) ) /* Joker Poker */
8685
8686   ROM_REGION( 0x10000, "user5", 0 )
8687   ROM_LOAD( "x002045p.u66",   0x00000, 0x10000, CRC(75fe81db) SHA1(980bcc06b54a1ef78e3beac1db83b73e17a04818) ) /* Triple Bonus Poker */
8688
8689   ROM_REGION( 0x040000, "gfx1", 0 )
8690   ROM_LOAD( "mro-cg2352.u77",  0x00000, 0x10000, CRC(ef87fccb) SHA1(8ac04626f1bcab68e930e954d92594e981fd22d6) )
8691   ROM_LOAD( "mgo-cg2352.u78",  0x10000, 0x10000, CRC(fb3144a2) SHA1(a4dc3d7175915ceb99e0faeb8928148b2b3996ea) )
8692   ROM_LOAD( "mbo-cg2352.u79",  0x20000, 0x10000, CRC(28f422d6) SHA1(db1fa033e109749acfe7bacb85fe717858a25904) )
8693   ROM_LOAD( "mxo-cg2352.u80",  0x30000, 0x10000, CRC(b13b46c3) SHA1(7400037bbf56f67bf2d58b35589d62d94dea4b9f) )
8694
8695   ROM_REGION( 0x200, "proms", 0 )
8696   ROM_LOAD( "capx2298.u43", 0x0000, 0x0200, CRC(77856036) SHA1(820487c8494965408402ddee6a54511906218e66) )
8697ROM_END
8698
8699ROM_START( pexmp017b ) /* Superboard : 5-in-1 Wingboard (XMP00017) */
8700/*
8701
8702The CG2426 set supersedes both CG2298 & CG2352 and adds graphics support for the following XnnnnnnP Data game types:
8703  Black Jack Bonus
8704  Super Double Bonus
8705  Triple Double Bonus
8706
8707*/
8708   ROM_REGION( 0x10000, "maincpu", 0 )
8709   ROM_LOAD( "xmp00017.u67",   0x00000, 0x10000, CRC(129e6eaa) SHA1(1dd2b83a672a618f338b553a6cbd598b6d4ce672) )
8710
8711   ROM_REGION( 0x10000, "user1", 0 )
8712   ROM_LOAD( "x002272p.u66",   0x00000, 0x10000, CRC(ee4f27b9) SHA1(1ee105430358ea27badd943bb6b18663e4029388) ) /* Black Jack Bonus Poker */
8713
8714   ROM_REGION( 0x10000, "user2", 0 )
8715   ROM_LOAD( "x002029p.u66",   0x00000, 0x10000, CRC(e2f6fb89) SHA1(4b60b580b00b4268d1cb9065ffe0d21f8fa6a931) ) /* Deuces Wild Bonus Poker */
8716
8717   ROM_REGION( 0x10000, "user3", 0 )
8718   ROM_LOAD( "x002040p.u66",   0x00000, 0x10000, CRC(38acb477) SHA1(894f5861ac84323e50e8972602251f2873988e6c) ) /* Nevada Bonus Poker */
8719
8720   ROM_REGION( 0x10000, "user4", 0 )
8721   ROM_LOAD( "x002018p.u66",   0x00000, 0x10000, CRC(a7b79cfa) SHA1(89216fafffc64fda22a016a906483b76174c3f02) ) /* Full House Bonus Poker */
8722
8723   ROM_REGION( 0x10000, "user5", 0 )
8724   ROM_LOAD( "x002307p.u66",   0x00000, 0x10000, CRC(c6d5db70) SHA1(017e1e382fb789e4cd8b410362ad5e82b61f61db) ) /* Triple Double Bonus Poker */
8725
8726   ROM_REGION( 0x040000, "gfx1", 0 )
8727   ROM_LOAD( "mro-cg2426.u77",  0x00000, 0x10000, CRC(e7622901) SHA1(f653aaf02de840aef56d3efd7680572356e94da7) )
8728   ROM_LOAD( "mgo-cg2426.u78",  0x10000, 0x10000, CRC(5c8388a0) SHA1(c883bf7969850d07f37fa0fd58f82cda4cf15654) )
8729   ROM_LOAD( "mbo-cg2426.u79",  0x20000, 0x10000, CRC(dc6e39aa) SHA1(7a7188757f5be25521a023d1315cfd7c395b6c25) )
8730   ROM_LOAD( "mxo-cg2426.u80",  0x30000, 0x10000, CRC(a32f42a2) SHA1(87ddc4dda7c198ed62a2a065507efe4d3a016236) )
8731
8732   ROM_REGION( 0x200, "proms", 0 )
8733   ROM_LOAD( "capx2298.u43", 0x0000, 0x0200, CRC(77856036) SHA1(820487c8494965408402ddee6a54511906218e66) )
8734ROM_END
8735
8736ROM_START( pexmp026 ) /* Superboard : 5-in-1 Wingboard (XMP00026) Program in Spanish, Requires Spanish Wingboard CG rom set */
8737   ROM_REGION( 0x10000, "maincpu", 0 )
8738   ROM_LOAD( "xmp00026.u67",   0x00000, 0x10000, CRC(0b82387f) SHA1(8348c586cf692c5cbecfe7b52a4271e5aec55027) )
8739
8740   ROM_REGION( 0x10000, "user1", 0 )
8741   ROM_LOAD( "x000242p.u66",   0x00000, 0x10000, CRC(e0292d63) SHA1(8d8ec5dc1abaf8e8a8a7451d3a814023d8195fb5) ) /* Deuces Wild Poker */
8742
8743   ROM_REGION( 0x10000, "user2", 0 )
8744   ROM_LOAD( "x000150p.u66",   0x00000, 0x10000, CRC(d10759fa) SHA1(eae633d03ac9db86520a70825ac0a59ee9ebc819) ) /* Standard Draw Poker */
8745
8746   ROM_REGION( 0x10000, "user3", 0 )
8747   ROM_LOAD( "x002044p.u66",   0x00000, 0x10000, CRC(158af97f) SHA1(452247d981f1202da8c44a31f0d3343184d3db41) ) /* Triple Bonus Poker */
8748
8749   ROM_REGION( 0x10000, "user4", 0 )
8750   ROM_LOAD( "x002038p.u66",   0x00000, 0x10000, CRC(58d01ba5) SHA1(6d4cde9c9e55967db2b661c7123cce9958a00639) ) /* Nevada Bonus Poker */
8751
8752   ROM_REGION( 0x10000, "user5", 0 )
8753   ROM_LOAD( "x002306p.u66",   0x00000, 0x10000, CRC(ef36ea67) SHA1(8914ad20526fd63e14d9fa1901e9c779a11eb29d) ) /* Triple Double Bonus Poker */
8754
8755   ROM_REGION( 0x040000, "gfx1", 0 )
8756   ROM_LOAD( "mro-cg2346.u77",  0x00000, 0x10000, CRC(3d721779) SHA1(01ac540eddeab5ecdba9b543c69fe7f4b53151a4) ) /* Game titles in English */
8757   ROM_LOAD( "mgo-cg2346.u78",  0x10000, 0x10000, CRC(a4a4856b) SHA1(db0e7528a63c80fab02b463dfb366d32061a93bb) ) /* Poker hands in Spanish */
8758   ROM_LOAD( "mbo-cg2346.u79",  0x20000, 0x10000, CRC(15253b57) SHA1(503b5cb514d9552ed7cf09f236aec63c81cfd828) )
8759   ROM_LOAD( "mxo-cg2346.u80",  0x30000, 0x10000, CRC(68ffb37e) SHA1(b6de07452e52a8c6f8657fbefef081aa9d86dbf0) )
8760
8761   ROM_REGION( 0x200, "proms", 0 )
8762   ROM_LOAD( "capx2346.u43", 0x0000, 0x0200, CRC(8df8ad29) SHA1(2d6a598fdc4290abe83a3d95c0ec8da6eb0f0e84) )
8763ROM_END
8764
8765ROM_START( pexmp030 ) /* Superboard : 5-in-1 Wingboard (XMP00030) */
8766   ROM_REGION( 0x10000, "maincpu", 0 )
8767   ROM_LOAD( "xmp00030.u67",   0x00000, 0x10000, CRC(da3fcb6f) SHA1(114e581e5ebb5c40c3f3da2784122d3281f269ee) ) /*  11/12/00   @ IGT  L01-0197  */
8768
8769   ROM_REGION( 0x10000, "user1", 0 )
8770   ROM_LOAD( "x002066p.u66",   0x00000, 0x10000, CRC(01236011) SHA1(3edfee014705b3540386c5e42026ab93628b2597) ) /* Double Double Bonus Poker */
8771
8772   ROM_REGION( 0x10000, "user2", 0 )
8773   ROM_LOAD( "x000002p.u66",   0x00000, 0x10000, CRC(17cee391) SHA1(173e5775c3e887e16b4f0330d21873331dfb7c33) ) /* Standard Draw Poker */
8774
8775   ROM_REGION( 0x10000, "user3", 0 )
8776   ROM_LOAD( "x000536p.u66",   0x00000, 0x10000, CRC(0b18dc1b) SHA1(07350fe258441f8565bfd875342823149b7757f1) ) /* Joker Poker */
8777
8778   ROM_REGION( 0x10000, "user4", 0 )
8779   ROM_LOAD( "x002377p.u66",   0x00000, 0x10000, CRC(541320d2) SHA1(670b17432e994fe1937091e5e96e1d58b9afbf29) ) /* Super Double Bonus Poker */
8780
8781   ROM_REGION( 0x10000, "user5", 0 )
8782   ROM_LOAD( "x002440p.u66",   0x00000, 0x10000, CRC(2ecb28cc) SHA1(a7b902bdfbf8f5ceedc778b8408c39ee279a1a1d) ) /* Deuces Wild Poker */
8783
8784   ROM_REGION( 0x040000, "gfx1", 0 )
8785   ROM_LOAD( "mro-cg2426.u77",  0x00000, 0x10000, CRC(e7622901) SHA1(f653aaf02de840aef56d3efd7680572356e94da7) )
8786   ROM_LOAD( "mgo-cg2426.u78",  0x10000, 0x10000, CRC(5c8388a0) SHA1(c883bf7969850d07f37fa0fd58f82cda4cf15654) )
8787   ROM_LOAD( "mbo-cg2426.u79",  0x20000, 0x10000, CRC(dc6e39aa) SHA1(7a7188757f5be25521a023d1315cfd7c395b6c25) )
8788   ROM_LOAD( "mxo-cg2426.u80",  0x30000, 0x10000, CRC(a32f42a2) SHA1(87ddc4dda7c198ed62a2a065507efe4d3a016236) )
8789
8790   ROM_REGION( 0x200, "proms", 0 )
8791   ROM_LOAD( "capx2298.u43", 0x0000, 0x0200, CRC(77856036) SHA1(820487c8494965408402ddee6a54511906218e66) )
8792ROM_END
8793
8794
8795/*************************
8796*      Game Drivers      *
8797*************************/
8798
8799/*    YEAR  NAME      PARENT  MACHINE   INPUT         INIT      ROT    COMPANY                                  FULLNAME                                                  FLAGS   LAYOUT */
8800
8801/* Set chips */
8802GAMEL(1987, peset001, 0,      peplus,  peplus_schip, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (Set001) Set Chip",                      0,   layout_pe_schip )
8803GAMEL(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 )
8804
8805/* Normal (non-plus) board : Poker */
8806GAMEL(1987, pepk1024,  0,        peplus, nonplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge (PK1024) Aces and Faces Bonus Poker",         0, layout_pe_poker )
8807
8808/* Normal board : Poker */
8809GAMEL(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 )
8810GAMEL(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 )
8811GAMEL(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 )
8812GAMEL(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 )
8813GAMEL(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 )
8814GAMEL(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 )
8815GAMEL(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 )
8816GAMEL(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 )
8817GAMEL(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 )
8818GAMEL(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 )
8819GAMEL(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 )
8820GAMEL(1987, pepp0043a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0043) 10's or Better (International)", 0, layout_pe_poker )
8821GAMEL(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 )
8822GAMEL(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 )
8823GAMEL(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 )
8824GAMEL(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 )
8825GAMEL(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 )
8826GAMEL(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 )
8827GAMEL(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 )
8828GAMEL(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 )
8829GAMEL(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 )
8830GAMEL(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 )
8831GAMEL(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 )
8832GAMEL(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 )
8833GAMEL(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 )
8834GAMEL(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 )
8835GAMEL(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 )
8836GAMEL(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 )
8837GAMEL(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 )
8838GAMEL(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 )
8839GAMEL(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 )
8840GAMEL(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 )
8841GAMEL(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 )
8842GAMEL(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 )
8843GAMEL(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 )
8844GAMEL(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 )
8845GAMEL(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 )
8846GAMEL(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 )
8847GAMEL(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 )
8848GAMEL(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 )
8849GAMEL(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 )
8850GAMEL(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 )
8851GAMEL(1987, pepp0158c, pepp0158, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0158) 4 of a Kind Bonus Poker (set 4)",  0, layout_pe_poker )
8852GAMEL(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 )
8853GAMEL(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 )
8854GAMEL(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 )
8855GAMEL(1987, pepp0178,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0178) 4 of a Kind Bonus Poker (Operator selectable special 4 of a Kind)", 0, layout_pe_poker )
8856GAMEL(1987, pepp0188,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0188) Standard Draw Poker (set 1)",   0, layout_pe_poker )
8857GAMEL(1987, pepp0188a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0188) Standard Draw Poker (set 2)",   0, layout_pe_poker )
8858GAMEL(1987, pepp0190,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0190) Deuces Wild Poker",             0, layout_pe_poker )
8859GAMEL(1987, pepp0190a, pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0190) Deuces Wild Poker (International)", 0, layout_pe_poker )
8860GAMEL(1987, pepp0197,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0197) Standard Draw Poker (set 1)",   0, layout_pe_poker )
8861GAMEL(1987, pepp0197a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0197) Standard Draw Poker (set 2)",   0, layout_pe_poker )
8862GAMEL(1987, pepp0197b, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0197) Standard Draw Poker (set 3)",   0, layout_pe_poker )
8863GAMEL(1987, pepp0203,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0203) 4 of a Kind Bonus Poker (set 1)", 0, layout_pe_poker )
8864GAMEL(1987, pepp0203a, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0203) 4 of a Kind Bonus Poker (set 2)", 0, layout_pe_poker )
8865GAMEL(1987, pepp0203b, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0203) 4 of a Kind Bonus Poker (set 3)", 0, layout_pe_poker )
8866GAMEL(1987, pepp0203c, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0203) 4 of a Kind Bonus Poker (International)", 0, layout_pe_poker )
8867GAMEL(1987, pepp0219,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0219) Standard Draw Poker",           0, layout_pe_poker )
8868GAMEL(1987, pepp0221,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0221) Standard Draw Poker (set 1)",   0, layout_pe_poker )
8869GAMEL(1987, pepp0221a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0221) Standard Draw Poker (set 2)",   0, layout_pe_poker )
8870GAMEL(1987, pepp0224,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0224) Deuces Wild Poker (set 1)",     0, layout_pe_poker )
8871GAMEL(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 )
8872GAMEL(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 )
8873GAMEL(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 )
8874GAMEL(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 )
8875GAMEL(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 )
8876GAMEL(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 )
8877GAMEL(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 )
8878GAMEL(1987, pepp0265b, pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0265) 4 of a Kind Bonus Poker (International)", 0, layout_pe_poker )
8879GAMEL(1987, pepp0274,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0274) Standard Draw Poker",           0, layout_pe_poker )
8880GAMEL(1987, pepp0288,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0288) Standard Draw Poker (Spanish)", 0, layout_pe_poker )
8881GAMEL(1987, pepp0290,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0290) Deuces Wild Poker",             0, layout_pe_poker )
8882GAMEL(1987, pepp0291,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0291) Deuces Wild Poker",             0, layout_pe_poker )
8883GAMEL(1987, pepp0409,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0409) 4 of a Kind Bonus Poker",       0, layout_pe_poker )
8884GAMEL(1987, pepp0410,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0410) 4 of a Kind Bonus Poker",       0, layout_pe_poker )
8885GAMEL(1987, pepp0417,  pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0417) Deuces Wild Poker (set 1)",     0, layout_pe_poker )
8886GAMEL(1987, pepp0417a, pepp0055, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0417) Deuces Wild Poker (set 2)",     0, layout_pe_poker )
8887GAMEL(1987, pepp0419,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0419) Standard Draw Poker",           0, layout_pe_poker )
8888GAMEL(1987, pepp0420,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0420) Standard Draw Poker",           0, layout_pe_poker )
8889GAMEL(1987, pepp0423,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0423) Standard Draw Poker",           0, layout_pe_poker )
8890GAMEL(1987, pepp0426,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0426) Joker Poker",                   0, layout_pe_poker )
8891GAMEL(1987, pepp0428,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0428) Joker Poker",                   0, layout_pe_poker )
8892GAMEL(1987, pepp0429,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0429) Joker Poker (Aces or Better)",  0, layout_pe_poker )
8893GAMEL(1987, pepp0431,  pepp0127, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0431) Deuces Joker Wild Poker (International)", 0, layout_pe_poker )
8894GAMEL(1987, pepp0434,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0434) Bonus Poker Deluxe",            0, layout_pe_poker )
8895GAMEL(1987, pepp0447,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0447) Standard Draw Poker (set 1)",   0, layout_pe_poker )
8896GAMEL(1987, pepp0447a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0447) Standard Draw Poker (set 2)",   0, layout_pe_poker )
8897GAMEL(1987, pepp0449,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0449) Standard Draw Poker",           0, layout_pe_poker )
8898GAMEL(1987, pepp0449a, pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0449) Standard Draw Poker (International English/Spanish)", 0, layout_pe_poker )
8899GAMEL(1987, pepp0452,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0452) Double Deuces Wild Poker",      0, layout_pe_poker )
8900GAMEL(1987, pepp0454,  pepp0434, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0454) Bonus Poker Deluxe",            0, layout_pe_poker )
8901GAMEL(1987, pepp0455,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0455) Joker Poker",                   0, layout_pe_poker )
8902GAMEL(1987, pepp0458,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0458) Joker Poker (Aces or Better)",  0, layout_pe_poker )
8903GAMEL(1985, pepp0488,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0488) Standard Draw Poker (Arizona Charlie's)", 0, layout_pe_poker )
8904GAMEL(1987, pepp0508,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0508) Loose Deuce Deuces Wild! Poker", 0, layout_pe_poker )
8905GAMEL(1987, pepp0509,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0509) Standard Draw Poker",           0, layout_pe_poker )
8906GAMEL(1987, pepp0510,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0510) Standard Draw Poker",           0, layout_pe_poker )
8907GAMEL(1987, pepp0514,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0514) Double Bonus Poker (set 1)",    0, layout_pe_poker )
8908GAMEL(1987, pepp0514a, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0514) Double Bonus Poker (set 2)",    0, layout_pe_poker )
8909GAMEL(1987, pepp0514b, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0514) Double Bonus Poker (set 3)",    0, layout_pe_poker )
8910GAMEL(1987, pepp0515,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0515) Double Bonus Poker (set 1)",    0, layout_pe_poker )
8911GAMEL(1987, pepp0515a, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0515) Double Bonus Poker (set 2)",    0, layout_pe_poker )
8912GAMEL(1987, pepp0516,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0516) Double Bonus Poker (set 1)",    0, layout_pe_poker )
8913GAMEL(1987, pepp0516a, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0516) Double Bonus Poker (set 2)",    0, layout_pe_poker )
8914GAMEL(1987, pepp0516b, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0516) Double Bonus Poker (International)", 0, layout_pe_poker )
8915GAMEL(1987, pepp0531,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0531) Joker Poker",                   0, layout_pe_poker )
8916GAMEL(1987, pepp0536,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0536) Joker Poker",                   0, layout_pe_poker )
8917GAMEL(1987, pepp0538,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0538) Double Bonus Poker",            0, layout_pe_poker )
8918GAMEL(1987, pepp0540,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0540) Double Bonus Poker",            0, layout_pe_poker )
8919GAMEL(1987, pepp0542,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0542) One Eyed Jacks Wild Poker",     0, layout_pe_poker )
8920GAMEL(1987, pepp0568,  pepp0053, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0568) Joker Poker",                   0, layout_pe_poker )
8921GAMEL(1987, pepp0585,  pepp0002, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0585) Standard Draw Poker",           0, layout_pe_poker )
8922GAMEL(1987, pepp0713,  pepp0434, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0713) Bonus Poker Deluxe",            0, layout_pe_poker )
8923GAMEL(1987, pepp0725,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0725) Double Bonus Poker (set 1)",    0, layout_pe_poker )
8924GAMEL(1987, pepp0725a, pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0725) Double Bonus Poker (set 2)",    0, layout_pe_poker )
8925GAMEL(1987, pepp0726,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0726) Double Bonus Poker",            0, layout_pe_poker )
8926GAMEL(1987, pepp0728,  pepp0514, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0728) Double Bonus Poker",            0, layout_pe_poker )
8927GAMEL(1987, pepp0760,  pepp0250, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0760) Double Down Stud Poker",        0, layout_pe_poker )
8928GAMEL(1987, pepp0763,  pepp0158, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0763) 4 of a Kind Bonus Poker",       0, layout_pe_poker )
8929GAMEL(1987, pepp0775,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0775) Royal Deuces Poker??",          GAME_IMPERFECT_GRAPHICS, layout_pe_poker ) /* Wrong CG graphics & CAP */
8930GAMEL(1987, pepp0816,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0816) Treasure Chest Poker",          GAME_IMPERFECT_GRAPHICS, layout_pe_poker ) /* Wrong CG graphics & CAP - Missing "Bonus" at MAX Bet for 4 of a Kind & Treasure Chest graphics */
8931
8932/* Normal board : International Poker */
8933GAMEL(1987, peip0028,  0,        peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0028) Joker Poker - French",          0, layout_pe_poker )
8934GAMEL(1987, peip0029,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0029) Joker Poker - French",          0, layout_pe_poker )
8935GAMEL(1987, peip0031,  0,        peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0031) Standard Draw Poker - French",  0, layout_pe_poker )
8936GAMEL(1987, peip0041,  0,        peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0041) Double Deuces Wild Poker - French",   0, layout_pe_poker )
8937GAMEL(1987, peip0051,  peip0028, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0051) Joker Poker - French",          0, layout_pe_poker )
8938GAMEL(1987, peip0058,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0058) Standard Draw Poker - French",  0, layout_pe_poker )
8939GAMEL(1987, peip0062,  peip0028, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0062) Joker Poker - French",          0, layout_pe_poker )
8940GAMEL(1987, peip0074,  peip0028, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0074) Joker Poker - French",          0, layout_pe_poker )
8941GAMEL(1987, peip0079,  peip0031, peplus,  peplus_poker, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0079) Standard Draw Poker - French",  0, layout_pe_poker )
8942GAMEL(1987, peip0101,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0101) Joker Poker - French",          0, layout_pe_poker )
8943GAMEL(1987, peip0103,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0103) Joker Poker - French",          0, layout_pe_poker )
8944GAMEL(1987, peip0105,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0105) Joker Poker - French",          0, layout_pe_poker )
8945GAMEL(1987, peip0108,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0108) Standard Draw Poker - French",  0, layout_pe_poker )
8946GAMEL(1987, peip0111,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0111) Joker Poker - French",          0, layout_pe_poker )
8947GAMEL(1987, peip0112,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0112) Standard Draw Poker - French",  0, layout_pe_poker )
8948GAMEL(1987, peip0114,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0114) Standard Draw Poker - French",  0, layout_pe_poker )
8949GAMEL(1987, peip0115,  peip0028, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0115) Joker Poker - French",          0, layout_pe_poker )
8950GAMEL(1987, peip0116,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0116) Standard Draw Poker - French",  0, layout_pe_poker )
8951GAMEL(1987, peip0118,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0118) Standard Draw Poker - French",  0, layout_pe_poker )
8952GAMEL(1987, peip0120,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0120) Standard Draw Poker - French",  0, layout_pe_poker )
8953
8954/* Normal board : Blackjack */
8955GAMEL(1994, pebe0014, 0,      peplus,  peplus_bjack, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (BE0014) Blackjack",                        0,   layout_pe_bjack )
8956
8957/* Normal board : Keno */
8958GAMEL(1994, peke1012,  0,        peplus, peplus_keno, peplus_state, peplus, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (KE1012) Keno",                              0, layout_pe_keno )
8959GAMEL(1994, peke1013,  peke1012, peplus, peplus_keno, peplus_state, peplus, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (KE1013) Keno",                              0, layout_pe_keno )
8960
8961/* Normal board : Slots machine */
8962GAMEL(1996, peps0014, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0014) Super Joker Slots",             0, layout_pe_slots )
8963GAMEL(1996, peps0021, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0021) Red White & Blue Slots",        0, layout_pe_slots )
8964GAMEL(1996, peps0022, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0022) Red White & Blue Slots",        0, layout_pe_slots )
8965GAMEL(1996, peps0042, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0042) Double Diamond Slots",          0, layout_pe_slots )
8966GAMEL(1996, peps0043, peps0042, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0043) Double Diamond Slots",          0, layout_pe_slots )
8967GAMEL(1996, peps0045, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0045) Red White & Blue Slots",        0, layout_pe_slots )
8968GAMEL(1996, peps0047, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0047) Wild Cherry Slots",             GAME_NOT_WORKING, layout_pe_slots ) /* Needs MxO-CG1004.Uxx graphics roms redumped */
8969GAMEL(1996, peps0092, peps0047, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0092) Wild Cherry Slots",             GAME_NOT_WORKING, layout_pe_slots ) /* Needs MxO-CG1004.Uxx graphics roms redumped */
8970GAMEL(1996, peps0206, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0206) Red White & Blue Slots",        0, layout_pe_slots )
8971GAMEL(1996, peps0207, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0207) Red White & Blue Slots",        0, layout_pe_slots )
8972GAMEL(1996, peps0296, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0296) Haywire Slots",                 0, layout_pe_slots )
8973GAMEL(1996, peps0298, peps0042, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0298) Double Diamond Slots",          0, layout_pe_slots )
8974GAMEL(1996, peps0308, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0308) Double Jackpot Slots",          0, layout_pe_slots )
8975GAMEL(1996, peps0364, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0364) Red White & Blue Slots",        0, layout_pe_slots )
8976GAMEL(1996, peps0426, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0426) Sizzling Sevens Slots",         0, layout_pe_slots )
8977GAMEL(1996, peps0581, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0581) Red White & Blue Slots",        0, layout_pe_slots )
8978GAMEL(1996, peps0615, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0615) Chaos Slots",                   0, layout_pe_slots )
8979GAMEL(1996, peps0631, peps0021, peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0631) Red White & Blue Slots",        0, layout_pe_slots )
8980GAMEL(1996, peps0716, 0,        peplus, peplus_slots, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PS0716) River Gambler Slots",           0, layout_pe_slots )
8981
8982/* Superboard : Poker */
8983GAMEL(1995, pex0002p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000002P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
8984GAMEL(1995, pex0002pa, pex0002p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000002P+XP000109) Standard Draw Poker", 0, layout_pe_poker )
8985GAMEL(1995, pex0040p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000040P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
8986GAMEL(1995, pex0045p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000045P+XP000038) 10's or Better",     0, layout_pe_poker )
8987GAMEL(1995, pex0046p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000046P+XP000038) 10's or Better",     0, layout_pe_poker )
8988GAMEL(1995, pex0053p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000053P+XP000038) Joker Poker (Aces or Better)", 0, layout_pe_poker )
8989GAMEL(1995, pex0054p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000054P+XP000038) Deuces Wild Poker",  0, layout_pe_poker )
8990GAMEL(1995, pex0055p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000019) Deuces Wild Poker",  0, layout_pe_poker )
8991GAMEL(1995, pex0055pa, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000022) Deuces Wild Poker (The Orleans)", 0, layout_pe_poker )
8992GAMEL(1995, pex0055pb, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000023) Deuces Wild Poker (The Fun Ships)", 0, layout_pe_poker )
8993GAMEL(1995, pex0055pc, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000028) Deuces Wild Poker",  0, layout_pe_poker )
8994GAMEL(1995, pex0055pd, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000035) Deuces Wild Poker",  0, layout_pe_poker )
8995GAMEL(1995, pex0055pe, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000038) Deuces Wild Poker",  0, layout_pe_poker )
8996GAMEL(1995, pex0055pf, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000040) Deuces Wild Poker",  0, layout_pe_poker )
8997GAMEL(1995, pex0055pg, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
8998GAMEL(1995, pex0055ph, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000055) Deuces Wild Poker",  0, layout_pe_poker )
8999GAMEL(1995, pex0055pi, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000063) Deuces Wild Poker",  0, layout_pe_poker )
9000GAMEL(1995, pex0055pj, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000075) Deuces Wild Poker",  0, layout_pe_poker )
9001GAMEL(1995, pex0055pk, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000079) Deuces Wild Poker",  0, layout_pe_poker )
9002GAMEL(1995, pex0055pl, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000094) Deuces Wild Poker",  0, layout_pe_poker )
9003GAMEL(1995, pex0055pm, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000095) Deuces Wild Poker",  0, layout_pe_poker )
9004GAMEL(1995, pex0055pn, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000098) Deuces Wild Poker",  0, layout_pe_poker )
9005GAMEL(1995, pex0055po, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000102) Deuces Wild Poker",  0, layout_pe_poker )
9006GAMEL(1995, pex0055pp, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000104) Deuces Wild Poker",  0, layout_pe_poker )
9007GAMEL(1995, pex0055pq, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000112) Deuces Wild Poker",  0, layout_pe_poker )
9008GAMEL(1995, pex0055pr, pex0055p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000055P+XP000126) Deuces Wild Poker",  0, layout_pe_poker )
9009GAMEL(1995, pex0060p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000060P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9010GAMEL(1995, pex0124p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000124P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9011GAMEL(1995, pex0150p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000150P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9012GAMEL(1995, pex0158p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000158P+XP000038) 4 of a Kind Bonus Poker", 0, layout_pe_poker )
9013GAMEL(1995, pex0171p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000171P+XP000038) Joker Poker",        0, layout_pe_poker )
9014GAMEL(1995, pex0188p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000188P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9015GAMEL(1995, pex0190p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000190P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9016GAMEL(1995, pex0197p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000197P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9017GAMEL(1995, pex0203p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000203P+XP000038) 4 of a Kind Bonus Poker", 0, layout_pe_poker )
9018GAMEL(1995, pex0224p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000224P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9019GAMEL(1995, pex0225p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000225P+XP000079) Dueces Joker Wild Poker", 0,layout_pe_poker )
9020GAMEL(1995, pex0242p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000242P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9021GAMEL(1995, pex0265p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000265P+XP000038) 4 of a Kind Bonus Poker", 0, layout_pe_poker )
9022GAMEL(1995, pex0291p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000291P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9023GAMEL(1995, pex0417p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000417P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9024GAMEL(1995, pex0430p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000430P+XP000079) Dueces Joker Wild Poker", 0,layout_pe_poker )
9025GAMEL(1995, pex0434p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000434P+XP000038) Bonus Poker Deluxe", 0, layout_pe_poker )
9026GAMEL(1995, pex0447p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000447P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9027GAMEL(1995, pex0449p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000449P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9028GAMEL(1995, pex0451p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000451P+XP000038) Bonus Poker Deluxe", 0, layout_pe_poker )
9029GAMEL(1995, pex0452p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000452P+XP000038) Double Deuces Wild Poker", 0, layout_pe_poker )
9030GAMEL(1995, pex0454p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000454P+XP000038) Bonus Poker Deluxe", 0, layout_pe_poker )
9031GAMEL(1995, pex0458p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000458P+XP000038) Joker Poker (Aces or Better)", 0, layout_pe_poker )
9032GAMEL(1995, pex0459p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000459P+XP000038) Joker Poker",        0, layout_pe_poker )
9033GAMEL(1995, pex0459pa, pex0459p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000459P+XP000155) Joker Poker",        0, layout_pe_poker )
9034GAMEL(1995, pex0508p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000508P+XP000038) Loose Deuce Deuces Wild! Poker", 0, layout_pe_poker )
9035GAMEL(1995, pex0514p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000514P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9036GAMEL(1995, pex0515p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000515P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9037GAMEL(1995, pex0516p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000516P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9038GAMEL(1995, pex0536p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000536P+XP000038) Joker Poker",        0, layout_pe_poker )
9039GAMEL(1995, pex0537p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000537P+XP000038) Standard Draw Poker", 0, layout_pe_poker )
9040GAMEL(1995, pex0550p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000550P+XP000055) Joker Poker (Two Pair or Better)", 0, layout_pe_poker )
9041GAMEL(1995, pex0568p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000568P+XP000038) Joker Poker",        0, layout_pe_poker )
9042GAMEL(1995, pex0581p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000581P+XP000038) 4 of a Kind Bonus Poker", 0, layout_pe_poker )
9043GAMEL(1995, pex0588p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000588P+XP000038) Joker Poker",        0, layout_pe_poker )
9044GAMEL(1995, pex0725p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000725P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9045GAMEL(1995, pex0726p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000726P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9046GAMEL(1995, pex0727p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000727P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9047GAMEL(1995, pex0763p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000763P+XP000038) 4 of a Kind Bonus Poker", 0,layout_pe_poker )
9048GAMEL(1995, pex2018p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002018P+XP000038) Full House Bonus Poker", 0, layout_pe_poker )
9049GAMEL(1995, pex2025p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002025P+XP000019) Deuces Wild Bonus Poker", 0, layout_pe_poker )
9050GAMEL(1995, pex2026p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002026P+XP000019) Deuces Wild Bonus Poker", 0, layout_pe_poker )
9051GAMEL(1995, pex2027p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002027P+XP000019) Deuces Wild Bonus Poker", 0, layout_pe_poker )
9052GAMEL(1995, pex2029p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002029P+XP000019) Deuces Wild Bonus Poker", 0, layout_pe_poker )
9053GAMEL(1995, pex2031p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002031P+XP000112) Lucky Deal Poker",   0, layout_pe_poker )
9054GAMEL(1995, pex2035p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002035P+XP000112) White Hot Aces Poker", 0, layout_pe_poker )
9055GAMEL(1995, pex2036p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002036P+XP000112) White Hot Aces Poker", 0, layout_pe_poker )
9056GAMEL(1995, pex2038p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002038P+XP000038) Nevada Bonus Poker", 0, layout_pe_poker )
9057GAMEL(1995, pex2040p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002040P+XP000038) Nevada Bonus Poker", 0, layout_pe_poker )
9058GAMEL(1995, pex2042p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002042P+XP000038) Triple Bonus Poker", 0, layout_pe_poker )
9059GAMEL(1995, pex2043p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002043P+XP000038) Triple Bonus Poker", 0, layout_pe_poker )
9060GAMEL(1995, pex2044p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002044P+XP000038) Triple Bonus Poker", 0, layout_pe_poker )
9061GAMEL(1995, pex2045p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002045P+XP000038) Triple Bonus Poker", 0, layout_pe_poker )
9062GAMEL(1995, pex2066p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002066P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker )
9063GAMEL(1995, pex2067p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002067P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker )
9064GAMEL(1995, pex2068p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002068P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker )
9065GAMEL(1995, pex2069p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002069P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker )
9066GAMEL(1995, pex2070p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002070P+XP000038) Double Double Bonus Poker", 0, layout_pe_poker )
9067GAMEL(1995, pex2121p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002121P+XP000038) Standard Draw Poker", 0,layout_pe_poker )
9068GAMEL(1995, pex2121pa, pex2121p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002121P+XP000037) Standard Draw Poker", 0,layout_pe_poker )
9069GAMEL(1995, pex2150p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002150P+XP000038) 4 of a Kind Bonus Poker", 0,layout_pe_poker )
9070GAMEL(1995, pex2172p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002172P+XP000112) Ace$ Bonus Poker",   0, layout_pe_poker )
9071GAMEL(1995, pex2173p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002173P+XP000038) Ace$ Bonus Poker",   0, layout_pe_poker )
9072GAMEL(1995, pex2180p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002180P+XP000038) Double Bonus Poker", 0, layout_pe_poker )
9073GAMEL(1995, pex2241p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002241P+XP000079) 4 of a Kind Bonus Poker", 0,layout_pe_poker )
9074GAMEL(1995, pex2244p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002244P+XP000079) Double Bonus Poker", 0, layout_pe_poker )
9075GAMEL(1995, pex2245p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002245P+XP000055) Standard Draw Poker", 0,layout_pe_poker )
9076GAMEL(1995, pex2245pa, pex2245p,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002245P+XP000079) Standard Draw Poker", 0,layout_pe_poker )
9077GAMEL(1995, pex2250p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002250P+XP000050) Shockwave Poker",    0, layout_pe_poker )
9078GAMEL(1995, pex2251p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002251P+XP000050) Shockwave Poker",    0, layout_pe_poker )
9079GAMEL(1995, pex2272p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002272P+XP000055) Black Jack Bonus Poker", 0, layout_pe_poker )
9080GAMEL(1995, pex2275p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002275P+XP000055) Black Jack Bonus Poker", 0, layout_pe_poker )
9081GAMEL(1995, pex2276p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002276P+XP000055) Black Jack Bonus Poker", 0, layout_pe_poker )
9082GAMEL(1995, pex2283p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002283P+XP000057) Dealt Deuces Wild Bonus Poker", 0, layout_pe_poker ) /* Undumped color CAP but should have correct colors anyways */
9083GAMEL(1995, pex2284p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002284P+XP000057) Barbaric Decues Wild Bonus Poker", 0, layout_pe_poker ) /* Undumped color CAP but should have correct colors anyways */
9084GAMEL(1995, pex2302p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002302P+XP000038) Bonus Poker Deluxe", 0, layout_pe_poker )
9085GAMEL(1995, pex2303p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002303P+XP000112) White Hot Aces Poker", 0, layout_pe_poker )
9086GAMEL(1995, pex2306p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002306P+XP000112) Triple Double Bonus Poker", 0, layout_pe_poker )
9087GAMEL(1995, pex2307p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002307P+XP000112) Triple Double Bonus Poker", 0, layout_pe_poker )
9088GAMEL(1995, pex2308p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002308P+XP000112) Triple Double Bonus Poker", 0, layout_pe_poker )
9089GAMEL(1995, pex2310p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002310P+XP000112) Triple Double Bonus Poker", 0, layout_pe_poker )
9090GAMEL(1995, pex2314p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002314P+XP000112) Triple Bonus Poker Plus", 0, layout_pe_poker )
9091GAMEL(1995, pex2374p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002374P+XP000112) Super Aces Poker (Horseshoe)", 0, layout_pe_poker )
9092GAMEL(1995, pex2377p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002377P+XP000112) Super Double Bonus Poker", 0, layout_pe_poker )
9093GAMEL(1995, pex2419p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002419P+XP000064) Deuces Wild Bonus Poker - French", 0, layout_pe_poker )
9094GAMEL(1995, pex2420p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002420P+XP000064) Deuces Wild Bonus Poker - French", 0, layout_pe_poker )
9095GAMEL(1995, pex2421p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002421P+XP000064) Deuces Wild Bonus Poker - French", 0, layout_pe_poker )
9096GAMEL(1995, pex2440p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002440P+XP000053) Deuces Wild Poker",  0, layout_pe_poker )
9097GAMEL(1995, pex2461p,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X002461P+XP000055) Joker Poker (Two Pair or Better)", 0, layout_pe_poker )
9098
9099/* Superboard : Poker (Key On Credit) */
9100GAMEL(1995, pekoc766,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0766 A5W-A6F) Standard Draw Poker",  0, layout_pe_poker )
9101GAMEL(1995, pekoc801,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0801 A5W-A6F) 10's or Better",       0, layout_pe_poker )
9102GAMEL(1995, pekoc802,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0802 A5W-A6F) Standard Draw Poker",  0, layout_pe_poker )
9103GAMEL(1995, pekoc803,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0803 A5W-A6F) Joker Poker",          0, layout_pe_poker )
9104GAMEL(1995, pekoc803a, pekoc803,  peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0803 A50-A6N) Joker Poker",          0, layout_pe_poker )
9105GAMEL(1995, pekoc804,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0804 A5W-A6F) Bonus Poker Deluxe",   0, layout_pe_poker )
9106GAMEL(1995, pekoc806,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0806 A5W-A6F) Standard Draw Poker",  0, layout_pe_poker )
9107GAMEL(1995, pekoc818,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0818 A5W-A6F) Joker Poker (Aces or Better)", 0, layout_pe_poker )
9108GAMEL(1995, pekoc819,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0819 A5W-A6F) Bonus Poker Deluxe",   0, layout_pe_poker )
9109GAMEL(1995, pekoc825,  0,         peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (PP0825 A59-A7C) White Hot Aces",       0, layout_pe_poker )
9110
9111/* Superboard : Multi-Poker */
9112GAMEL(1995, pexm001p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00001P+XMP00003) Multi-Poker",        0, layout_pe_poker )
9113GAMEL(1995, pexm002p,  pexm001p, peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00002P+XMP00006) Multi-Poker",        0, layout_pe_poker )
9114GAMEL(1995, pexm003p,  pexm001p, peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00003P+XMP00024) Multi-Poker",        0, layout_pe_poker )
9115GAMEL(1995, pexm004p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00004P+XMP00002) Multi-Poker",        0, layout_pe_poker )
9116GAMEL(1995, pexm005p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00005P+XMP00004) Multi-Poker",        0, layout_pe_poker )
9117GAMEL(1995, pexm006p,  pexm001p, peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00006P+XMP00006) Multi-Poker",        0, layout_pe_poker )
9118GAMEL(1995, pexm007p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00007P+XMP00006) Multi-Poker",        0, layout_pe_poker )
9119GAMEL(1995, pexm008p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00008P+XMP00006) Multi-Poker",        GAME_IMPERFECT_GRAPHICS, layout_pe_poker ) /* Needs CG2228 graphics roms for correct MENU game banners */
9120GAMEL(1995, pexm009p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00009P+XMP00002) Multi-Poker",        GAME_IMPERFECT_GRAPHICS, layout_pe_poker ) /* Needs unknown CG2??? graphics roms for correct MENU game banners */
9121GAMEL(1995, pexm013p,  0,        peplus,  peplus_poker, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XM00013P+XMP00025) Multi-Poker",        0, layout_pe_poker )
9122
9123/* Superboard : Multi-Poker (Wingboard) */
9124GAMEL(1995, pexmp013,  0,        peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00013) 5-in-1 Wingboard (CG2346) - Spanish", 0, layout_pe_poker )
9125GAMEL(1995, pexmp017,  0,        peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00017) 5-in-1 Wingboard (CG2298)",   0, layout_pe_poker )
9126GAMEL(1995, pexmp017a, pexmp017, peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00017) 5-in-1 Wingboard (CG2352)",   0, layout_pe_poker )
9127GAMEL(1995, pexmp017b, pexmp017, peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00017) 5-in-1 Wingboard (CG2426)",   0, layout_pe_poker )
9128GAMEL(1995, pexmp026,  0,        peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00026) 5-in-1 Wingboard (CG2346) - Spanish", 0, layout_pe_poker )
9129GAMEL(1995, pexmp030,  0,        peplus,  peplus_poker, peplus_state, peplussbw,ROT0,  "IGT - International Game Technology", "Player's Edge Plus (XMP00030) 5-in-1 Wingboard (CG2426)",   0, layout_pe_poker )
9130
9131/* Superboard : Slots machine */
9132GAMEL(1997, pex0838s, 0,        peplus,  peplus_slots, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000838S+XS000002) Five Times Pay Slots", 0, layout_pe_slots )
9133GAMEL(1997, pex0841s, pex0838s, peplus,  peplus_slots, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000841S+XS000002) Five Times Pay Slots", 0, layout_pe_slots )
9134GAMEL(1997, pex0998s, 0,        peplus,  peplus_slots, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X000998S+XS000006) Triple Triple Diamond Slots", 0, layout_pe_slots )
9135GAMEL(1997, pex1087s, 0,        peplus,  peplus_slots, peplus_state, peplussb, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (X001087S+XS000006) Double Double Diamond Slots", GAME_IMPERFECT_GRAPHICS, layout_pe_slots ) /* CAPX2415 not dumped */


Previous 199869 Revisions Next


© 1997-2024 The MAME Team