Previous 199869 Revisions Next

r32770 Thursday 16th October, 2014 at 02:04:22 UTC by R. Belmont
Capcom updates: [any]
- Fixed some incorrect info about the SF2 bootlegs and got them running better.
- Dumped 8571 MCU from a bootleg Top Secret/Bionic Commando PCB.  All other ROMs on the board matched the 'topsecrt' set.
[src/mame]mame.lst
[src/mame/drivers]bionicc.c fcrash.c
[src/mame/includes]cps1.h
[src/mame/video]cps1.c

trunk/src/mame/includes/cps1.h
r32769r32770
302302   DECLARE_DRIVER_INIT(sf2mdt);
303303   DECLARE_DRIVER_INIT(sf2mdta);
304304   DECLARE_DRIVER_INIT(sf2mdtb);
305   DECLARE_DRIVER_INIT(sf2b);
305306   DECLARE_DRIVER_INIT(slampic);
306307   DECLARE_MACHINE_START(fcrash);
307308   DECLARE_MACHINE_RESET(fcrash);
trunk/src/mame/video/cps1.c
r32769r32770
14431443   {"sf2ee",       CPS_B_18,     mapper_STF29,  0x3c },
14441444   {"sf2ebbl",     CPS_B_17,     mapper_STF29,  0x36, 0, 0, 1  },
14451445   {"sf2ebbl2",    CPS_B_17,     mapper_STF29,  0x36, 0, 0, 1  },
1446   {"sf2ebbl3",    CPS_B_17,     mapper_STF29,  0x36, 0, 0, 1  },
1446   {"sf2ebbl3",    CPS_B_17,     mapper_STF29,  0x36, 0, 0, 1  },
14471447   {"sf2stt",      CPS_B_17,     mapper_STF29,  0x36, 0, 0, 1  },
14481448   {"sf2rk",       CPS_B_17,     mapper_STF29,  0x36, 0, 0, 1  },
14491449   {"sf2ua",       CPS_B_17,     mapper_STF29,  0x36 },
r32769r32770
15251525   {"sf2mdt",      CPS_B_21_DEF, mapper_S9263B, 0x36, 0, 0, 1 },
15261526   {"sf2mdta",     CPS_B_21_DEF, mapper_S9263B, 0x36, 0, 0, 1 },
15271527   {"sf2mdtb",     CPS_B_21_DEF, mapper_S9263B, 0x36, 0, 0, 1 },
1528   {"sf2mdtc",    CPS_B_21_DEF, mapper_S9263B, 0x36, 0, 0, 1 },
1528   {"sf2b",       CPS_B_17,     mapper_STF29, 0x36, 0, 0, 1 },
15291529   {"varth",       CPS_B_04,     mapper_VA63B },   /* CPSB test has been patched out (60=0008) register is also written to, possibly leftover from development */  // wrong, this set uses VA24B, dumped but equations still not added
15301530   {"varthr1",     CPS_B_04,     mapper_VA63B },   /* CPSB test has been patched out (60=0008) register is also written to, possibly leftover from development */  // wrong, this set uses VA24B, dumped but equations still not added
15311531   {"varthu",      CPS_B_04,     mapper_VA63B },   /* CPSB test has been patched out (60=0008) register is also written to, possibly leftover from development */
trunk/src/mame/drivers/fcrash.c
r32769r32770
754754   AM_RANGE(0xff0000, 0xffffff) AM_RAM
755755ADDRESS_MAP_END
756756
757static ADDRESS_MAP_START( sf2b_map, AS_PROGRAM, 16, cps_state )
758   AM_RANGE(0x000000, 0x3fffff) AM_ROM
759   AM_RANGE(0x708100, 0x7081ff) AM_WRITE(sf2mdta_layer_w)
760   AM_RANGE(0x70c000, 0x70c001) AM_READ_PORT("IN1")
761   AM_RANGE(0x70c008, 0x70c009) AM_READ_PORT("IN2")
762   AM_RANGE(0x70c018, 0x70c01f) AM_READ(cps1_hack_dsw_r)
763   AM_RANGE(0x70c106, 0x70c107) AM_WRITE(cawingbl_soundlatch_w)
764   AM_RANGE(0x70d000, 0x70d001) AM_WRITENOP // writes FFFF
765   //AM_RANGE(0x800030, 0x800031) AM_WRITE(cps1_coinctrl_w)
766   AM_RANGE(0x800100, 0x80013f) AM_RAM AM_SHARE("cps_a_regs")  /* CPS-A custom */
767   AM_RANGE(0x800140, 0x80017f) AM_READWRITE(cps1_cps_b_r, cps1_cps_b_w)  AM_SHARE("cps_b_regs")  /* CPS-B custom */
768   AM_RANGE(0x900000, 0x92ffff) AM_RAM_WRITE(cps1_gfxram_w) AM_SHARE("gfxram")
769   AM_RANGE(0xff0000, 0xffffff) AM_RAM
770ADDRESS_MAP_END
771
757772static ADDRESS_MAP_START( sgyxz_map, AS_PROGRAM, 16, cps_state )
758773   AM_RANGE(0x000000, 0x3fffff) AM_ROM
759774   AM_RANGE(0x800030, 0x800031) AM_WRITE(cps1_coinctrl_w)
r32769r32770
16841699   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
16851700MACHINE_CONFIG_END
16861701
1702static MACHINE_CONFIG_DERIVED( sf2b, sf2mdt)
1703   MCFG_CPU_MODIFY("maincpu")
1704   MCFG_CPU_PROGRAM_MAP(sf2b_map)
1705MACHINE_CONFIG_END
1706
16871707static MACHINE_CONFIG_START( knightsb, cps_state )
16881708
16891709   /* basic machine hardware */
r32769r32770
26402660   ROM_RELOAD(            0x10000, 0x20000 )
26412661ROM_END
26422662
2643ROM_START( sf2mdtc )
2663ROM_START( sf2b )
26442664   ROM_REGION( CODE_SIZE, "maincpu", 0 )      /* 68000 code */
26452665   ROM_LOAD16_WORD_SWAP( "pf1-2-sg076.bin",  0x000000, 0x100000, CRC(1d15bc7a) SHA1(834627545f191f39de6beb008c89623f2b88c13b) )
26462666
r32769r32770
27652785   DRIVER_INIT_CALL(cps1);
27662786}
27672787
2788DRIVER_INIT_MEMBER(cps_state, sf2b)
2789{
2790   /* bootleg sprite ram */
2791   m_bootleg_sprite_ram = (UINT16*)m_maincpu->space(AS_PROGRAM).install_ram(0x700000, 0x703fff);
2792   m_maincpu->space(AS_PROGRAM).install_ram(0x704000, 0x707fff, m_bootleg_sprite_ram);
27682793
2794   DRIVER_INIT_CALL(cps1);
2795}
27692796
27702797// ************************************************************************* SLAMPIC
27712798
r32769r32770
28862913GAME( 1992, sf2mdt,    sf2ce,    sf2mdt,    sf2mdt,   cps_state, sf2mdt,   ROT0,   "bootleg", "Street Fighter II': Magic Delta Turbo (bootleg, set 1)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE )   // 920313 - based on (heavily modified) World version
28872914GAME( 1992, sf2mdta,   sf2ce,    sf2mdt,    sf2mdt,   cps_state, sf2mdta,  ROT0,   "bootleg", "Street Fighter II': Magic Delta Turbo (bootleg, set 2)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE )   // 920313 - based on World version
28882915GAME( 1992, sf2mdtb,   sf2ce,    sf2mdt,    sf2mdtb,  cps_state, sf2mdtb,  ROT0,   "bootleg", "Street Fighter II': Magic Delta Turbo (bootleg, set 3)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE )   // 920313 - based on World version
2889GAME( 1992, sf2mdtc,   sf2ce,    sf2mdt,    sf2mdt,   cps_state, sf2mdta,  ROT0,   "bootleg", "Street Fighter II': Magic Delta Turbo (bootleg, set 4)", GAME_NOT_WORKING | GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE )
28902916
2891GAME( 1992, sf2m9,     sf2ce,    sf2m1,    sf2,      cps_state, dinopic,    ROT0,   "bootleg", "Street Fighter II': Champion Edition (M9, bootleg)",  GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE ) // 920313 ETC
2917GAME( 1992, sf2b      sf2,       sf2b,       sf2mdt,   cps_state, sf2b,    ROT0,   "bootleg", "Street Fighter II: The World Warrior (bootleg)",  GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE )   //910204 - based on World version
28922918
2919GAME( 1992, sf2m9,     sf2ce,    sf2m1,     sf2,      cps_state, dinopic,  ROT0,   "bootleg", "Street Fighter II': Champion Edition (M9, bootleg)",  GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE ) // 920313 ETC
2920
28932921GAME( 1993, slampic,   slammast, slampic,   slammast, cps_state, dinopic,  ROT0,   "bootleg", "Saturday Night Slam Masters (bootleg with PIC16c57)", GAME_IMPERFECT_GRAPHICS | GAME_NO_SOUND | GAME_SUPPORTS_SAVE ) // 930713 ETC
28942922
28952923GAME( 1999, sgyxz,     wof,      sgyxz,     sgyxz,    cps_state, cps1,     ROT0,   "bootleg (All-In Electronic)", "Warriors of Fate ('sgyxz' bootleg)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE )   // 921005 - Sangokushi 2
trunk/src/mame/drivers/bionicc.c
r32769r32770
532532   ROM_LOAD( "ts_01.4e",    0x00000, 0x8000, CRC(8ea07917) SHA1(e9ace70d89482fc3669860450a41aacacbee9083) )
533533
534534   ROM_REGION( 0x1000, "mcu", 0 )  /* i8751 microcontroller */
535   ROM_LOAD( "c8751h-88",     0x0000, 0x1000, NO_DUMP )
535   //ROM_LOAD( "c8751h-88",     0x0000, 0x1000, NO_DUMP )
536   ROM_LOAD( "d8751h.bin",     0x0000, 0x1000, CRC(3ed7f0be) SHA1(db9e972065c8e60b5d74762dc3424271ea9524cb) )
536537
537538   ROM_REGION( 0x08000, "gfx1", 0 )
538539   ROM_LOAD( "ts_08.8l",    0x00000, 0x8000, CRC(96ad379e) SHA1(accd3a560b259c186bc28cdc004ed8de0b12f9d5) )    /* VIDEORAM (text layer) tiles */
trunk/src/mame/mame.lst
r32769r32770
32063206sf2mdt          // bootleg
32073207sf2mdta         // bootleg
32083208sf2mdtb         // bootleg
3209sf2mdtc         // bootleg
3209sf2b           // bootleg
32103210cworld2j        // 11/06/1992 (c) 1992 (Japan)
32113211varth           // 14/07/1992 (c) 1992 (World)
32123212varthr1         // 12/06/1992 (c) 1992 (World)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team