Skip to content

Commit 73c489c

Browse files
committed
New working clones
------------------ Golden Poker Double Up (tearoom*sara hack) [Roberto Fresca, Hammy]
1 parent 7b8303b commit 73c489c

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

src/mame/mame.lst

+1
Original file line numberDiff line numberDiff line change
@@ -30633,6 +30633,7 @@ goldnpkd // Bootleg
3063330633
goldnpke // Intercoast (bootleg)
3063430634
goldnpkf // Intercoast (bootleg)
3063530635
goldnpkg // Bootleg
30636+
goldnpkh // (c) 1981 Bonanza
3063630637
goldnpkr // (c) 1981 Bonanza
3063730638
goodluck // Unknown
3063830639
icproul // bootleg?

src/mame/misc/goldnpkr.cpp

+26-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* Golden Poker Double Up (bootleg, set 3), 1983, Intercoast (bootleg).
1818
* Golden Poker Double Up (bootleg, set 4), 1983, Intercoast (bootleg).
1919
* Golden Poker Double Up (bootleg, set 5), 198?, Bootleg.
20+
* Golden Poker Double Up (tearoom*sara hack), 1981, Bonanza Enterprises, Ltd.
2021
* Videotron Poker (cards selector, set 1), 198?, Unknown.
2122
* Videotron Poker (cards selector, set 2), 198?, Unknown.
2223
* Videotron Poker (normal controls), 198?, Unknown.
@@ -165,9 +166,6 @@
165166
* Black jack (Olympic Games, v5.04, upgrade for WC), 1989, Olympic Video Gaming PTY LTD.
166167

167168

168-
Total: 153 sets.
169-
170-
171169
************************************************************************************
172170

173171

@@ -5576,6 +5574,30 @@ ROM_START( goldnpkg )
55765574
ROM_END
55775575

55785576

5577+
/* Bonanza Golden Poker Double Up.
5578+
Original hardware, with tearoom*sara text hack.
5579+
5580+
You can play 1-50 credits.
5581+
So the hackers removed the "PLAY 1 TO 50" string to put "TEAROOM*SARA" instead.
5582+
*/
5583+
ROM_START( goldnpkh )
5584+
ROM_REGION( 0x10000, "maincpu", 0 )
5585+
ROM_LOAD( "spf.12a", 0x4000, 0x4000, CRC(22963c83) SHA1(ac9e66f0c548011aac88b9f32a924995ba3651e4) )
5586+
5587+
ROM_REGION( 0x6000, "gfx1", 0 )
5588+
ROM_FILL( 0x0000, 0x4000, 0x0000 ) // filling the R-G bitplanes
5589+
ROM_LOAD( "u38_5a.bin", 0x4000, 0x2000, CRC(32705e1d) SHA1(84f9305af38179985e0224ae2ea54c01dfef6e12) ) // char ROM
5590+
5591+
ROM_REGION( 0x6000, "gfx2", 0 )
5592+
ROM_LOAD( "u43_2a.bin", 0x0000, 0x2000, CRC(10b34856) SHA1(52e4cc81b36b4c807b1d4471c0f7bea66108d3fd) ) // cards deck gfx, bitplane1
5593+
ROM_LOAD( "u40_4a.bin", 0x2000, 0x2000, CRC(5fc965ef) SHA1(d9ecd7e9b4915750400e76ca604bec8152df1fe4) ) // cards deck gfx, bitplane2
5594+
ROM_COPY( "gfx1", 0x4800, 0x4000, 0x0800 ) // cards deck gfx, bitplane3. found in the 2nd quarter of the char rom
5595+
5596+
ROM_REGION( 0x0100, "proms", 0 )
5597+
ROM_LOAD( "tbp24s10n.7d", 0x0000, 0x0100, CRC(7f31066b) SHA1(15420780ec6b2870fc4539ec3afe4f0c58eedf12) )
5598+
ROM_END
5599+
5600+
55795601
/* Videotron Poker.
55805602
Alternative controls set, with cards selector...
55815603
*/
@@ -13075,6 +13097,7 @@ GAMEL( 198?, goldnpkd, goldnpkr, goldnpkr, goldnpkr, goldnpkr_state, empty_init
1307513097
GAMEL( 1983, goldnpke, goldnpkr, goldnpkr, goldnpkr, goldnpkr_state, empty_init, ROT0, "Intercoast (bootleg)", "Golden Poker Double Up (bootleg, set 3)", 0, layout_goldnpkr )
1307613098
GAMEL( 1983, goldnpkf, goldnpkr, goldnpkr, goldnpkr, goldnpkr_state, empty_init, ROT0, "Intercoast (bootleg)", "Golden Poker Double Up (bootleg, set 4)", 0, layout_goldnpkr )
1307713099
GAMEL( 1983, goldnpkg, goldnpkr, goldnpkr, goldnpkr, goldnpkr_state, empty_init, ROT0, "bootleg", "Golden Poker Double Up (bootleg, set 5)", 0, layout_goldnpkr )
13100+
GAMEL( 1983, goldnpkh, goldnpkr, goldnpkr, goldnpkr, goldnpkr_state, empty_init, ROT0, "Bonanza Enterprises, Ltd", "Golden Poker Double Up (tearoom*sara hack)", 0, layout_goldnpkr )
1307813101

1307913102
GAMEL( 198?, videtron, 0, goldnpkr, videtron, goldnpkr_state, empty_init, ROT0, "<unknown>", "Videotron Poker (cards selector, set 1)", 0, layout_goldnpkr )
1308013103
GAMEL( 198?, videtron2, videtron, goldnpkr, videtron, goldnpkr_state, empty_init, ROT0, "<unknown>", "Videotron Poker (cards selector, set 2)", 0, layout_goldnpkr )

0 commit comments

Comments
 (0)