New clones marked as NOT_WORKING

--------------------------------
Warriors of Fate (bootleg with PIC16C57) [Hammy, Ekorz, rtw]
This commit is contained in:
Ivan Vangelista 2020-04-10 20:52:41 +02:00
parent e655aacb4e
commit 345b150aa3
5 changed files with 47 additions and 1 deletions

View File

@ -2410,7 +2410,7 @@ static INPUT_PORTS_START( cworld2j )
INPUT_PORTS_END
/* Needs further checking */
static INPUT_PORTS_START( wof )
INPUT_PORTS_START( wof )
PORT_INCLUDE( cps1_3players )
PORT_MODIFY("IN0")

View File

@ -63,6 +63,7 @@ public:
void init_punipic3();
void init_slampic();
void init_slampic2();
void init_wofpic();
private:
DECLARE_MACHINE_START(dinopic);
@ -564,6 +565,22 @@ void cps1bl_pic_state::init_slampic2()
init_cps1();
}
void cps1bl_pic_state::init_wofpic()
{
uint32_t gfx_size = memregion( "gfx" )->bytes();
uint8_t *rom = memregion( "gfx" )->base();
for (int i = 0; i < gfx_size; i += 8)
{
uint8_t tmp = rom[i + 1];
rom[i + 1] = rom[i + 4];
rom[i + 4] = tmp;
tmp = rom[i + 3];
rom[i + 3] = rom[i + 6];
rom[i + 6] = tmp;
}
init_dinopic();
}
static INPUT_PORTS_START( slampic )
PORT_INCLUDE(slammast)
@ -1326,6 +1343,30 @@ ROM_START( slampic2 )
ROM_LOAD( "2_gal16v8.p1", 0x0000, 0x0117, CRC(a944ff96) SHA1(2871a1c70b91fcd8628e63497afa1275f3a27f93) )
ROM_END
ROM_START( wofpic )
ROM_REGION( CODE_SIZE, "maincpu", 0 )
ROM_LOAD16_BYTE( "1.4m", 0x000001, 0x80000, CRC(d2ae67a8) SHA1(cb1a9f8e6999598b9a1a7c449f147a0c5773b154) )
ROM_LOAD16_BYTE( "2.4m", 0x000000, 0x80000, CRC(61fd0a01) SHA1(a7b5bdddd7b31645e33314c1d3649e1506cecfea) )
ROM_LOAD16_BYTE( "3.1m", 0x100001, 0x20000, CRC(739379be) SHA1(897f61527213902fda04bc28339f1f4278bf5ae9) ) // 1xxxxxxxxxxxxxxxx = 0xFF
ROM_LOAD16_BYTE( "4.1m", 0x100000, 0x20000, CRC(fe5eee87) SHA1(be1230f64c1e59ae3ff3e58593070613966ac79d) ) // 11xxxxxxxxxxxxxxx = 0x00
ROM_REGION( 0x400000, "gfx", 0 ) // rearranged in init
ROM_LOAD64_WORD( "gfx13.040", 0x000000, 0x80000, CRC(8e8db215) SHA1(cc85e576bf09c3edab9afc1b5fa0a152f4140c06) )
ROM_LOAD64_WORD( "gfx15.040", 0x000002, 0x80000, CRC(a5e4f449) SHA1(9956f82818ccc685367b5fe5e4bc8b59b65c31c1) )
ROM_LOAD64_WORD( "gfx14.040", 0x000004, 0x80000, CRC(f34a7f9d) SHA1(6d67623c93147a779f07ef103188f3e2cb6d6d6e) )
ROM_LOAD64_WORD( "gfx16.040", 0x000006, 0x80000, CRC(49a3dfc7) SHA1(c14ea91745fd72be936b6db9981d12d958326757) )
ROM_LOAD64_WORD( "gfx9.040", 0x200000, 0x80000, CRC(f8f33a0e) SHA1(33f172b79499d4a76b53c070c0007bd1604a71bd) )
ROM_LOAD64_WORD( "gfx11.040", 0x200002, 0x80000, CRC(13324965) SHA1(979754ebd15a2989f92b5b7fc5bae99eb83c3593) )
ROM_LOAD64_WORD( "gfx10.040", 0x200004, 0x80000, CRC(6a060c6c) SHA1(49e4da9373272e5889caa79a86c39ee34087c480) )
ROM_LOAD64_WORD( "gfx12.040", 0x200006, 0x80000, CRC(c29f7b70) SHA1(95d22dcd9e2a48ddea7573d0be75225e0aae798f) )
ROM_REGION( 0x2000, "audiocpu", 0 ) // NO DUMP - protected PIC
ROM_LOAD( "pic.bin", 0x0000, 0x1007, NO_DUMP )
ROM_REGION( 0x080000, "oki", 0 )
ROM_LOAD( "ma12073.4mm", 0x00000, 0x80000, CRC(ac421276) SHA1(56786c23b0d96e1a2540e7269aa20fd390f98b5b) )
ROM_END
// ************************************************************************* DRIVER MACROS
@ -1339,3 +1380,5 @@ GAME( 1993, punipic3, punisher, punipic, punisher, cps1bl_pic_state, init
GAME( 1993, slampic, slammast, slampic, slampic, cps1bl_pic_state, init_dinopic, ROT0, "bootleg", "Saturday Night Slam Masters (bootleg with PIC16C57, set 1)", MACHINE_IMPERFECT_GRAPHICS | MACHINE_NO_SOUND | MACHINE_SUPPORTS_SAVE ) // 930713 ETC
GAME( 1993, slampic2, slammast, slampic2, slampic2, slampic2_state, init_slampic2, ROT0, "bootleg", "Saturday Night Slam Masters (bootleg with PIC16C57, set 2)", MACHINE_NO_SOUND | MACHINE_SUPPORTS_SAVE ) // 930713 ETC
GAME( 1992, wofpic, wof, dinopic, wof, cps1bl_pic_state, init_wofpic, ROT0, "bootleg", "Warriors of Fate (bootleg with PIC16C57)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND | MACHINE_SUPPORTS_SAVE ) // 021002 ETC, needs correct layers enable, etc. Currently only sprites show.

View File

@ -423,5 +423,6 @@ INPUT_PORTS_EXTERN( sf2 );
INPUT_PORTS_EXTERN( slammast );
INPUT_PORTS_EXTERN( varth );
INPUT_PORTS_EXTERN( captcomm );
INPUT_PORTS_EXTERN( wof );
#endif // MAME_INCLUDES_CPS1_H

View File

@ -10851,6 +10851,7 @@ punipic2 // bootleg
punipic3 // bootleg
slampic // bootleg
slampic2 // bootleg
wofpic // bootleg
@source:cps2.cpp
1944 // 20/06/2000 (c) 2000 Eighting/Raizing (USA)

View File

@ -1642,6 +1642,7 @@ static const struct CPS1config cps1_config_table[]=
{"wofu", CPS_B_21_QS1, mapper_TK263B },
{"wofj", CPS_B_21_QS1, mapper_TK263B },
{"wofhfh", CPS_B_21_DEF, mapper_TK263B, 0x36 }, /* Chinese bootleg */
{"wofpic", CPS_B_21_DEF, mapper_TK263B, 0x36 },
{"dino", CPS_B_21_QS2, mapper_CD63B }, /* layer enable never used */
{"dinou", CPS_B_21_QS2, mapper_CD63B }, /* layer enable never used */
{"dinoj", CPS_B_21_QS2, mapper_CD63B }, /* layer enable never used */