mirror of
https://github.com/holub/mame
synced 2025-06-02 02:49:44 +03:00
Dumped and added a Korean Major Poker bootleg (#11657)
* misc/majorpkr.cpp: New WORKING clone ----------------------------- Super Yutnori (bootleg of Major Poker) [Taksangs]
This commit is contained in:
parent
cc772072fa
commit
82b58a7c10
@ -30468,6 +30468,7 @@ majorpkra // (c) 1994 PAL System.
|
||||
majorpkrb // (c) 1994 PAL System.
|
||||
majorpkrc // (c) 1994 PAL System.
|
||||
luckypkr // bootleg/hack.
|
||||
syutnori // bootleg
|
||||
|
||||
@source:misc/malzak.cpp
|
||||
malzak // (c) 1980? Kitronix
|
||||
|
@ -1199,6 +1199,45 @@ ROM_START( luckypkr )
|
||||
ROM_LOAD( "27c2001.rom5", 0x00000, 0x40000, CRC(4843858e) SHA1(27629829cf7753d7801a6eb42bb77ca2a467bebd) )
|
||||
ROM_END
|
||||
|
||||
/*
|
||||
슈퍼 윷놀이 (Playing Super Yut / Super Yutnori).
|
||||
Bootleg of Major Poker.
|
||||
Four locations for DIP switches banks on the PCB, but only three were populated (one was missing).
|
||||
Also, none of the switches on the PCB (SW1 and SW2) were present on their PCB locations.
|
||||
Hardware:
|
||||
-GoldStar Z8400B.
|
||||
-Actel PL84C.
|
||||
-AD65 (OKI6295).
|
||||
-12.000 MHz xtal.
|
||||
*/
|
||||
ROM_START( syutnori )
|
||||
ROM_REGION( 0x10000, "maincpu", 0 )
|
||||
ROM_LOAD( "6.bin", 0x00000, 0x10000, CRC(a8e35b31) SHA1(887ded6bf2c9ce1b95336c870889f94eb380c57e) )
|
||||
|
||||
ROM_REGION( 0x100000, "bg_gfx", 0 )
|
||||
ROM_LOAD( "1.bin", 0x00000, 0x80000, CRC(82eabf1b) SHA1(6faae3c5a989ade5f5245a8475831dd5fb814147) )
|
||||
ROM_LOAD( "2.bin", 0x80000, 0x80000, CRC(0ccd3ad7) SHA1(1b338d621c86fa931a776e3a3293d3034cf65959) )
|
||||
|
||||
ROM_REGION( 0x40000, "fg_gfx", 0 )
|
||||
ROM_LOAD( "3.bin", 0x00000, 0x20000, CRC(c429786c) SHA1(39de9c6ac282fc3f19e469af216530e7e8998a4f) )
|
||||
ROM_LOAD( "4.bin", 0x20000, 0x20000, CRC(03619b00) SHA1(f13732ff0022d611ea46f2a23ceac99ca88c581b) )
|
||||
|
||||
ROM_REGION( 0x40000, "oki", 0 )
|
||||
ROM_LOAD( "5.bin", 0x00000, 0x40000, CRC(4843858e) SHA1(27629829cf7753d7801a6eb42bb77ca2a467bebd) )
|
||||
|
||||
ROM_REGION( 0x2000, "plds", 0 )
|
||||
ROM_LOAD( "1_atf16v8b.bin", 0x0000, 0x0117, NO_DUMP )
|
||||
ROM_LOAD( "2_atf16v8b.bin", 0x0200, 0x0117, NO_DUMP )
|
||||
ROM_LOAD( "3_atf16v8b.bin", 0x0400, 0x0117, NO_DUMP )
|
||||
ROM_LOAD( "4_atf16v8b.bin", 0x0600, 0x0117, NO_DUMP )
|
||||
ROM_LOAD( "5_atf16v8b.bin", 0x0800, 0x0117, NO_DUMP )
|
||||
ROM_LOAD( "6_atf16v8b.bin", 0x0a00, 0x0117, NO_DUMP )
|
||||
ROM_LOAD( "7_atf16v8b.bin", 0x0c00, 0x0117, NO_DUMP )
|
||||
ROM_LOAD( "8_atf16v8b.bin", 0x0e00, 0x0117, NO_DUMP )
|
||||
ROM_LOAD( "9_palce20v8h.bin", 0x1000, 0x0157, NO_DUMP )
|
||||
ROM_LOAD( "10_palce20v8h.bin", 0x1200, 0x0157, NO_DUMP )
|
||||
ROM_END
|
||||
|
||||
} // anonymous namespace
|
||||
|
||||
|
||||
@ -1212,3 +1251,4 @@ GAMEL( 1994, majorpkra, majorpkr, majorpkr, majorpkr, majorpkr_state, empty_init
|
||||
GAMEL( 1994, majorpkrb, majorpkr, majorpkr, majorpkr, majorpkr_state, empty_init, ROT0, "PAL System / Micro Manufacturing", "Major Poker (set 3, Micro Manufacturing intro)", MACHINE_SUPPORTS_SAVE, layout_majorpkr )
|
||||
GAMEL( 1994, majorpkrc, majorpkr, majorpkr, majorpkr, majorpkr_state, empty_init, ROT0, "PAL System / Micro Manufacturing", "Major Poker (set 4, Micro Manufacturing intro)", MACHINE_SUPPORTS_SAVE, layout_majorpkr )
|
||||
GAMEL( 1994, luckypkr, majorpkr, majorpkr, majorpkr, majorpkr_state, empty_init, ROT0, "bootleg", "Lucky Poker (bootleg/hack of Major Poker)", MACHINE_SUPPORTS_SAVE, layout_majorpkr )
|
||||
GAMEL( 1994, syutnori, majorpkr, majorpkr, majorpkr, majorpkr_state, empty_init, ROT0, "bootleg", "Super Yutnori (bootleg of Major Poker)", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE, layout_majorpkr ) // 슈퍼 윷놀이
|
||||
|
Loading…
Reference in New Issue
Block a user