trunk/src/mame/drivers/meritm.c
| r32358 | r32359 | |
| 678 | 678 | PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_POKER_HOLD5 ) PORT_NAME( "Hold 5 / Double Up / Hi" ) |
| 679 | 679 | PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_GAMBLE_BET ) |
| 680 | 680 | PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_GAMBLE_DEAL ) |
| 681 | | PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN ) |
| 681 | |
| 682 | PORT_MODIFY("PIO1_PORTB") |
| 683 | PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_IMPULSE(2) |
| 682 | 684 | INPUT_PORTS_END |
| 683 | 685 | |
| 686 | static INPUT_PORTS_START(americna) |
| 687 | PORT_INCLUDE(meritm_crt250) |
| 688 | |
| 689 | PORT_MODIFY("PIO1_PORTA") |
| 690 | PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_POKER_HOLD1 ) PORT_NAME( "Hold 1 / Take / Lo" ) |
| 691 | PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_POKER_HOLD5 ) PORT_NAME( "Hold 5 / Double Up / Hi" ) |
| 692 | PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_GAMBLE_BET ) PORT_NAME("Bet / Raise") |
| 693 | PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_GAMBLE_DEAL ) |
| 694 | PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_GAMBLE_STAND ) PORT_NAME( "Hi-Score" ) |
| 695 | |
| 696 | PORT_MODIFY("PIO1_PORTB") |
| 697 | PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_IMPULSE(2) |
| 698 | PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_S) PORT_NAME("Setup / Test") |
| 699 | |
| 700 | PORT_MODIFY("DSW") |
| 701 | PORT_DIPNAME( 0x10, 0x10, "Points Per Coin" ) PORT_DIPLOCATION("SW1:5") |
| 702 | PORT_DIPSETTING( 0x10, "1 Points / Coin" ) |
| 703 | PORT_DIPSETTING( 0x00, "5 Points / Coin" ) |
| 704 | PORT_DIPNAME( 0xc0, 0xc0, "Max Play" ) PORT_DIPLOCATION("SW1:7,8") |
| 705 | PORT_DIPSETTING( 0x40, "10" ) |
| 706 | PORT_DIPSETTING( 0xc0, "20" ) |
| 707 | PORT_DIPSETTING( 0x80, "50" ) |
| 708 | PORT_DIPSETTING( 0x00, "50 Raise Yes / 99 Raise No" ) |
| 709 | INPUT_PORTS_END |
| 710 | |
| 684 | 711 | static INPUT_PORTS_START(realbrod) |
| 685 | 712 | PORT_INCLUDE(meritm_crt250) |
| 686 | 713 | |
| r32358 | r32359 | |
| 1129 | 1156 | MACHINE_CONFIG_END |
| 1130 | 1157 | |
| 1131 | 1158 | |
| 1159 | /* |
| 1160 | |
| 1161 | Americana - Standard 5 card draw Joker Poker. |
| 1162 | |
| 1163 | Pressing Service Mode "F2" brings up a Coins in for Coin1 & Coin2 plus total coins. |
| 1164 | |
| 1165 | Entering the Setup menu "S": |
| 1166 | Hold3 switches selection choice. |
| 1167 | Hold5 advances through the list. |
| 1168 | Hi-Score will clear the High Scores |
| 1169 | |
| 1170 | Is the "Stand" & "Hi-Score" keys the same? Without a sperate Stand key, you cannot set up the "TWIN" bonus feature |
| 1171 | |
| 1172 | */ |
| 1173 | |
| 1174 | ROM_START( americna ) /* Uses a small daughter card CRT-251 & Dallas DS1225Y NV SRAM */ |
| 1175 | ROM_REGION( 0x80000, "maincpu", 0 ) |
| 1176 | ROM_LOAD( "9131-00_u9-2.u9", 0x00000, 0x10000, CRC(8a741fb6) SHA1(2d77c67e5a0bdaf6199c31c4055df214672db3e1) ) /* 9131-00 U9-2 888020 */ |
| 1177 | ROM_LOAD( "9131-00_u10-0.u10", 0x10000, 0x10000, CRC(d6f72934) SHA1(4f3d6a5227a3b0fc298533a03cc0a32f8e2f3840) ) |
| 1178 | ROM_LOAD( "9131-00_u11-0.u11", 0x20000, 0x10000, CRC(f2db6f5d) SHA1(3f734a7e8c72c14bf4a3e6f595819311739394d3) ) |
| 1179 | ROM_END |
| 1180 | |
| 1132 | 1181 | ROM_START( dodgecty ) /* Uses a small daughter card CRT-255 & Dallas DS1225Y NV SRAM */ |
| 1133 | 1182 | ROM_REGION( 0x80000, "maincpu", 0 ) |
| 1134 | 1183 | ROM_LOAD( "9131-02_u9-2t.u9", 0x00000, 0x10000, CRC(22e73039) SHA1(368f03b31f7c3cb81a95b20d1cb954e8557d2017) ) /* 9131-02 U9-2T 880111 */ |
| r32358 | r32359 | |
| 1392 | 1441 | Hi-Score Yes / No |
| 1393 | 1442 | |
| 1394 | 1443 | It's unknown if the above is used for regional versions of the game or left over from previous |
| 1395 | | versions of the game such as Dodge City which also contains many of the same text strings. |
| 1444 | versions of games such as Americana or Dodge City which also contains many of the same text strings. |
| 1396 | 1445 | It's currently unknown how to access / enable those features or if it's possible to do so. |
| 1397 | 1446 | |
| 1398 | 1447 | */ |
| r32358 | r32359 | |
| 2187 | 2236 | }; |
| 2188 | 2237 | |
| 2189 | 2238 | /* CRT 250 */ |
| 2239 | GAME( 1987, americna, 0, meritm_crt250, americna, driver_device, 0, ROT0, "Merit", "Americana (9131-00)", GAME_IMPERFECT_GRAPHICS ) |
| 2190 | 2240 | GAME( 1988, dodgecty, 0, meritm_crt250, dodgecty, driver_device, 0, ROT0, "Merit", "Dodge City (9131-02)", GAME_IMPERFECT_GRAPHICS ) |
| 2191 | 2241 | GAME( 1988, pitboss2, 0, meritm_crt250, pitboss2, driver_device, 0, ROT0, "Merit", "Pit Boss II (9221-01C)", GAME_IMPERFECT_GRAPHICS ) |
| 2192 | 2242 | GAME( 1988, spitboss, 0, meritm_crt250, spitboss, driver_device, 0, ROT0, "Merit", "Super Pit Boss (9221-02A)", GAME_IMPERFECT_GRAPHICS ) |