Previous 199869 Revisions Next

r19865 Thursday 27th December, 2012 at 19:18:12 UTC by hap
New clone added
---------------
Bump 'n' Jump (original Data East USA) [Kevin Eshbach]
[src/mame]mame.lst
[src/mame/drivers]btime.c spacefb.c

trunk/src/mame/mame.lst
r19864r19865
53415341cookrace      // bootleg
53425342wtennis         // bootleg 1982
53435343brubber         // (c) 1982
5344bnj            // (c) 1982 + Midway
5344bnj            // (c) 1982
5345bnjm         // (c) 1982 + Midway
53455346caractn         // bootleg
53465347disco         // (c) 1982
53475348discof         // (c) 1982
trunk/src/mame/drivers/spacefb.c
r19864r19865
605605GAME( 1980, spacebrd, spacefb, spacefb, spacefb, driver_device,  0, ROT270, "bootleg (Karateco)", "Space Bird (bootleg)", GAME_IMPERFECT_COLORS | GAME_IMPERFECT_SOUND )
606606GAME( 1980, spacefbb, spacefb, spacefb, spacefb, driver_device,  0, ROT270, "bootleg", "Space Firebird (bootleg)", GAME_IMPERFECT_COLORS | GAME_IMPERFECT_SOUND )
607607GAME( 1980, spacedem, spacefb, spacefb, spacedem, driver_device, 0, ROT270, "Nintendo (Fortrek license)", "Space Demon", GAME_IMPERFECT_COLORS | GAME_IMPERFECT_SOUND )
608GAME( 1980, starwarr, spacefb, spacefb, spacefb, driver_device,  0, ROT270, "Nintendo (Potomac Mortgage)", "Star Warrior", GAME_IMPERFECT_COLORS | GAME_IMPERFECT_SOUND )
608GAME( 1980, starwarr, spacefb, spacefb, spacefb, driver_device,  0, ROT270, "bootleg? (Potomac Mortgage)", "Star Warrior", GAME_IMPERFECT_COLORS | GAME_IMPERFECT_SOUND )
trunk/src/mame/drivers/btime.c
r19864r19865
12391239
12401240MACHINE_START_MEMBER(btime_state,btime)
12411241{
1242
12431242   m_maincpu = machine().device<cpu_device>("maincpu");
12441243   m_audiocpu = machine().device<cpu_device>("audiocpu");
12451244
r19864r19865
12531252
12541253MACHINE_START_MEMBER(btime_state,mmonkey)
12551254{
1256
12571255   MACHINE_START_CALL_MEMBER(btime);
12581256
12591257   save_item(NAME(m_protection_command));
r19864r19865
12641262
12651263MACHINE_RESET_MEMBER(btime_state,btime)
12661264{
1267
12681265   /* by default, the audio NMI is disabled, except for bootlegs which don't use the enable */
12691266   m_audio_nmi_enabled = (m_audio_nmi_enable_type == AUDIO_ENABLE_NONE);
12701267
r19864r19865
12871284
12881285MACHINE_RESET_MEMBER(btime_state,mmonkey)
12891286{
1290
12911287   MACHINE_RESET_CALL_MEMBER(lnc);
12921288
12931289   m_protection_command = 0;
r19864r19865
17471743   ROM_LOAD( "bnj10f.bin",   0x1000, 0x1000, CRC(a9ffacb4) SHA1(49d5f9c0b695f474197fbb761bacc065b6b5808a) )
17481744ROM_END
17491745
1746
1747/*
1748    Bump 'n Jump (Data East USA)
1749
1750    Sound Board:
1751        CIS-1
1752        DATA EAST-0136
1753
1754    Video Board:
1755        DSP-12
1756        DE-0135-2
1757*/
1758
17501759ROM_START( bnj )
1760    ROM_REGION( 0x10000, "maincpu", 0 )
1761   ROM_LOAD( "ad08.12b",     0xa000, 0x2000, CRC(8d649bd5) SHA1(83105718c2d18ef75ca18ae92b34545cb939bc02) )
1762   ROM_LOAD( "ad07.12c",     0xc000, 0x2000, CRC(7a27f5f4) SHA1(f62d752bb7a995e120ed4d642793c543f0ef13ca) )
1763   ROM_LOAD( "ad06.12d",     0xe000, 0x2000, CRC(f855a2d2) SHA1(f231ed008537aeeeacbec64f485e9a96ab3441e1) )
1764
1765   ROM_REGION( 0x10000, "audiocpu", 0 )
1766   ROM_LOAD( "ad05.6c",      0xe000, 0x1000, CRC(8c02f662) SHA1(1279d564e65fd3ccac25b1f9fbb40d910de2b544) )
1767
1768   ROM_REGION( 0x6000, "gfx1", 0 )
1769   ROM_LOAD( "ad00.4e",      0x0000, 0x2000, CRC(b864d082) SHA1(cacf71fa6c0f7121d077381a0ff6222f534295ab) )
1770   ROM_LOAD( "ad01.4f",      0x2000, 0x2000, CRC(6c31d77a) SHA1(5e52554f594f569527af4768d244cc40a7b4460a) )
1771   ROM_LOAD( "ad02.4h",      0x4000, 0x2000, CRC(5824e6fb) SHA1(e98f0eb476b8f033f5cc70a6e503afc4e651fd45) )
1772
1773   ROM_REGION( 0x2000, "gfx2", 0 )
1774   ROM_LOAD( "ad03.10e",     0x0000, 0x1000, CRC(f4e9eb49) SHA1(b356512d2ebd4e2005e76496b434e5ecebadb251) )
1775   ROM_LOAD( "ad04.10f",     0x1000, 0x1000, CRC(a9ffacb4) SHA1(49d5f9c0b695f474197fbb761bacc065b6b5808a) )
1776
1777   ROM_REGION( 0x002d, "plds", 0 )
1778   ROM_LOAD( "pb-5.10k.bin", 0x0000, 0x002c, CRC(dc72a65f) SHA1(d61c149d4df93a2074debf7c5e46557c6b06d10d) ) /* PAL10L8 */
1779   ROM_LOAD( "pb-4.2d.bin",  0x002c, 0x0001, NO_DUMP ) /* PAL16R4CN - same as Car Action? */
1780ROM_END
1781
1782ROM_START( bnjm )
17511783   ROM_REGION( 0x10000, "maincpu", 0 )
17521784   ROM_LOAD( "bnj12b.bin",   0xa000, 0x2000, CRC(ba3e3801) SHA1(56284076d938c33c1492a07281b936681eb09808) )
17531785   ROM_LOAD( "bnj12c.bin",   0xc000, 0x2000, CRC(fb3a2cdd) SHA1(4a964389cc8035b9264d4cb133eb6d3826e74b95) )
r19864r19865
19782010GAME( 1982, wtennis,  0,       wtennis,  wtennis, btime_state,  wtennis,  ROT270, "bootleg", "World Tennis", GAME_SUPPORTS_SAVE )
19792011GAME( 1982, mmonkey,  0,       mmonkey,  mmonkey, btime_state,  lnc,      ROT270, "Technos Japan / Roller Tron", "Minky Monkey", GAME_SUPPORTS_SAVE )
19802012GAME( 1982, brubber,  0,       bnj,      bnj, btime_state,      bnj,      ROT270, "Data East", "Burnin' Rubber", GAME_SUPPORTS_SAVE )
1981GAME( 1982, bnj,      brubber, bnj,      bnj, btime_state,      bnj,      ROT270, "Data East USA (Bally Midway license)", "Bump 'n' Jump", GAME_SUPPORTS_SAVE )
2013GAME( 1982, bnj,      brubber, bnj,      bnj, btime_state,      bnj,      ROT270, "Data East USA", "Bump 'n' Jump", GAME_SUPPORTS_SAVE )
2014GAME( 1982, bnjm,     brubber, bnj,      bnj, btime_state,      bnj,      ROT270, "Data East USA (Bally Midway license)", "Bump 'n' Jump (Midway)", GAME_SUPPORTS_SAVE )
19822015GAME( 1982, caractn,  brubber, bnj,      bnj, btime_state,      bnj,      ROT270, "bootleg", "Car Action", GAME_SUPPORTS_SAVE )
19832016GAME( 1982, zoar,     0,       zoar,     zoar, btime_state,     zoar,     ROT270, "Data East USA", "Zoar", GAME_SUPPORTS_SAVE )
19842017GAME( 1982, disco,    0,       disco,    disco, btime_state,    disco,    ROT270, "Data East", "Disco No.1", GAME_SUPPORTS_SAVE )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team