Previous 199869 Revisions Next

r19019 Monday 19th November, 2012 at 00:03:35 UTC by Tafoid
New clones added
----------------
Marvel Vs. Capcom: Clash of Super Heroes (Japan 980123) (Single PCB)  [ranger_lennier, Yohji, Tormod, Smitdogg, The Dumping Union]
[src/mame]mame.lst
[src/mame/drivers]cps2.c
[src/mame/machine]cps2crpt.c

trunk/src/mame/mame.lst
r19018r19019
31923192mvscur1         // 23/01/1998 (c) 1998 (USA)
31933193mvscj         // 23/01/1998 (c) 1998 (Japan)
31943194mvscjr1         // 12/01/1998 (c) 1998 (Japan)
3195mvscjsing      // 23/01/1998 (c) 1998 (Japan) - Single PCB
31953196mvsca         // 23/01/1998 (c) 1998 (Asia)
31963197mvscar1         // 12/01/1998 (c) 1998 (Asia)
31973198mvsch         // 23/01/1998 (c) 1998 (Hispanic)
trunk/src/mame/machine/cps2crpt.c
r19018r19019
941941   { "mvscur1",  { 0x692dc41b,0x7ef1c805 }, 0x100000 },   // 0C81 1972 0121  cmpi.l  #$19720121,D1
942942   { "mvscj",    { 0xafc16138,0x97123eb0 }, 0x100000 },   // 0C81 1972 0121  cmpi.l  #$19720121,D1
943943   { "mvscjr1",  { 0xafc16138,0x97123eb0 }, 0x100000 },   // 0C81 1972 0121  cmpi.l  #$19720121,D1
944   { "mvscjsing",{ 0xafc16138,0x97123eb0 }, 0x100000 },   // 0C81 1972 0121  cmpi.l  #$19720121,D1
944945   { "mvsca",    { 0xf248aec6,0x7905cd17 }, 0x100000 },   // 0C81 1972 0121  cmpi.l  #$19720121,D1
945946   { "mvscar1",  { 0xf248aec6,0x7905cd17 }, 0x100000 },   // 0C81 1972 0121  cmpi.l  #$19720121,D1
946947   { "mvsch",    { 0x9d5c7a23,0xe56b18ef }, 0x100000 },   // 0C81 1972 0121  cmpi.l  #$19720121,D1
trunk/src/mame/drivers/cps2.c
r19018r19019
44334433   ROM_LOAD16_WORD_SWAP( "mvc.12m",   0x400000, 0x400000, CRC(7ccb1896) SHA1(74caadf3282fcc6acffb1bbe3734106f81124121) )
44344434ROM_END
44354435
4436/* This is the Single PCB release of Marvel VS. Capcom, it comes in a black case and has the Program ROM stored on
4437   SIMMs similar to CPS3.  All ROM data (including the code) is *identical* to the regular Japan set (mvscj) just
4438   in different sized ROMs
4439
4440   The original PCB is said to show the volume / sound test in a slightly different way, but this must be down to
4441   some software configuration or an unemulated hardware register, not the code */
4442
4443ROM_START( mvscjsing )
4444   ROM_REGION( CODE_SIZE, "maincpu", 0 )      /* 68000 code */
4445   ROM_LOAD16_BYTE( "mvc_ja.simm1", 0x000000, 0x200000, CRC(6a2ef7c2) SHA1(625530b92217375014db4694196e6ab2a4684db6) )
4446   ROM_LOAD16_BYTE( "mvc_ja.simm3", 0x000001, 0x200000, CRC(699d09ad) SHA1(67f6587808f55f10f58e067512f8db3f67dda770) )
4447
4448   ROM_REGION( 0x2000000, "gfx", 0 )
4449   ROMX_LOAD( "mvc64-13m.13",   0x0000000, 0x800000, CRC(8428ce69) SHA1(65b1cdb40e5bd0c9afc21d267d02d118f8c9a44a) , ROM_GROUPWORD | ROM_SKIP(6) )
4450   ROMX_LOAD( "mvc64-15m.15",   0x0000002, 0x800000, CRC(2e0028f4) SHA1(be21622c5e3ba9a0a799d943fc6cc2bf7ec9582f) , ROM_GROUPWORD | ROM_SKIP(6) )
4451   ROMX_LOAD( "mvc64-17m.17",   0x0000004, 0x800000, CRC(308ca826) SHA1(2ef1fb4999e7e25e7f605c788f61a85da6715475) , ROM_GROUPWORD | ROM_SKIP(6) )
4452   ROMX_LOAD( "mvc64-19m.19",   0x0000006, 0x800000, CRC(10699fe1) SHA1(4bb65999c2a73c46cd0c7b6ea26ffb0d8ab24602) , ROM_GROUPWORD | ROM_SKIP(6) )
4453
4454   ROM_REGION( QSOUND_SIZE, "audiocpu", 0 ) /* 64k for the audio CPU (+banks) */
4455   ROM_LOAD( "mvc.01",   0x00000, 0x08000, CRC(41629e95) SHA1(36925c05b5fdcbe43283a882d021e5360c947061) )
4456   ROM_CONTINUE(         0x10000, 0x18000 )
4457   ROM_LOAD( "mvc.02",   0x28000, 0x20000, CRC(963abf6b) SHA1(6b784870e338701cefabbbe4669984b5c4e8a9a5) )
4458
4459   ROM_REGION( 0x800000, "qsound", 0 ) /* QSound samples */
4460   ROM_LOAD16_WORD_SWAP( "mvc64-11m.11",   0x000000, 0x800000, CRC(5d8819e0) SHA1(afe2ec7fa4786e6d9a9a0ffa5787862ad69b0010) )
4461ROM_END
4462
44364463ROM_START( mvsca )
44374464   ROM_REGION( CODE_SIZE, "maincpu", 0 )      /* 68000 code */
44384465   ROM_LOAD16_WORD_SWAP( "mvca.03a", 0x000000, 0x80000, CRC(2ff4ae25) SHA1(74cc3656a265f912c72cc6e591de14791fa9a50d) )
r19018r19019
83888415GAME( 1998, mvscur1,    mvsc,     cps2, cps2_2p6b, cps_state, cps2,     ROT0,   "Capcom", "Marvel Vs. Capcom: Clash of Super Heroes (USA 971222)", GAME_SUPPORTS_SAVE )
83898416GAME( 1998, mvscj,      mvsc,     cps2, cps2_2p6b, cps_state, cps2,     ROT0,   "Capcom", "Marvel Vs. Capcom: Clash of Super Heroes (Japan 980123)", GAME_SUPPORTS_SAVE )
83908417GAME( 1998, mvscjr1,    mvsc,     cps2, cps2_2p6b, cps_state, cps2,     ROT0,   "Capcom", "Marvel Vs. Capcom: Clash of Super Heroes (Japan 980112)", GAME_SUPPORTS_SAVE )
8418GAME( 1998, mvscjsing,  mvsc,     cps2, cps2_2p6b, cps_state, cps2,     ROT0,   "Capcom", "Marvel Vs. Capcom: Clash of Super Heroes (Japan 980123) (Single PCB)", GAME_SUPPORTS_SAVE )
83918419GAME( 1998, mvsca,      mvsc,     cps2, cps2_2p6b, cps_state, cps2,     ROT0,   "Capcom", "Marvel Vs. Capcom: Clash of Super Heroes (Asia 980123)", GAME_SUPPORTS_SAVE )
83928420GAME( 1998, mvscar1,    mvsc,     cps2, cps2_2p6b, cps_state, cps2,     ROT0,   "Capcom", "Marvel Vs. Capcom: Clash of Super Heroes (Asia 980112)", GAME_SUPPORTS_SAVE )
83938421GAME( 1998, mvsch,      mvsc,     cps2, cps2_2p6b, cps_state, cps2,     ROT0,   "Capcom", "Marvel Vs. Capcom: Clash of Super Heroes (Hispanic 980123)", GAME_SUPPORTS_SAVE )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team