trunk/src/mame/drivers/peyper.c
| r18352 | r18353 | |
| 555 | 555 | /-------------------------------------------------------------------*/ |
| 556 | 556 | |
| 557 | 557 | /*------------------------------------------------------------------- |
| 558 | / Odin (1985) |
| 559 | /-------------------------------------------------------------------*/ |
| 560 | ROM_START(odin) |
| 561 | ROM_REGION(0x10000, "maincpu", 0) |
| 562 | ROM_LOAD("odin_a.bin", 0x0000, 0x2000, CRC(ac3a7770) SHA1(2409629d3adbae0d7e6e5f9fe6f137c1e5a1bb86)) |
| 563 | ROM_LOAD("odin_b.bin", 0x2000, 0x2000, CRC(46744695) SHA1(fdbd8a93b3e4a9697e77e7d381759829b86fe28b)) |
| 564 | ROM_END |
| 565 | |
| 566 | /*------------------------------------------------------------------- |
| 558 | 567 | / Odin De Luxe (1985) |
| 559 | 568 | /-------------------------------------------------------------------*/ |
| 560 | 569 | ROM_START(odin_dlx) |
| r18352 | r18353 | |
| 575 | 584 | /*------------------------------------------------------------------- |
| 576 | 585 | / Gamatron (1986) |
| 577 | 586 | /-------------------------------------------------------------------*/ |
| 587 | ROM_START(gamatros) |
| 588 | ROM_REGION(0x10000, "maincpu", 0) |
| 589 | ROM_LOAD("gama_a.bin", 0x0000, 0x2000, CRC(1dc2841c) SHA1(27c6a07b1f8bd5e73b425e7dbdcfb1d5233c18b2)) |
| 590 | ROM_LOAD("gama_b.bin", 0x2000, 0x2000, CRC(56125890) SHA1(8b30a2282df264d798df1b031ecade999d135f81)) |
| 591 | ROM_END |
| 578 | 592 | |
| 579 | 593 | /*------------------------------------------------------------------- |
| 580 | 594 | / Pole Position (1987) |
| r18352 | r18353 | |
| 596 | 610 | ROM_LOAD("sw3.bin", 0x4000, 0x2000, CRC(aee516d9) SHA1(b50e54d4d5db59e3fb71fb000f9bc5e34ff7de9c)) |
| 597 | 611 | ROM_END |
| 598 | 612 | |
| 613 | ROM_START(sonstwr2) |
| 614 | ROM_REGION(0x10000, "maincpu", 0) |
| 615 | ROM_LOAD("stw1i.bin", 0x0000, 0x2000, CRC(416e2a0c) SHA1(74ca550ee9eb83d9762ffab0f085dffae569d4a9)) |
| 616 | ROM_LOAD("stw2i.bin", 0x2000, 0x2000, CRC(ccbbec46) SHA1(4fd0e48916e8761a7e70300d3ede166f5f04f8ae)) |
| 617 | ROM_LOAD("sw3.bin", 0x4000, 0x2000, CRC(aee516d9) SHA1(b50e54d4d5db59e3fb71fb000f9bc5e34ff7de9c)) |
| 618 | ROM_END |
| 599 | 619 | /*------------------------------------------------------------------- |
| 600 | 620 | / Hang-On (1988) |
| 601 | 621 | /-------------------------------------------------------------------*/ |
| r18352 | r18353 | |
| 612 | 632 | ROM_END |
| 613 | 633 | |
| 614 | 634 | /*------------------------------------------------------------------- |
| 635 | / Nemesis (1986) |
| 636 | /-------------------------------------------------------------------*/ |
| 637 | ROM_START(nemesisp) |
| 638 | ROM_REGION(0x10000, "maincpu", 0) |
| 639 | ROM_LOAD("nemesisa.bin", 0x0000, 0x2000, CRC(56f13350) SHA1(30907c362f88b48d634e8aaa1e1161852886645c)) |
| 640 | ROM_LOAD("nemesisb.bin", 0x2000, 0x2000, CRC(a8f3e6c7) SHA1(c25b2271c4de6f4b57c3c850d28a0878ea081c26)) |
| 641 | ROM_LOAD("memoriac.bin", 0x4000, 0x2000, CRC(468f16f0) SHA1(66ce0464d82331cfc0ac1f6fbd871066e4e57262)) |
| 642 | ROM_END |
| 643 | |
| 644 | /*------------------------------------------------------------------- |
| 615 | 645 | / Wolf Man (1987) |
| 616 | 646 | /-------------------------------------------------------------------*/ |
| 617 | 647 | ROM_START(wolfman) |
| r18352 | r18353 | |
| 622 | 652 | ROM_END |
| 623 | 653 | |
| 624 | 654 | |
| 655 | GAME( 1985, odin, 0, peyper, odin_dlx, peyper_state, peyper, ROT0, "Sonic", "Odin", GAME_IS_SKELETON_MECHANICAL) |
| 625 | 656 | GAME( 1985, odin_dlx, 0, peyper, odin_dlx, peyper_state, peyper, ROT0, "Sonic", "Odin De Luxe", GAME_IS_SKELETON_MECHANICAL) |
| 626 | 657 | GAME( 1986, solarwap, 0, peyper, solarwap, peyper_state, peyper, ROT0, "Sonic", "Solar Wars (Sonic)", GAME_IS_SKELETON_MECHANICAL) |
| 658 | GAME( 1986, gamatros, 0, peyper, solarwap, peyper_state, peyper, ROT0, "Sonic", "Gamatron (Sonic)", GAME_IS_SKELETON_MECHANICAL) |
| 627 | 659 | GAME( 1987, poleposn, 0, peyper, poleposn, peyper_state, peyper, ROT0, "Sonic", "Pole Position (Sonic)", GAME_IS_SKELETON_MECHANICAL) |
| 628 | 660 | GAME( 1987, sonstwar, 0, peyper, sonstwar, peyper_state, peyper, ROT0, "Sonic", "Star Wars (Sonic)", GAME_IS_SKELETON_MECHANICAL) |
| 661 | GAME( 1987, sonstwr2, sonstwar, peyper, sonstwar, peyper_state, peyper, ROT0, "Sonic", "Star Wars (Sonic, alternate set)", GAME_IS_SKELETON_MECHANICAL) |
| 629 | 662 | |
| 630 | 663 | GAME( 1987, wolfman, 0, peyper, wolfman, peyper_state, peyper, ROT0, "Peyper", "Wolf Man", GAME_IS_SKELETON_MECHANICAL) |
| 664 | GAME( 1986, nemesisp, 0, peyper, wolfman, peyper_state, peyper, ROT0, "Peyper", "Nemesis", GAME_IS_SKELETON_MECHANICAL) |
| 631 | 665 | GAME( 1987, odisea, 0, peyper, odisea, peyper_state, peyper, ROT0, "Peyper", "Odisea Paris-Dakar", GAME_IS_SKELETON_MECHANICAL) |
trunk/src/mame/drivers/spinb.c
| r18352 | r18353 | |
| 128 | 128 | /*------------------------------------------------------------------- |
| 129 | 129 | / Verne's World (1996) |
| 130 | 130 | /-------------------------------------------------------------------*/ |
| 131 | ROM_START(vrnwrld) |
| 132 | ROM_REGION(0x10000, "maincpu", 0) |
| 133 | ROM_LOAD("vwcpu0.rom", 0x0000, 0x2000, CRC(89c980e7) SHA1(09eeed0232255875cf119d59143d839ff40e30dd)) |
| 134 | ROM_LOAD("vwcpu1.rom", 0x2000, 0x2000, CRC(a4db4e64) SHA1(fc55781295fc723741de24ad60311b7e33551830)) |
| 135 | ROM_REGION(0x114000, "cpu2", 0) |
| 136 | ROM_LOAD("vwdmd0.rom", 0x00000, 0x10000, CRC(40600060) SHA1(7ad619bcb5e5e50325360f4e946b5bfa072caead)) |
| 137 | ROM_LOAD("vwdmd1.rom", 0x14000, 0x20000, CRC(de4a1060) SHA1(6b848dfd8aafdbcf7e1593f98bd1c3d69306aa11)) |
| 138 | ROM_LOAD("vwdmd2.rom", 0x94000, 0x20000, CRC(29fc8da7) SHA1(2704f14a3338a63abda3bcbc56e9f984a679eb38)) |
| 139 | ROM_REGION(0x10000, "cpu3", 0) |
| 140 | ROM_LOAD("vws2ic9.rom", 0x00000, 0x2000, CRC(ab8cb4c5) SHA1(92a702c11e2cef703992244529ba86079d5ab9b0)) |
| 141 | ROM_REGION(0x180000, "user1", 0) |
| 142 | ROM_LOAD("vws3ic15.rom", 0x0000, 0x80000, CRC(d62c9443) SHA1(7c6b8662d88ba6592da8b83af11087647105e8dd)) |
| 143 | ROM_REGION(0x10000, "cpu4", 0) |
| 144 | ROM_LOAD("vws4ic30.rom", 0x00000, 0x2000, CRC(ecd18a19) SHA1(558e687e0429d31fafe8db05954d9a8ad90d6aeb)) |
| 145 | ROM_REGION(0x180000, "user2", 0) |
| 146 | ROM_LOAD("vws5ic25.rom", 0x0000, 0x80000, CRC(56d349f0) SHA1(e71d2d03c3e978c552e272de8850cc265255fbd1)) |
| 147 | ROM_LOAD("vws6ic26.rom", 0x80000, 0x80000, CRC(bee399c1) SHA1(b2c6e4830641ed32b9643dc8c1fa08a2da5a7e9b)) |
| 148 | ROM_LOAD("vws7ic27.rom", 0x100000, 0x80000, CRC(7335b29c) SHA1(4de6de09f069feecbad2e5ef50032e8d381ff9b1)) |
| 149 | ROM_END |
| 131 | 150 | |
| 132 | 151 | GAME(1993, bushido, 0, spinb, spinb, spinb_state, spinb, ROT0, "Inder/Spinball", "Bushido (set 1)", GAME_IS_SKELETON_MECHANICAL) |
| 133 | 152 | GAME(1993, bushidoa, bushido, spinb, spinb, spinb_state, spinb, ROT0, "Inder/Spinball", "Bushido (set 2)", GAME_IS_SKELETON_MECHANICAL) |
| 134 | 153 | GAME(1996, jolypark, 0, spinb, spinb, spinb_state, spinb, ROT0, "Spinball", "Jolly Park", GAME_IS_SKELETON_MECHANICAL) |
| 135 | 154 | GAME(1995, mach2, 0, spinb, spinb, spinb_state, spinb, ROT0, "Spinball", "Mach 2", GAME_IS_SKELETON_MECHANICAL) |
| 155 | GAME(1996, vrnwrld, 0, spinb, spinb, spinb_state, spinb, ROT0, "Spinball", "Verne's World", GAME_IS_SKELETON_MECHANICAL) |
trunk/src/mame/drivers/de_2.c
| r18352 | r18353 | |
| 127 | 127 | ROM_RELOAD( 0x30000, 0x10000) |
| 128 | 128 | ROM_END |
| 129 | 129 | |
| 130 | ROM_START(ssvc_b26) |
| 131 | ROM_REGION(0x10000, "maincpu", 0) |
| 132 | ROM_LOAD("ssvc2-6.b5", 0x0000, 0x8000, CRC(e5eab8cd) SHA1(63cb678084d4fb2131ba64ed9de1294830057960)) |
| 133 | ROM_LOAD("ssvc2-6.c5", 0x8000, 0x8000, CRC(171b97ae) SHA1(9d678b7b91a5d50ea3cf4f2352094c2355f917b2)) |
| 134 | ROM_REGION(0x10000, "cpu2", 0) |
| 135 | ROM_LOAD("sssndf7b.rom", 0x8000, 0x8000, CRC(4bd6b16a) SHA1(b9438a16cd35820628fe6eb82287b2c39fe4b1c6)) |
| 136 | ROM_REGION(0x40000, "sound1", 0) |
| 137 | ROM_LOAD("ssv1f6.rom", 0x00000, 0x10000, CRC(ccbc72f8) SHA1(c5c13fb8d05d7fb4005636655073d88b4d12d65e)) |
| 138 | ROM_RELOAD( 0x10000, 0x10000) |
| 139 | ROM_LOAD("ssv2f4.rom", 0x20000, 0x10000, CRC(53832d16) SHA1(2227eb784e0221f1bf2bdf7ea48ecd122433f1ea)) |
| 140 | ROM_RELOAD( 0x30000, 0x10000) |
| 141 | ROM_END |
| 142 | |
| 130 | 143 | /*-------------------------------------------------------------------------- |
| 131 | 144 | / Time Machine - CPU Rev 2 /Alpha Type 2 16/32K Roms - 32/64K Sound Roms |
| 132 | 145 | /--------------------------------------------------------------------------*/ |
| r18352 | r18353 | |
| 177 | 190 | GAME(1989, play_a24, 0, de_2, de_2, de_2_state, de_2, ROT0, "Data East", "Playboy 35th Anniversary (2.4)", GAME_IS_SKELETON_MECHANICAL) |
| 178 | 191 | GAME(1989, robo_a34, 0, de_2, de_2, de_2_state, de_2, ROT0, "Data East", "Robocop (3.4)", GAME_IS_SKELETON_MECHANICAL) |
| 179 | 192 | GAME(1988, ssvc_a26, 0, de_2, de_2, de_2_state, de_2, ROT0, "Data East", "Secret Service (2.6)", GAME_IS_SKELETON_MECHANICAL) |
| 193 | GAME(1988, ssvc_b26, ssvc_a26, de_2, de_2, de_2_state, de_2, ROT0, "Data East", "Secret Service (2.6 alternate sound)", GAME_IS_SKELETON_MECHANICAL) |
| 180 | 194 | GAME(1988, tmac_a24, 0, de_2, de_2, de_2_state, de_2, ROT0, "Data East", "Time Machine (2.4)", GAME_IS_SKELETON_MECHANICAL) |
| 181 | 195 | GAME(1988, tmac_a18, tmac_a24, de_2, de_2, de_2_state, de_2, ROT0, "Data East", "Time Machine (1.8)", GAME_IS_SKELETON_MECHANICAL) |
| 182 | 196 | GAME(1988, torp_e21, 0, de_2, de_2, de_2_state, de_2, ROT0, "Data East", "Torpedo Alley (2.1, Europe)", GAME_IS_SKELETON_MECHANICAL) |