Skip to content

Commit 525c39f

Browse files
committed
New working clones
------------------ ICP F40 poker (137fv_10yen_f40, autostart) [Roberto Fresca, Grull Osgo, Hammy]
1 parent fc4e3d9 commit 525c39f

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

src/mame/mame.lst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31202,6 +31202,7 @@ gp_ped42_85
3120231202
gp_ped42_90
3120331203
gp_ped42_95
3120431204
gp_turbo
31205+
icpf40_01
3120531206
icpf80_01
3120631207
icpf80_02
3120731208
icpf80_03

src/mame/misc/goldnpkr.cpp

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13350,11 +13350,31 @@ ROM_END
1335013350

1335113351
/*
1335213352
The following are programs that fit
13353-
the ICP + f80 system. Most of them
13354-
looks like hacks to change functionality.
13353+
the ICP + f40 / f80 systems. Some of them
13354+
looks like hacks and some real programs
13355+
to change different game functionalities.
1335513356

1335613357
*/
1335713358

13359+
ROM_START( icpf40_01 )
13360+
ROM_REGION( 0x10000, "maincpu", 0 )
13361+
ROM_LOAD( "137_7_10b_sub.bin", 0x6000, 0x1000, CRC(698a04c1) SHA1(f3e3cfef5ef3d517b2c1550c85d0be09f1fa17b1) )
13362+
ROM_LOAD( "137_8_10b_sub.bin", 0x7000, 0x1000, CRC(d5c43fce) SHA1(6797d9cd485791dba8be0d2136b6f713f9e2908e) )
13363+
ROM_LOAD( "137fv_10yen_f40.bin", 0xf000, 0x1000, CRC(17974f36) SHA1(14f4780977fd35d0dafc204b9e4408aefe0cc8e1) )
13364+
13365+
ROM_REGION( 0x3000, "gfx1", 0 )
13366+
ROM_FILL( 0x0000, 0x2000, 0x0000 ) // filling the R-G bitplanes
13367+
ROM_LOAD( "34.8a", 0x2000, 0x1000, CRC(52fd35d2) SHA1(ad8bf8c222ceb2e9b3b6d9033866867f1977c65f) ) // char ROM
13368+
13369+
ROM_REGION( 0x1800, "gfx2", 0 )
13370+
ROM_LOAD( "1.4a", 0x0000, 0x0800, CRC(f2f94661) SHA1(f37f7c0dff680fd02897dae64e13e297d0fdb3e7) ) // cards deck gfx, bitplane1
13371+
ROM_LOAD( "2.6a", 0x0800, 0x0800, CRC(6bbb1e2d) SHA1(51ee282219bf84218886ad11a24bc6a8e7337527) ) // cards deck gfx, bitplane2
13372+
ROM_COPY( "gfx1", 0x2800, 0x1000, 0x0800 ) // cards deck gfx, bitplane3. found in the 2nd quarter of the char rom
13373+
13374+
ROM_REGION( 0x0200, "proms", 0 ) // the second half has the palette for black background instead of blue.
13375+
ROM_LOAD( "137_82s131_bprom.bin", 0x0000, 0x0200, CRC(41ff6a5d) SHA1(a5a69b1ac6022fa2c51480250f875328ae44d7ff) )
13376+
ROM_END
13377+
1335813378
ROM_START( icpf80_01 )
1335913379
ROM_REGION( 0x10000, "maincpu", 0 )
1336013380
ROM_LOAD( "7_sub.bin", 0x6000, 0x1000, CRC(1075c73a) SHA1(6949b103e9a72dd688348359ce1b3c9c61911121) )
@@ -14879,6 +14899,7 @@ GAME( 198?, unkicpf40, 0, unkicpf40, unkicpf40, goldnpkr_state, empty_in
1487914899
GAME( 198?, unkicpf80, 0, unkicpf40, unkicpf40, goldnpkr_state, empty_init, ROT0, "<unknown>", "ICP F80 poker (137 Fever, 50 bet)", 0 )
1488014900
GAME( 198?, unkicpetg, 0, unkicpf40, unkicpetg, goldnpkr_state, empty_init, ROT0, "<unknown>", "ICP EX-Turbo-GT poker", 0 )
1488114901

14902+
GAME( 198?, icpf40_01, unkicpf40, unkicpf40, unkicpf40, goldnpkr_state, empty_init, ROT0, "<unknown>", "ICP F40 poker (137fv_10yen_f40, autostart)", 0 )
1488214903
GAME( 198?, icpf80_01, unkicpf80, unkicpf40, unkicpf40, goldnpkr_state, empty_init, ROT0, "<unknown>", "ICP F80 poker (137_50_100)", 0 )
1488314904
GAME( 198?, icpf80_02, unkicpf80, unkicpf40, unkicpf40, goldnpkr_state, empty_init, ROT0, "<unknown>", "ICP F80 poker (137_9.bin)", 0 )
1488414905
GAME( 198?, icpf80_03, unkicpf80, unkicpf40, unkicpf40, goldnpkr_state, empty_init, ROT0, "<unknown>", "ICP F80 poker (137_9_0jap)", 0 )

0 commit comments

Comments
 (0)