Previous 199869 Revisions Next

r32359 Wednesday 24th September, 2014 at 19:53:42 UTC by Brian Troha
new Americana (Poker) game

New Game Added
---------------------------------
Americana (9131-00) [Brian Troha, The Dumping Union]
[src/mame]mame.lst
[src/mame/drivers]merit.c meritm.c

trunk/src/mame/drivers/meritm.c
r32358r32359
678678   PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_POKER_HOLD5 ) PORT_NAME( "Hold 5 / Double Up / Hi" )
679679   PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_GAMBLE_BET )
680680   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)
682684INPUT_PORTS_END
683685
686static 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" )
709INPUT_PORTS_END
710
684711static INPUT_PORTS_START(realbrod)
685712   PORT_INCLUDE(meritm_crt250)
686713
r32358r32359
11291156MACHINE_CONFIG_END
11301157
11311158
1159/*
1160
1161Americana - Standard 5 card draw Joker Poker.
1162
1163Pressing Service Mode "F2" brings up a Coins in for Coin1 & Coin2 plus total coins.
1164
1165Entering the Setup menu "S":
1166 Hold3 switches selection choice.
1167 Hold5 advances through the list.
1168 Hi-Score will clear the High Scores
1169
1170Is the "Stand" & "Hi-Score" keys the same? Without a sperate Stand key, you cannot set up the "TWIN" bonus feature
1171
1172*/
1173
1174ROM_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) )
1179ROM_END
1180
11321181ROM_START( dodgecty ) /* Uses a small daughter card CRT-255 & Dallas DS1225Y NV SRAM */
11331182   ROM_REGION( 0x80000, "maincpu", 0 )
11341183   ROM_LOAD( "9131-02_u9-2t.u9",  0x00000, 0x10000, CRC(22e73039) SHA1(368f03b31f7c3cb81a95b20d1cb954e8557d2017) ) /* 9131-02 U9-2T  880111 */
r32358r32359
13921441  Hi-Score             Yes / No
13931442
13941443It'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.
13961445It's currently unknown how to access / enable those features or if it's possible to do so.
13971446
13981447*/
r32358r32359
21872236};
21882237
21892238/* CRT 250 */
2239GAME( 1987, americna,  0,        meritm_crt250, americna, driver_device, 0,        ROT0, "Merit", "Americana (9131-00)", GAME_IMPERFECT_GRAPHICS )
21902240GAME( 1988, dodgecty,  0,        meritm_crt250, dodgecty, driver_device, 0,        ROT0, "Merit", "Dodge City (9131-02)", GAME_IMPERFECT_GRAPHICS )
21912241GAME( 1988, pitboss2,  0,        meritm_crt250, pitboss2, driver_device, 0,        ROT0, "Merit", "Pit Boss II (9221-01C)", GAME_IMPERFECT_GRAPHICS )
21922242GAME( 1988, spitboss,  0,        meritm_crt250, spitboss, driver_device, 0,        ROT0, "Merit", "Super Pit Boss (9221-02A)", GAME_IMPERFECT_GRAPHICS )
trunk/src/mame/drivers/merit.c
r32358r32359
5454
5555Merit Riviera Notes - There are several known versions:
5656  Riviera Hi-Score
57  Riviera Americana (not dumped)
5857  Riviera Super Star (not dumped)
5958  Riviera Montana Version (with journal printer, not dumped)
6059  Riviera Tennessee Draw (not dumped)
6160  Michigan Superstar Draw Poker (not dumped)
61  Americana
6262
6363  There are several law suites over the Riviera games. Riviera Distributors Inc. bought earlier versions
6464  of the various video poker games from Merit. RDI then licensed the games to Michigan Coin Op-Vending
trunk/src/mame/mame.lst
r32358r32359
1045510455riviera         // (c) 1987 Merit
1045610456rivieraa        // (c) 1986 Merit
1045710457rivierab        // (c) 1986 Merit
10458americna        // (c) 1987 Merit
1045810459dodgecty        // (c) 1988 Merit
1045910460dodgectya       // (c) 1986 Merit
1046010461dodgectyb       // (c) 1986 Merit

Previous 199869 Revisions Next


© 1997-2024 The MAME Team