trunk/src/mame/drivers/peplus.c
r241491 | r241492 | |
141 | 141 | PPnnnn Poker games. Several different types of poker require specific CG graphics + CAP color prom |
142 | 142 | IPnnnn International Poker games. Several different types of poker require specific CG graphics + CAP color prom |
143 | 143 | PSnnnn Slot games. Each slot game requires specific CG graphics + CAP color prom |
144 | | MGnnnn Multi Game programs for the Player's Choice machines that had optional touchscreens and or printers |
145 | 144 | |
146 | 145 | Super PE+ |
147 | 146 | Program Types |
r241491 | r241492 | |
8953 | 8952 | GAMEL(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 ) |
8954 | 8953 | |
8955 | 8954 | /* Normal board : Blackjack */ |
8956 | | GAMEL(1994, pebe0014, 0, peplus, peplus_bjack, peplus_state, peplus, ROT0, "IGT - International Game Technology", "Player's Edge Plus (BE0014) Blackjack", 0, layout_pe_bjack ) |
| 8955 | GAMEL(1994, pebe0014, 0, peplus, peplus_bjack, peplus_state, peplus, ROT0, "IGT - International Game Technology", "Player's Edge Plus (BE0014) Blackjack", 0, layout_pe_bjack ) |
8957 | 8956 | |
8958 | 8957 | /* Normal board : Keno */ |
8959 | 8958 | GAMEL(1994, peke1012, 0, peplus, peplus_keno, peplus_state, peplus, ROT0, "IGT - International Game Technology", "Player's Edge Plus (KE1012) Keno", 0, layout_pe_keno ) |
trunk/src/mess/drivers/ec184x.c
r241491 | r241492 | |
300 | 300 | |
301 | 301 | ROM_START( ec1840 ) |
302 | 302 | ROM_REGION16_LE(0x100000,"maincpu", 0) |
303 | | ROM_SYSTEM_BIOS(0, "v4", "EC-1840.04") |
304 | | ROMX_LOAD( "000-04-971b.bin", 0xfe000, 0x0800, CRC(06aeaee8) SHA1(9f954e4c48156d573a8e0109e7ca652be9e6036a), ROM_SKIP(1) | ROM_BIOS(1)) |
305 | | ROMX_LOAD( "001-04-92b7.bin", 0xff000, 0x0800, CRC(3fae650a) SHA1(c98b777fdeceadd72d6eb9465b3501b9ead55a08), ROM_SKIP(1) | ROM_BIOS(1)) |
306 | | ROMX_LOAD( "002-04-9e17.bin", 0xfe001, 0x0800, CRC(d59712df) SHA1(02ea1b3ae9662f5c64c58920a32ca9db0f6fbd12), ROM_SKIP(1) | ROM_BIOS(1)) |
307 | | ROMX_LOAD( "003-04-3ccb.bin", 0xff001, 0x0800, CRC(7fc362c7) SHA1(538e13639ad2b4c30bd72582e323181e63513306), ROM_SKIP(1) | ROM_BIOS(1)) |
| 303 | ROM_DEFAULT_BIOS("v4") |
| 304 | // supports MDA only |
| 305 | ROM_SYSTEM_BIOS(0, "v1", "EC-1840.01") |
| 306 | ROMX_LOAD( "000-01.bin", 0xfe000, 0x0800, CRC(c3ab1fad) SHA1(8168bdee30698f4f9aa7bbb6dfabe62dd723cec5), ROM_SKIP(1) | ROM_BIOS(1)) |
| 307 | ROMX_LOAD( "001-01.bin", 0xff000, 0x0800, CRC(601d1155) SHA1(9684d33b92743749704587a48e679ef7a3b20f9c), ROM_SKIP(1) | ROM_BIOS(1)) |
| 308 | ROMX_LOAD( "002-01.bin", 0xfe001, 0x0800, CRC(ce4dddb7) SHA1(f9b1da60c848e68ff1c154d695a36a0833de4804), ROM_SKIP(1) | ROM_BIOS(1)) |
| 309 | ROMX_LOAD( "003-01.bin", 0xff001, 0x0800, CRC(14b40431) SHA1(ce7fffa41897405ee64fd4e86015e774f8bd108a), ROM_SKIP(1) | ROM_BIOS(1)) |
308 | 310 | |
| 311 | ROM_SYSTEM_BIOS(1, "v4", "EC-1840.04") |
| 312 | ROMX_LOAD( "000-04-971b.bin", 0xfe000, 0x0800, CRC(06aeaee8) SHA1(9f954e4c48156d573a8e0109e7ca652be9e6036a), ROM_SKIP(1) | ROM_BIOS(2)) |
| 313 | ROMX_LOAD( "001-04-92b7.bin", 0xff000, 0x0800, CRC(3fae650a) SHA1(c98b777fdeceadd72d6eb9465b3501b9ead55a08), ROM_SKIP(1) | ROM_BIOS(2)) |
| 314 | ROMX_LOAD( "002-04-9e17.bin", 0xfe001, 0x0800, CRC(d59712df) SHA1(02ea1b3ae9662f5c64c58920a32ca9db0f6fbd12), ROM_SKIP(1) | ROM_BIOS(2)) |
| 315 | ROMX_LOAD( "003-04-3ccb.bin", 0xff001, 0x0800, CRC(7fc362c7) SHA1(538e13639ad2b4c30bd72582e323181e63513306), ROM_SKIP(1) | ROM_BIOS(2)) |
| 316 | |
309 | 317 | ROM_REGION(0x2000,"gfx1", ROMREGION_ERASE00) |
310 | 318 | ROM_END |
311 | 319 | |