From 39029d7dc7f690578828ef508aa233578bc60208 Mon Sep 17 00:00:00 2001 From: Robbbert Date: Mon, 14 Mar 2022 04:50:26 +1100 Subject: [PATCH] gts3,gts3a: added sound to most remaining games. --- src/mame/audio/gottlieb.cpp | 60 +++ src/mame/audio/gottlieb.h | 27 +- src/mame/drivers/gts1.cpp | 46 ++- src/mame/drivers/gts3.cpp | 130 ++++--- src/mame/drivers/gts3a.cpp | 739 +++++++++++++++++------------------- src/mame/drivers/gts80.cpp | 1 + src/mame/drivers/gts80a.cpp | 5 + 7 files changed, 542 insertions(+), 466 deletions(-) diff --git a/src/mame/audio/gottlieb.cpp b/src/mame/audio/gottlieb.cpp index f7553ae8009..7008d27f2c3 100644 --- a/src/mame/audio/gottlieb.cpp +++ b/src/mame/audio/gottlieb.cpp @@ -34,6 +34,7 @@ DEFINE_DEVICE_TYPE(GOTTLIEB_SOUND_PIN3, gottlieb_sound_p3_device, DEFINE_DEVICE_TYPE(GOTTLIEB_SOUND_PIN4, gottlieb_sound_p4_device, "gotsndp4", "Gottlieb Sound pin. 4") DEFINE_DEVICE_TYPE(GOTTLIEB_SOUND_PIN5, gottlieb_sound_p5_device, "gotsndp5", "Gottlieb Sound pin. 5") DEFINE_DEVICE_TYPE(GOTTLIEB_SOUND_PIN6, gottlieb_sound_p6_device, "gotsndp6", "Gottlieb Sound pin. 6") +DEFINE_DEVICE_TYPE(GOTTLIEB_SOUND_PIN7, gottlieb_sound_p7_device, "gotsndp7", "Gottlieb Sound pin. 7") DEFINE_DEVICE_TYPE(GOTTLIEB_SOUND_REV1, gottlieb_sound_r1_device, "gotsndr1", "Gottlieb Sound rev. 1") DEFINE_DEVICE_TYPE(GOTTLIEB_SOUND_REV1_VOTRAX, gottlieb_sound_r1_with_votrax_device, "gotsndr1vt", "Gottlieb Sound rev. 1 with Votrax") DEFINE_DEVICE_TYPE(GOTTLIEB_SOUND_REV2, gottlieb_sound_r2_device, "gotsndr2", "Gottlieb Sound rev. 2") @@ -1126,3 +1127,62 @@ void gottlieb_sound_p6_device::device_start() { gottlieb_sound_p5_device::device_start(); } + + +//************************************************************************** +// PIN7 SOUND BOARD: same as p5 + MSM6295 +//************************************************************************** + +//------------------------------------------------- +// gottlieb_sound_p7_device - constructor +//------------------------------------------------- + +gottlieb_sound_p7_device::gottlieb_sound_p7_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) + : gottlieb_sound_p5_device(mconfig, GOTTLIEB_SOUND_PIN7, tag, owner, clock) + , m_oki(*this, "oki") +{ +} + +void gottlieb_sound_p7_device::y_ctrl_w(uint8_t data) +{ + gottlieb_sound_p4_device::speech_ctrl_w(data); + + if (BIT(m_speech_control, 5)) + m_msm_latch2 = m_msm_latch1; + if (!BIT(m_msm_latch2, 2)) + m_oki->write(m_msm_latch1); + m_oki->set_pin7(BIT(m_msm_latch2, 4)); +} + +void gottlieb_sound_p7_device::y_latch_w(uint8_t data) +{ + m_msm_latch1 = data; + if (!BIT(m_msm_latch2, 2)) + m_oki->write(m_msm_latch1); +} + +void gottlieb_sound_p7_device::p7_ymap(address_map &map) +{ + gottlieb_sound_p5_device::p5_ymap(map); + map.unmap_value_high(); + map(0x7800, 0x7800).mirror(0x07ff).w(FUNC(gottlieb_sound_p7_device::y_latch_w)); + map(0xa000, 0xa000).mirror(0x1fff).w(FUNC(gottlieb_sound_p7_device::y_ctrl_w)); +} + +//------------------------------------------------- +// device_add_mconfig - add device configuration +//------------------------------------------------- + +void gottlieb_sound_p7_device::device_add_mconfig(machine_config &config) +{ + gottlieb_sound_p5_device::device_add_mconfig(config); + m_ycpu->set_addrmap(AS_PROGRAM, &gottlieb_sound_p7_device::p7_ymap); + + OKIM6295(config, m_oki, 4_MHz_XTAL/4, okim6295_device::PIN7_LOW); + m_oki->add_route(ALL_OUTPUTS, *this, 1.0); +} + +void gottlieb_sound_p7_device::device_start() +{ + gottlieb_sound_p5_device::device_start(); +} diff --git a/src/mame/audio/gottlieb.h b/src/mame/audio/gottlieb.h index 79c78b1b395..aaab07428f7 100644 --- a/src/mame/audio/gottlieb.h +++ b/src/mame/audio/gottlieb.h @@ -11,6 +11,7 @@ #include "machine/6532riot.h" #include "sound/ay8910.h" #include "sound/dac.h" +#include "sound/okim6295.h" #include "sound/sp0250.h" #include "sound/votrax.h" #include "sound/ymopm.h" @@ -25,6 +26,7 @@ DECLARE_DEVICE_TYPE(GOTTLIEB_SOUND_PIN3, gottlieb_sound_p3_device) DECLARE_DEVICE_TYPE(GOTTLIEB_SOUND_PIN4, gottlieb_sound_p4_device) DECLARE_DEVICE_TYPE(GOTTLIEB_SOUND_PIN5, gottlieb_sound_p5_device) DECLARE_DEVICE_TYPE(GOTTLIEB_SOUND_PIN6, gottlieb_sound_p6_device) +DECLARE_DEVICE_TYPE(GOTTLIEB_SOUND_PIN7, gottlieb_sound_p7_device) DECLARE_DEVICE_TYPE(GOTTLIEB_SOUND_REV1, gottlieb_sound_r1_device) DECLARE_DEVICE_TYPE(GOTTLIEB_SOUND_REV1_VOTRAX, gottlieb_sound_r1_with_votrax_device) DECLARE_DEVICE_TYPE(GOTTLIEB_SOUND_REV2, gottlieb_sound_r2_device) @@ -293,7 +295,6 @@ protected: virtual void device_add_mconfig(machine_config &config) override; virtual void device_start() override; -private: void p5_ymap(address_map &map); optional_device m_ym2151; }; @@ -318,3 +319,27 @@ private: uint8_t d2_data_r(); }; + +// ======================> gottlieb_sound_p7_device + +// same as p5 plus MSM6295. +class gottlieb_sound_p7_device : public gottlieb_sound_p5_device +{ +public: + // construction/destruction + gottlieb_sound_p7_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); + +protected: + // device-level overrides + virtual void device_add_mconfig(machine_config &config) override; + virtual void device_start() override; + +private: + void p7_ymap(address_map &map); + void y_ctrl_w(u8); + void y_latch_w(u8); + uint8_t m_msm_latch1; + uint8_t m_msm_latch2; + optional_device m_oki; +}; + diff --git a/src/mame/drivers/gts1.cpp b/src/mame/drivers/gts1.cpp index 4b31590e839..883a3c2724d 100644 --- a/src/mame/drivers/gts1.cpp +++ b/src/mame/drivers/gts1.cpp @@ -30,24 +30,34 @@ Of the solid-state games, Asteroid Annie is single-player - the others are 4-pla Game List: (the ROM letter is stamped onto the personality prom) -Number ROM Name -409 A Cleopatra -412SS B Sinbad -417SS C Joker Poker -419SS D Dragon -421SS E Solar Ride -422SS F Countdown -424SS G Close Encounters of the third kind -425SS H Charlie's Angels -427SS I Pinball Pool -429SS J Totem -433SS K The Incredible Hulk -435 L Genie -437 N Buck Rogers -438 P Torch -440 R Roller Disco -442 S Asteroid Annie and the Aliens - T Test Prom +Game NUM ROM +------------------------------------------------ +Cleopatra 409 A +Sinbad 412SS B +Joker Poker 417SS C +Dragon 419SS D +Solar Ride 421SS E +Countdown 422SS F +Close Encounters of the third kind 424SS G +Charlie's Angels 425SS H +Pinball Pool 427SS I +Totem 429SS J +The Incredible Hulk 433SS K +Genie 435 L +Buck Rogers 437 N +Torch 438 P +Roller Disco 440 R +Asteroid Annie and the Aliens 442 S +Test Prom T +**** Other Manufacturer **** +Hell's Queen +Sky Warrior +Tiger Woman +L'Hexagone +Sahara Love +Movie +Jungle Queen + The personality prom is programmed in PGOL (pinball-game oriented language). diff --git a/src/mame/drivers/gts3.cpp b/src/mame/drivers/gts3.cpp index c7c7e962a79..bf2a159701f 100644 --- a/src/mame/drivers/gts3.cpp +++ b/src/mame/drivers/gts3.cpp @@ -50,11 +50,10 @@ Caribbean Cruise C102 1, enter, hold \ and right until message goes \ Status: -- All games are playable +- All games (except tt_game) are playable - Various sounds are missing in some games, usually because the cpu concerned runs into the weeds. ToDo: -- Sound - Display flickers a bit *****************************************************************************************************/ @@ -80,6 +79,7 @@ public: , m_u4(*this, "u4") , m_u5(*this, "u5") , m_p5_sound(*this, "p5sound") + , m_p7_sound(*this, "p7sound") , m_io_keyboard(*this, "X%d", 0U) , m_digits(*this, "digit%d", 0U) , m_io_outputs(*this, "out%d", 0U) @@ -87,6 +87,7 @@ public: void p0(machine_config &config); // no sound card assigned yet void p5(machine_config &config); // p5 sound card + void p7(machine_config &config); // p7 sound card DECLARE_INPUT_CHANGED_MEMBER(test_inp); private: @@ -95,7 +96,6 @@ private: u8 u4b_r(); void lampret_w(u8); void solenoid_w(offs_t, u8); - void u4b_w(u8 data); void u5a_w(u8 data); DECLARE_WRITE_LINE_MEMBER(nmi_w); @@ -112,6 +112,7 @@ private: required_device m_u4; required_device m_u5; optional_device m_p5_sound; + optional_device m_p7_sound; required_ioport_array<12> m_io_keyboard; output_finder<40> m_digits; output_finder<128> m_io_outputs; // 32 solenoids + 96 lamps @@ -312,6 +313,9 @@ void gts3_state::u5a_w(u8 data) { if (m_p5_sound) m_p5_sound->write(data); + else + if (m_p7_sound) + m_p7_sound->write(data); } void gts3_state::machine_start() @@ -374,10 +378,16 @@ void gts3_state::p0(machine_config &config) void gts3_state::p5(machine_config &config) { p0(config); - GOTTLIEB_SOUND_PIN5(config, m_p5_sound, 0).add_route(ALL_OUTPUTS, "mono", 1.00); } +void gts3_state::p7(machine_config &config) +{ + p0(config); + GOTTLIEB_SOUND_PIN7(config, m_p7_sound, 0).add_route(ALL_OUTPUTS, "mono", 1.00); +} + + /*------------------------------------------------------------------- / Bell Ringer (N103) Redemption Machine /-------------------------------------------------------------------*/ @@ -399,20 +409,20 @@ ROM_START(cactjack) ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(5661ab06) SHA1(12b7066110feab0aef36ff7bdc74690fc8da4ed3)) - ROM_REGION(0x10000, "cpu3", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(78c099e1) SHA1(953111237fdc3e20562d823eb2b6430e5a4afe4d)) - ROM_REGION(0x100000, "sound1", ROMREGION_ERASEFF) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x20000, CRC(c890475f) SHA1(1cf6ed0dbd003a76a5cf889f62b489c0a62e9d25)) - ROM_RELOAD(0x00000+0x40000, 0x20000) - ROM_RELOAD(0x00000+0x80000, 0x20000) - ROM_RELOAD(0x00000+0xc0000, 0x20000) + ROM_RELOAD(0x40000, 0x20000) + ROM_RELOAD(0x80000, 0x20000) + ROM_RELOAD(0xc0000, 0x20000) ROM_LOAD("arom2.bin", 0x20000, 0x20000, CRC(aba8fd98) SHA1(81b8af4d2d8e40b5b44f114c095371afe5539549)) - ROM_RELOAD(0x20000+0x40000, 0x20000) - ROM_RELOAD(0x20000+0x80000, 0x20000) - ROM_RELOAD(0x20000+0xc0000, 0x20000) + ROM_RELOAD(0x60000, 0x20000) + ROM_RELOAD(0xa0000, 0x20000) + ROM_RELOAD(0xe0000, 0x20000) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(4554ed0d) SHA1(df0a9225f961e0ee876c3e63ad54c6e4eac080ae)) ROM_END @@ -438,14 +448,14 @@ ROM_START(ccruise) ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(668b5757) SHA1(8ff955e8598ffdc68eab7fd69c6a67c4eed13f0f)) - ROM_REGION(0x10000, "cpu3", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(4480257e) SHA1(50b93d4496816ef7cdf007ac75c72c6aaa956aba)) - ROM_REGION(0x100000, "sound1", ROMREGION_ERASEFF) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(f8cec60c) SHA1(e52f3a5890a3bb5eb6c932c3d0ed471ed76909c9)) ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(6e424e53) SHA1(90a9bf5ce84680972f9d12eb386215494c584b9b)) ROM_END @@ -456,20 +466,20 @@ ROM_START(clas1812) ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(564349bf) SHA1(458eb2ece924a20d309dce7117c94e75b4a21fd7)) - ROM_REGION(0x10000, "cpu3", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(3863a9df) SHA1(1759abbfcb127a6909f70845f41daf3ac8e80cef)) - ROM_REGION(0x100000, "sound1", ROMREGION_ERASEFF) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x20000, CRC(357b0069) SHA1(870b0b84c6b3754f89b4e4e0b4594613ef589204)) - ROM_RELOAD(0x00000+0x40000, 0x20000) - ROM_RELOAD(0x00000+0x80000, 0x20000) - ROM_RELOAD(0x00000+0xc0000, 0x20000) + ROM_RELOAD(0x40000, 0x20000) + ROM_RELOAD(0x80000, 0x20000) + ROM_RELOAD(0xc0000, 0x20000) ROM_LOAD("arom2.bin", 0x20000, 0x20000, CRC(5be02ff7) SHA1(51af73a26bbed0915ec57cde8f9cac552978b2dc)) - ROM_RELOAD(0x20000+0x40000, 0x20000) - ROM_RELOAD(0x20000+0x80000, 0x20000) - ROM_RELOAD(0x20000+0xc0000, 0x20000) + ROM_RELOAD(0x60000, 0x20000) + ROM_RELOAD(0xa0000, 0x20000) + ROM_RELOAD(0xe0000, 0x20000) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(4ecf6ecb) SHA1(92469ccdedcc8e61edcddaedd688ef990a9ad5ad)) ROM_END @@ -547,16 +557,16 @@ ROM_START(opthund) ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(96a128c2) SHA1(4032c5191b167a0498371207666a1f73155b7a74)) - ROM_REGION(0x10000, "cpu3", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(db28be69) SHA1(6c505c34c8bdccc43dd8f310f01dd3a6b49e8059)) - ROM_REGION(0x100000, "sound1", ROMREGION_ERASEFF) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(0fbb130a) SHA1(a171c20f861dac5918c5b410e2a2bdd6e7c0553b)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(0f7632b3) SHA1(a122a062448139d5c1a9daa7d827c3073aa194f7)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(169816d1) SHA1(d23b1d8d1b841ca065a485e80805ecc6342ce57b)) ROM_END @@ -581,16 +591,16 @@ ROM_START(surfnsaf) ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(ac3393bd) SHA1(f9c533b937b5ca5698b805ed6ed573cb22383d9d)) - ROM_REGION(0x10000, "cpu3", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(ec8fc963) SHA1(247e76d87beb3339e7d55292f9eadd2351621cfa)) - ROM_REGION(0x100000, "sound1", ROMREGION_ERASEFF) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(38b569b2) SHA1(93be47916a92541d097233b60a42eb7ca587ce52)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(224c2021) SHA1(6b426097a2870b3b32d786be6e66ba6be9f54c29)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(a0480418) SHA1(a982564d5dbf52275c2e7223687b07cf4ca0a115)) ROM_END @@ -635,38 +645,38 @@ ROM_START(tt_game) ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(e7944b75) SHA1(b73f2e0004556c8aa88baef0cddcdefb5b905b8d)) - ROM_REGION(0x10000, "cpu3", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, NO_DUMP) - ROM_REGION(0x100000, "sound1", ROMREGION_ERASEFF) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x20000, CRC(b0983d90) SHA1(72e6a71f20fd5849543ca13813f062a3fc1d7dcf)) - ROM_RELOAD(0x00000+0x40000, 0x20000) - ROM_RELOAD(0x00000+0x80000, 0x20000) - ROM_RELOAD(0x00000+0xc0000, 0x20000) + ROM_RELOAD(0x40000, 0x20000) + ROM_RELOAD(0x80000, 0x20000) + ROM_RELOAD(0xc0000, 0x20000) ROM_LOAD("arom2.bin", 0x20000, 0x20000, CRC(3e31ce58) SHA1(a2ef72d7b2bb821d1f62dce7212e31a1df3e7791)) - ROM_RELOAD(0x20000+0x40000, 0x20000) - ROM_RELOAD(0x20000+0x80000, 0x20000) - ROM_RELOAD(0x20000+0xc0000, 0x20000) + ROM_RELOAD(0x60000, 0x20000) + ROM_RELOAD(0xa0000, 0x20000) + ROM_RELOAD(0xe0000, 0x20000) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, NO_DUMP) ROM_END } // anonymous namespace -GAME(1989, lca, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Lights...Camera...Action!", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1989, lca2, lca, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Lights...Camera...Action! (rev.2)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1990, silvslug, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Silver Slugger", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1990, vegas, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Vegas", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1990, deadweap, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Deadly Weapon", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1990, tfight, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Title Fight", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1990, nudgeit, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Nudge-It", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1990, bellring, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Bell Ringer", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1991, carhop, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Car Hop", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1991, hoops, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Hoops", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1991, cactjack, 0, p0, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Cactus Jack's", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1991, clas1812, 0, p0, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Class of 1812", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1991, surfnsaf, 0, p0, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Surf'n Safari", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1992, opthund, 0, p0, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Operation: Thunder", MACHINE_IS_SKELETON_MECHANICAL) -GAME(19??, tt_game, 0, p0, gts3, gts3_state, empty_init, ROT0, "Toptronic", "unknown Toptronic pinball game", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1989, ccruise, 0, p0, gts3, gts3_state, empty_init, ROT0, "International Concepts","Caribbean Cruise", MACHINE_IS_SKELETON_MECHANICAL) +GAME(1989, lca, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Lights...Camera...Action!", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1989, lca2, lca, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Lights...Camera...Action! (rev.2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1990, silvslug, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Silver Slugger", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1990, vegas, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Vegas", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1990, deadweap, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Deadly Weapon", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1990, tfight, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Title Fight", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1990, nudgeit, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Nudge-It", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1990, bellring, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Bell Ringer", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1991, carhop, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Car Hop", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1991, hoops, 0, p5, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Hoops", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1991, cactjack, 0, p7, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Cactus Jack's", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1991, clas1812, 0, p7, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Class of 1812", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1991, surfnsaf, 0, p7, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Surf'n Safari", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1992, opthund, 0, p7, gts3, gts3_state, empty_init, ROT0, "Gottlieb", "Operation: Thunder", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(19??, tt_game, 0, p7, gts3, gts3_state, empty_init, ROT0, "Toptronic", "unknown Toptronic pinball game", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1989, ccruise, 0, p7, gts3, gts3_state, empty_init, ROT0, "International Concepts","Caribbean Cruise", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) diff --git a/src/mame/drivers/gts3a.cpp b/src/mame/drivers/gts3a.cpp index fc839c7950f..a8f80c90c8e 100644 --- a/src/mame/drivers/gts3a.cpp +++ b/src/mame/drivers/gts3a.cpp @@ -6,15 +6,40 @@ PINBALL Gottlieb System 3 Dot Matrix Display +Here are the key codes to enable play: + +Game NUM Start game End ball +-------------------------------------------------------------------------------------------------- +Super Mario Brothers 733 +Cue Ball Wizard 734 +Street Fighter II 735 +Tee'd Off 736 +Gladiators 737 +Wipe Out 738 +Rescue 911 740 +World Challenge Soccer 741 +Stargate 742 +Shaq Attack 743 +Freddy A Nightmare on Elm Street 744 +Frank Thomas Big Hurt 745 +Waterworld 746 +Mario Andretti 747 +Barb Wire 748 +Brooks & Dunn 749 (unfinished prototype) +Super Mario Brothers Mushroom World N105 +Strikes n Spares N111 +Machina Zois + Status: -- Nothing works +- Nothing works - on some games there's a sound when coin is inserted. - Display shows rubbish ToDo: -- Sound - Make it work - Make display show something sensible - There's an undumped GAL 16V8-25L on the DMD board (position U8) +- Strikes n Spares: sound +- Brooks & Dunn: roms are missing. Program was never finished. *****************************************************************************************************/ @@ -22,11 +47,13 @@ ToDo: #include "machine/genpin.h" #include "cpu/m6502/m65c02.h" +#include "audio/gottlieb.h" #include "machine/6522via.h" #include "machine/input_merger.h" #include "video/mc6845.h" #include "emupal.h" #include "screen.h" +#include "speaker.h" namespace { @@ -42,12 +69,14 @@ public: , m_vram(*this, "vram") , m_u4(*this, "u4") , m_u5(*this, "u5") + , m_p7_sound(*this, "p7sound") , m_io_keyboard(*this, "X%d", 0U) , m_digits(*this, "digit%d", 0U) , m_io_outputs(*this, "out%d", 0U) { } - void gts3a(machine_config &config); + void p0(machine_config &config); + void p7(machine_config &config); void init_gts3a(); @@ -60,6 +89,7 @@ private: void lampret_w(u8); void solenoid_w(offs_t, u8); void u4b_w(u8 data); + void u5a_w(u8 data); u8 dmd_r(); void dmd_w(u8 data); DECLARE_WRITE_LINE_MEMBER(nmi_w); @@ -84,6 +114,7 @@ private: required_shared_ptr m_vram; required_device m_u4; required_device m_u5; + optional_device m_p7_sound; required_ioport_array<12> m_io_keyboard; output_finder<40> m_digits; output_finder<128> m_io_outputs; // 32 solenoids + 96 lamps @@ -319,6 +350,12 @@ u8 gts3a_state::u4b_r() return m_u4b | (ioport("TTS")->read() & 0x18); } +void gts3a_state::u5a_w(u8 data) +{ + if (m_p7_sound) + m_p7_sound->write(data); +} + void gts3a_state::init_gts3a() { u8 *dmd = memregion("dmdcpu")->base(); @@ -404,7 +441,7 @@ void gts3a_state::machine_reset() m_dispclk = 0; } -void gts3a_state::gts3a(machine_config &config) +void gts3a_state::p0(machine_config &config) { M65C02(config, m_maincpu, XTAL(4'000'000) / 2); m_maincpu->set_addrmap(AS_PROGRAM, >s3a_state::mem_map); @@ -432,9 +469,6 @@ void gts3a_state::gts3a(machine_config &config) //m_crtc->out_hsync_callback().set(FUNC(gts3a_state::crtc_hs)); m_crtc->out_vsync_callback().set(FUNC(gts3a_state::crtc_vs)); - /* Sound */ - genpin_audio(config); - R65C22(config, m_u4, XTAL(4'000'000) / 2); m_u4->irq_handler().set("irq", FUNC(input_merger_device::in_w<0>)); m_u4->readpa_handler().set(FUNC(gts3a_state::u4a_r)); @@ -445,7 +479,7 @@ void gts3a_state::gts3a(machine_config &config) R65C22(config, m_u5, XTAL(4'000'000) / 2); m_u5->irq_handler().set("irq", FUNC(input_merger_device::in_w<1>)); - //m_u5->readpa_handler().set(FUNC(gts3a_state::u5a_r)); + m_u5->writepa_handler().set(FUNC(gts3a_state::u5a_w)); //m_u5->readpb_handler().set(FUNC(gts3a_state::u5b_r)); //m_u5->writepb_Handler().set(FUNC(gts3a_state::u5b_w)); //m_u5->ca2_Handler().set(FUNC(gts3a_state::u5ca2_w)); @@ -453,29 +487,38 @@ void gts3a_state::gts3a(machine_config &config) //m_u5->cb2_Handler().set(FUNC(gts3a_state::u5cb2_w)); INPUT_MERGER_ANY_HIGH(config, "irq").output_handler().set_inputline("maincpu", m65c02_device::IRQ_LINE); + + /* Sound */ + genpin_audio(config); + SPEAKER(config, "mono").front_center(); } +void gts3a_state::p7(machine_config &config) +{ + p0(config); + GOTTLIEB_SOUND_PIN7(config, m_p7_sound, 0).add_route(ALL_OUTPUTS, "mono", 1.00); +} + + /*------------------------------------------------------------------- / Barb Wire (#748) /-------------------------------------------------------------------*/ ROM_START(barbwire) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(2e130835) SHA1(f615eaf1c48851d837c57c17c038cc1d0806f6f7)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(2b9533cd) SHA1(2b154550006e37a9dd1acb0cb832535415a7266b)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(ebde41b0) SHA1(38a132f815a5270dff58a5e34f5c73701d6e214d)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(7171bc86) SHA1(d9b1f54d34400490c219ca3ba566cc40cac517d7)) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(ce83c6c3) SHA1(95a364844525548d28f78d54f9d058728cebf089)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(7c602a35) SHA1(66dbd7679973683c8346836c28c02ff922d17375)) ROM_END @@ -483,23 +526,21 @@ ROM_END / Brooks & Dunn (#749T1) /-------------------------------------------------------------------*/ ROM_START(brooks) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(26cebf07) SHA1(14741e2d216528f176dc35ade856baffab0f99a0)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, NO_DUMP) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, NO_DUMP) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, NO_DUMP) ROM_LOAD("arom2.bin", 0x80000, 0x40000, NO_DUMP) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, NO_DUMP) ROM_END @@ -511,71 +552,65 @@ ROM_END / Cue Ball Wizard (#734) /-------------------------------------------------------------------*/ ROM_START(cueball) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(3437fdd8) SHA1(2a0fc9bc8e3d0c430ce2cf8afad378fc93af609d)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x40000, CRC(3cc7f470) SHA1(6adf8ac2ff93eb19c7b1dbbcf8fff6cd926dc563)) - ROM_RELOAD( 0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(9fd04109) SHA1(27864fe4e9c248dce6221c9e56861967d089b216)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(476bb11c) SHA1(ce546df59933cc230a6671dec493bbbe71146dee)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(23708ad9) SHA1(156fcb19403f9845404af1a4ac4edfd3fcde601d)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(c22f5cc5) SHA1(a5bfbc1824bc483eecc961851bd411cb0dbcdc4a)) ROM_END ROM_START(cueball2) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.r2", 0x0000, 0x10000, CRC(171c0a0e) SHA1(e53d32e7cddf47feacf3f5c00651c2216da39b7a)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.r2", 0x00000, 0x40000, CRC(70345a0b) SHA1(38ccea4f367d6ac777119201156b2f35c4d2d379)) - ROM_RELOAD( 0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(9fd04109) SHA1(27864fe4e9c248dce6221c9e56861967d089b216)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(476bb11c) SHA1(ce546df59933cc230a6671dec493bbbe71146dee)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(23708ad9) SHA1(156fcb19403f9845404af1a4ac4edfd3fcde601d)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(c22f5cc5) SHA1(a5bfbc1824bc483eecc961851bd411cb0dbcdc4a)) ROM_END ROM_START(cueball3) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.r3", 0x0000, 0x10000, CRC(f2d6e9d8) SHA1(bac7d498876454092607116fd7d46034438c9bfa)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.r2", 0x00000, 0x40000, CRC(70345a0b) SHA1(38ccea4f367d6ac777119201156b2f35c4d2d379)) ROM_RELOAD( 0x40000, 0x40000) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(9fd04109) SHA1(27864fe4e9c248dce6221c9e56861967d089b216)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(476bb11c) SHA1(ce546df59933cc230a6671dec493bbbe71146dee)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(23708ad9) SHA1(156fcb19403f9845404af1a4ac4edfd3fcde601d)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(c22f5cc5) SHA1(a5bfbc1824bc483eecc961851bd411cb0dbcdc4a)) ROM_END @@ -583,23 +618,21 @@ ROM_END / Frank Thomas' Big Hurt (#745) /-------------------------------------------------------------------*/ ROM_START(bighurt) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(92ce9353) SHA1(479edb2e39fa610eb2854b028d3a039473e52eba)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(bbe96c5e) SHA1(4aaac8d88e739ccb22a7d87a820b14b6d40d3ff8)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(d472210c) SHA1(4607e6f928cb9a5f41175210ba0427b6cd50fb83)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(b3def376) SHA1(94553052cfe80774affebd5b0f99512055552786)) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(59789e66) SHA1(08b7f82f83c53f15cafefb009ab9833457c088cc)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(c58941ed) SHA1(3b3545b1e8986b06238576a0cef69d3e3a59a325)) ROM_END @@ -607,68 +640,62 @@ ROM_END / Freddy: A Nightmare on Elm Street (#744) /-------------------------------------------------------------------*/ ROM_START(freddy) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(f0a6f3e6) SHA1(ad9af12260b8adc639fa00de49366b1016df49ed)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(d78d0fa3) SHA1(132c05e71cf5ad53184f044873fb3dd71f6da15f)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(d472210c) SHA1(4607e6f928cb9a5f41175210ba0427b6cd50fb83)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(6bec0567) SHA1(510c0e5a5af7573761a69bad5ab36f0019767c48)) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(f0e9284d) SHA1(6ffe8286e27b0eecab9620ca613e3d72bb7f77ce)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(4a748665) SHA1(9f08b6d0731390c306194808226d2e99fbe9122d)) ROM_END ROM_START(freddy4) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom4.bin", 0x0000, 0x10000, CRC(cd8b46ea) SHA1(3151a9f7b514314dc4989232e1eda444555242c0)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(d78d0fa3) SHA1(132c05e71cf5ad53184f044873fb3dd71f6da15f)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(d472210c) SHA1(4607e6f928cb9a5f41175210ba0427b6cd50fb83)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(6bec0567) SHA1(510c0e5a5af7573761a69bad5ab36f0019767c48)) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(f0e9284d) SHA1(6ffe8286e27b0eecab9620ca613e3d72bb7f77ce)) - ROM_RELOAD(0x80000 +0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(4a748665) SHA1(9f08b6d0731390c306194808226d2e99fbe9122d)) ROM_END /*------------------------------------------------------------------- / Gladiators (#737) /-------------------------------------------------------------------*/ ROM_START(gladiatp) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(40386cf5) SHA1(3139e3707971a708ad98c735deec7e4ee7bb36cd)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(fdc8baed) SHA1(d8ad96665cd9d8b2a6ce94653753c692384685ff)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(60779d60) SHA1(2fa09c65ddd6cf638382229062a48163e8972136)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(85cbdda7) SHA1(4eaea8866cb281034e30f425e864419fdb58081f)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(da2c1073) SHA1(faf58099e78dffdce5c15f393ffa3707ec80dd51)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(c5b72153) SHA1(c5d94f3fa815fc33952107c3a3ad698c3c443ce3)) ROM_END @@ -676,44 +703,40 @@ ROM_END / Mario Andretti (#747) /-------------------------------------------------------------------*/ ROM_START(andretti) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(cffa788d) SHA1(84646880b09dce73a42a6d87666897f6bd74a8f9)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(1f70baae) SHA1(cf07bb057093b2bd18e6ee45009245ea62094e53)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(d472210c) SHA1(4607e6f928cb9a5f41175210ba0427b6cd50fb83)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(918c3270) SHA1(aa57d3bfba01e701b02ca7e4f0946144cfb7d4b1)) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(3c61a2f7) SHA1(65cfb5d1261a1b0c219e1786b6635d7b0a188040)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(4ffb15b0) SHA1(de4e9b2ccca865deb2595320015a149246795260)) ROM_END ROM_START(andretti4) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gpromt4.bin", 0x0000, 0x10000, CRC(c6f6a23b) SHA1(01ea23a830be1e86f5ecd27d6d56c1c6d5ff3176)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(1f70baae) SHA1(cf07bb057093b2bd18e6ee45009245ea62094e53)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(d472210c) SHA1(4607e6f928cb9a5f41175210ba0427b6cd50fb83)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(918c3270) SHA1(aa57d3bfba01e701b02ca7e4f0946144cfb7d4b1)) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(3c61a2f7) SHA1(65cfb5d1261a1b0c219e1786b6635d7b0a188040)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(4ffb15b0) SHA1(de4e9b2ccca865deb2595320015a149246795260)) ROM_END @@ -721,23 +744,21 @@ ROM_END / Rescue 911 (#740) /-------------------------------------------------------------------*/ ROM_START(rescu911) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(943a7597) SHA1(dcf4151727efa64e8740202b68fc8e76098ff8dd)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(9657ebd5) SHA1(b716daa71f8ec4332bf338f1f976425b6ec781ab)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(034c6bc3) SHA1(c483690a6e4ce533b8939e27547175c301316172)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(f6daa16c) SHA1(be132072b27a94f61653de0a22eecc8b90db3077)) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(59374104) SHA1(8ad7f5f0109771dd5cebe13e80f8e1a9420f4447)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(14f86b56) SHA1(2364c284412eba719f88d50dcf47d5482365dbf3)) ROM_END @@ -745,44 +766,40 @@ ROM_END / Shaq Attaq (#743) /-------------------------------------------------------------------*/ ROM_START(shaqattq) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(7a967fd1) SHA1(c06e2aad9452150d92cfd3ba37b8e4a932cf4324)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(d6cca842) SHA1(0498ab558d252e42dee9636e6736d159c7d06275)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(16a03261) SHA1(25f5a3d32d2ec80766381106445fd624360fea78)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(019014ec) SHA1(808a8c3154fca6218fe991b46a2525926d8e51f9)) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(cc5f157d) SHA1(81c3dadff1bbf37a1f091ea77d9061879be7d99c)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(e81e2928) SHA1(4bfe57efa99bb762e4de6c7e88e79b8c5ff57626)) ROM_END ROM_START(shaqattq2) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom2.bin", 0x0000, 0x10000, CRC(494b5cec) SHA1(91511eb9f8b0182ffeff5301fb5bcf4ee9056b3f)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(d6cca842) SHA1(0498ab558d252e42dee9636e6736d159c7d06275)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(16a03261) SHA1(25f5a3d32d2ec80766381106445fd624360fea78)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(019014ec) SHA1(808a8c3154fca6218fe991b46a2525926d8e51f9)) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(cc5f157d) SHA1(81c3dadff1bbf37a1f091ea77d9061879be7d99c)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(e81e2928) SHA1(4bfe57efa99bb762e4de6c7e88e79b8c5ff57626)) ROM_END @@ -790,23 +807,21 @@ ROM_END / Machina Zois (hack of Shaq Attack) /-------------------------------------------------------------------*/ ROM_START(mac_zois) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprommz.bin", 0x0000, 0x10000, CRC(7a967fd1) SHA1(c06e2aad9452150d92cfd3ba37b8e4a932cf4324)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(3b63f9c6) SHA1(b06ea3b8f7d3c4b22a8bbc687698654366c35f22) ) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(16a03261) SHA1(25f5a3d32d2ec80766381106445fd624360fea78)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1mz.bin", 0x00000, 0x80000, CRC(68ceeb43) SHA1(debe5a0683b1806c9813ba89a6438afb3eecb188) ) ROM_LOAD("arom2mz.bin", 0x80000, 0x40000, CRC(7dabc8ca) SHA1(ca6dc59891222f8534b0a2de8cd29c52e5b33efc) ) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(e81e2928) SHA1(4bfe57efa99bb762e4de6c7e88e79b8c5ff57626)) ROM_END @@ -814,122 +829,110 @@ ROM_END / Stargate (#742) /-------------------------------------------------------------------*/ ROM_START(stargatp) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(837e4354) SHA1(b7d1e270309b3d7965dafeec7b81d2dd41e5700c)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(17b89750) SHA1(927702f88013945cb9f2ea8389800b925182c347)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(781b2b27) SHA1(06decd22b9064ee4859618a043055e0b3e3b9e04)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(a0f62605) SHA1(8c39452367150f66271371ab02be2f5a812cb954)) ROM_RELOAD(0x80000, 0x80000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(53123fd4) SHA1(77fd183a10eea2e04a07edf9da14ef7aadb65f91)) ROM_END ROM_START(stargatp1) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom1.bin", 0x0000, 0x10000, CRC(567ecd88) SHA1(2dc4bfbc971cc873af6ec32e5ddbbed001d2e1d2)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom1.bin", 0x00000, 0x80000, CRC(91c1b01a) SHA1(96eec2e9e52c8278c102f433a554327d420fe131)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(781b2b27) SHA1(06decd22b9064ee4859618a043055e0b3e3b9e04)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(a0f62605) SHA1(8c39452367150f66271371ab02be2f5a812cb954)) ROM_RELOAD(0x80000, 0x80000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(53123fd4) SHA1(77fd183a10eea2e04a07edf9da14ef7aadb65f91)) ROM_END ROM_START(stargatp2) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom2.bin", 0x0000, 0x10000, CRC(862920f8) SHA1(cde77e7937782f2f9fe4b7fe27b56206d6f26f63)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom2.bin", 0x00000, 0x80000, CRC(d0205e03) SHA1(d8dea47f0fa0e46e2bd107a1f57121372fdef0d8)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(781b2b27) SHA1(06decd22b9064ee4859618a043055e0b3e3b9e04)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(a0f62605) SHA1(8c39452367150f66271371ab02be2f5a812cb954)) ROM_RELOAD(0x80000, 0x80000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(53123fd4) SHA1(77fd183a10eea2e04a07edf9da14ef7aadb65f91)) ROM_END ROM_START(stargatp3) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom3.bin", 0x0000, 0x10000, CRC(83f0a2e7) SHA1(5d247a3329a946449e4b333b18c13e351caa230b)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom3.bin", 0x00000, 0x80000, CRC(db483524) SHA1(ea14e8b04c32fc403ce2ff060caed5562104a862)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(781b2b27) SHA1(06decd22b9064ee4859618a043055e0b3e3b9e04)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(a0f62605) SHA1(8c39452367150f66271371ab02be2f5a812cb954)) ROM_RELOAD(0x80000, 0x80000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(53123fd4) SHA1(77fd183a10eea2e04a07edf9da14ef7aadb65f91)) ROM_END ROM_START(stargatp4) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom4.bin", 0x0000, 0x10000, CRC(7b8f6920) SHA1(f354593e13c30e15c25580387ef2eb9b23622c89)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom3.bin", 0x00000, 0x80000, CRC(db483524) SHA1(ea14e8b04c32fc403ce2ff060caed5562104a862)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(781b2b27) SHA1(06decd22b9064ee4859618a043055e0b3e3b9e04)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(a0f62605) SHA1(8c39452367150f66271371ab02be2f5a812cb954)) ROM_RELOAD(0x80000, 0x80000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(53123fd4) SHA1(77fd183a10eea2e04a07edf9da14ef7aadb65f91)) ROM_END ROM_START(stargatp5) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("stgtcpu5.512", 0x0000, 0x10000, CRC(c0579d86) SHA1(ba7ea85ccf407ec72d19e15b34b96a7ca95bf893)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom3.bin", 0x00000, 0x80000, CRC(db483524) SHA1(ea14e8b04c32fc403ce2ff060caed5562104a862)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(781b2b27) SHA1(06decd22b9064ee4859618a043055e0b3e3b9e04)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(a0f62605) SHA1(8c39452367150f66271371ab02be2f5a812cb954)) ROM_RELOAD(0x80000, 0x80000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(53123fd4) SHA1(77fd183a10eea2e04a07edf9da14ef7aadb65f91)) ROM_END @@ -937,68 +940,62 @@ ROM_END / Street Fighter II (#735) /-------------------------------------------------------------------*/ ROM_START(sfight2) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(299ad173) SHA1(95cca8c22cfabc55175a49b0439fc7858bdec1bd)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(e565e5e9) SHA1(c37abf28918feb38bbad6ebb610023d52ba96957)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(f5c13e80) SHA1(4dd3d35c25e3cb92d6000e463ddce564e112c108)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(8518ff55) SHA1(b31678aa7c1b1240becf0ae0af05b30f7df4a491)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(85a304d9) SHA1(71141dea44e4117cad66089c7a0806de1be1a96a)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(9009f461) SHA1(589d94a9ae2269175be9f71b1946107bb85620ee)) ROM_END ROM_START(sfight2a) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom1.bin", 0x0000, 0x10000, CRC(5b42c332) SHA1(958e9fe09e587038dc282fc2f276608ef3744b1d)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom2.bin", 0x00000, 0x80000, CRC(80eb7513) SHA1(d13d44545c7b177e27b596bac6eba173b34a017b)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(f5c13e80) SHA1(4dd3d35c25e3cb92d6000e463ddce564e112c108)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(8518ff55) SHA1(b31678aa7c1b1240becf0ae0af05b30f7df4a491)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(85a304d9) SHA1(71141dea44e4117cad66089c7a0806de1be1a96a)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(9009f461) SHA1(589d94a9ae2269175be9f71b1946107bb85620ee)) ROM_END ROM_START(sfight2b) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom2.bin", 0x0000, 0x10000, CRC(26d24c06) SHA1(c706bd6b2bd5b9ad6a6fb69178169977a54107b5)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom2.bin", 0x00000, 0x80000, CRC(80eb7513) SHA1(d13d44545c7b177e27b596bac6eba173b34a017b)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(f5c13e80) SHA1(4dd3d35c25e3cb92d6000e463ddce564e112c108)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(8518ff55) SHA1(b31678aa7c1b1240becf0ae0af05b30f7df4a491)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(85a304d9) SHA1(71141dea44e4117cad66089c7a0806de1be1a96a)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(9009f461) SHA1(589d94a9ae2269175be9f71b1946107bb85620ee)) ROM_END @@ -1006,62 +1003,56 @@ ROM_END / Strikes n' Spares (#N111) /-------------------------------------------------------------------*/ ROM_START(snspares) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(9e018496) SHA1(a4995f153ba2179198cfc56b7011707328e4ec89)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x40000, CRC(5c901899) SHA1(d106561b2e382afdb16e938072c9c8f1d1ccdae6)) - ROM_RELOAD( 0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x10000, "cpu3", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) - ROM_REGION(0x80000, "user2", 0) + ROM_REGION(0x80000, "dmdcpu2", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x40000, CRC(5c901899) SHA1(d106561b2e382afdb16e938072c9c8f1d1ccdae6)) - ROM_RELOAD( 0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x100000, "user3", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(e248574a) SHA1(d2bdc2b9a330bb81556d25d464f617e0934995eb)) ROM_END ROM_START(snspares1) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom1.bin", 0x0000, 0x10000, CRC(590393f4) SHA1(f52400c620e510253abd1c0719050b9bb09be942)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x40000, CRC(5c901899) SHA1(d106561b2e382afdb16e938072c9c8f1d1ccdae6)) ROM_RELOAD( 0x40000, 0x40000) - ROM_REGION(0x10000, "cpu3", ROMREGION_ERASEFF) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) - ROM_REGION(0x80000, "user2", 0) + ROM_REGION(0x80000, "dmdcpu2", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x40000, CRC(5c901899) SHA1(d106561b2e382afdb16e938072c9c8f1d1ccdae6)) - ROM_RELOAD( 0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x100000, "user3", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(e248574a) SHA1(d2bdc2b9a330bb81556d25d464f617e0934995eb)) ROM_END ROM_START(snspares2) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom2.bin", 0x0000, 0x10000, CRC(79906dfc) SHA1(1efb68dd391f79e6f8ad5a588145d6ad7b36743c)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) + ROM_LOAD("dsprom.bin", 0x00000, 0x40000, CRC(5c901899) SHA1(d106561b2e382afdb16e938072c9c8f1d1ccdae6)) + ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) + + ROM_REGION(0x80000, "dmdcpu2", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x40000, CRC(5c901899) SHA1(d106561b2e382afdb16e938072c9c8f1d1ccdae6)) ROM_RELOAD( 0x40000, 0x40000) - ROM_REGION(0x10000, "cpu3", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "user2", 0) - ROM_LOAD("dsprom.bin", 0x00000, 0x40000, CRC(5c901899) SHA1(d106561b2e382afdb16e938072c9c8f1d1ccdae6)) - ROM_RELOAD( 0x40000, 0x40000) - - ROM_REGION(0x100000, "user3", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(e248574a) SHA1(d2bdc2b9a330bb81556d25d464f617e0934995eb)) ROM_END @@ -1069,94 +1060,86 @@ ROM_END / Super Mario Brothers (#733) - Only one dsprom dump seems to work? /-------------------------------------------------------------------*/ ROM_START(smb) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(fa1f6e52) SHA1(d7ade0e129cb399494967e025d25614bf1650db7)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom2.bin", 0x00000, 0x40000, CRC(181e8234) SHA1(9b22681f61cae401269a88c3cfd783d683390877)) ROM_RELOAD( 0x40000, 0x40000) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(6f1d0a3e) SHA1(c7f665d79b9073f28f90debde16cafa9ab57a47c)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(e9cef116) SHA1(5f710bc24e1a168f296a22417aebecbde3bfaa5c)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(0acdfd49) SHA1(0baabd32b546842bc5c76a61b509b558677b50f9)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(e1379106) SHA1(10c46bad7cbae528716c5ba0709bb1fd3574a0a8)) ROM_END ROM_START(smb1) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom1.bin", 0x0000, 0x10000, CRC(1d8c4df8) SHA1(e301bf3b2a8ed6ef902fe15b890b4c06c4606aa9)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom2.bin", 0x00000, 0x40000, CRC(181e8234) SHA1(9b22681f61cae401269a88c3cfd783d683390877)) - ROM_RELOAD( 0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(6f1d0a3e) SHA1(c7f665d79b9073f28f90debde16cafa9ab57a47c)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(e9cef116) SHA1(5f710bc24e1a168f296a22417aebecbde3bfaa5c)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(0acdfd49) SHA1(0baabd32b546842bc5c76a61b509b558677b50f9)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(e1379106) SHA1(10c46bad7cbae528716c5ba0709bb1fd3574a0a8)) ROM_END ROM_START(smb2) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom2.bin", 0x0000, 0x10000, CRC(5b0f44c4) SHA1(ca9b0cd82c75612c85c956497c8f9c12992f6ad5)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom2.bin", 0x00000, 0x40000, CRC(181e8234) SHA1(9b22681f61cae401269a88c3cfd783d683390877)) - ROM_RELOAD( 0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(6f1d0a3e) SHA1(c7f665d79b9073f28f90debde16cafa9ab57a47c)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(e9cef116) SHA1(5f710bc24e1a168f296a22417aebecbde3bfaa5c)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(0acdfd49) SHA1(0baabd32b546842bc5c76a61b509b558677b50f9)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(e1379106) SHA1(10c46bad7cbae528716c5ba0709bb1fd3574a0a8)) ROM_END ROM_START(smb3) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom3.bin", 0x0000, 0x10000, CRC(5a40822c) SHA1(a87ec6307f848483c76141e47fd67e4549f9c9d3)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom2.bin", 0x00000, 0x40000, CRC(181e8234) SHA1(9b22681f61cae401269a88c3cfd783d683390877)) - ROM_RELOAD( 0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(6f1d0a3e) SHA1(c7f665d79b9073f28f90debde16cafa9ab57a47c)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(e9cef116) SHA1(5f710bc24e1a168f296a22417aebecbde3bfaa5c)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(0acdfd49) SHA1(0baabd32b546842bc5c76a61b509b558677b50f9)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(e1379106) SHA1(10c46bad7cbae528716c5ba0709bb1fd3574a0a8)) ROM_END @@ -1164,25 +1147,23 @@ ROM_END / Super Mario Brothers Mushroom World (N105) /-------------------------------------------------------------------*/ ROM_START(smbmush) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(45f6d0cc) SHA1(a73c71ab64aee293ae46e65c34d70840296778d4)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x40000, CRC(dda6c8be) SHA1(b64f73b81afe973674f9543a704b498e31d26c12)) - ROM_RELOAD( 0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(6f04a0ac) SHA1(53bbc182a3bd635ad18504692a4454994daef7ef)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(edce7951) SHA1(4a80d6367a5bebf9fee181456280619aa64b441f)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(dd7ea212) SHA1(adaf0262e315c26b1f4d6365e9d465c7afb6984d)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(09712c37) SHA1(e2ee902ea6eac3e6257880949bd07a90de08e7b9)) ROM_END @@ -1190,68 +1171,62 @@ ROM_END / Tee'd Off (#736) /-------------------------------------------------------------------*/ ROM_START(teedoffp) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(0620365b) SHA1(18887c49a5d3806b725fa6289e50db82974c0f40)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(340b8a49) SHA1(3ac76faf920b00b77c77023c42595307840ed3a7)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(3868e77a) SHA1(2db91c527803a369ca659eaae6022667a126d2ef)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(9e442b71) SHA1(889023af42a2527a51343ccee7f66b089b6e6d01)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(3dad9508) SHA1(70ed49fa82dbe7586bfca72c5020834f9173d563)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(c51d98d8) SHA1(9387a39a03ca90bc8eaddc0c2df8874067a22dea)) ROM_END ROM_START(teedoffp1) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom1.bin", 0x0000, 0x10000, CRC(95760ab1) SHA1(9342128e2de4e81c4b0cfc482bb0650434a04bee)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom1.bin", 0x00000, 0x80000, CRC(24f10ad2) SHA1(15f44f69d39ca9782410a75070edf348f64dba62)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(3868e77a) SHA1(2db91c527803a369ca659eaae6022667a126d2ef)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(9e442b71) SHA1(889023af42a2527a51343ccee7f66b089b6e6d01)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(3dad9508) SHA1(70ed49fa82dbe7586bfca72c5020834f9173d563)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(c51d98d8) SHA1(9387a39a03ca90bc8eaddc0c2df8874067a22dea)) ROM_END ROM_START(teedoffp3) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom3.bin", 0x0000, 0x10000, CRC(d7008579) SHA1(b7bc9f54340ffb2d684b5df80624e8c01e7fa18b)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom1.bin", 0x00000, 0x80000, CRC(24f10ad2) SHA1(15f44f69d39ca9782410a75070edf348f64dba62)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(3868e77a) SHA1(2db91c527803a369ca659eaae6022667a126d2ef)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(9e442b71) SHA1(889023af42a2527a51343ccee7f66b089b6e6d01)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(3dad9508) SHA1(70ed49fa82dbe7586bfca72c5020834f9173d563)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(c51d98d8) SHA1(9387a39a03ca90bc8eaddc0c2df8874067a22dea)) ROM_END @@ -1259,42 +1234,38 @@ ROM_END / Waterworld (#746) /-------------------------------------------------------------------*/ ROM_START(waterwld) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(db1fd197) SHA1(caa22f7e3f52be85da496375115933722a414ee0)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(79164099) SHA1(fa048fb7aa91cadd6c0758c570a4c74337bd7cd5)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(2a8c5d04) SHA1(1a6a698fc05a199923721e91e68aaaa8d3c6a3c2)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(3ee37668) SHA1(9ced05b4f060568bf686974bc2472ff7c05a87c6)) ROM_LOAD("arom2.bin", 0x80000, 0x80000, CRC(a631bf12) SHA1(4784da1fabd2858b2c47af71784eb475cbbb4ab5)) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(6dddce0a) SHA1(6ad9b023ba8632dda0a4e04a4f66aac52ddd3b09)) ROM_END ROM_START(waterwld2) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom2.bin", 0x0000, 0x10000, CRC(c3d64cd7) SHA1(63bfd26fdc7082c2bb60c978508820442ac90f14)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(79164099) SHA1(fa048fb7aa91cadd6c0758c570a4c74337bd7cd5)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(2a8c5d04) SHA1(1a6a698fc05a199923721e91e68aaaa8d3c6a3c2)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x80000, CRC(3ee37668) SHA1(9ced05b4f060568bf686974bc2472ff7c05a87c6)) ROM_LOAD("arom2.bin", 0x80000, 0x80000, CRC(a631bf12) SHA1(4784da1fabd2858b2c47af71784eb475cbbb4ab5)) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(6dddce0a) SHA1(6ad9b023ba8632dda0a4e04a4f66aac52ddd3b09)) ROM_END @@ -1302,24 +1273,22 @@ ROM_END / Wipeout (#738) /-------------------------------------------------------------------*/ ROM_START(wipeout) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(1161cdb7) SHA1(fdf4c0abb70a41149c69bd55c613849a662944d3)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(cbdec3ab) SHA1(2d70d436783830bf074a7a0590d5c48432136595)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(98ae6da4) SHA1(3842c2c4e708a5deae6b5d9407694d337b62384f)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(cccdf23a) SHA1(1b1e31f04cd60d64f0b9b8ab2c6169dacd0bce69)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(d4cc44a1) SHA1(c68264f00efa9f219fc257061ed39cd789e94126)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(f08e6d7f) SHA1(284214ac80735ddd36933ecd60debc7aea18403c)) ROM_END @@ -1327,88 +1296,84 @@ ROM_END / World Challenge Soccer (#741) /-------------------------------------------------------------------*/ ROM_START(wcsoccer) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(6382c32e) SHA1(e212f4a9a77d1cf089acb226a8079ac4cae8a96d)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom.bin", 0x00000, 0x80000, CRC(71ba5263) SHA1(e86c2cc89d31534fb2d9d24fab2fcdb0af7cc73d)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(18d5edf3) SHA1(7d0d46506cf9d4b96b9b93139e3c65643e120c28)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(ece4eebf) SHA1(78f882668967194bd547ace5d22083faeb29ef5e)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(4e466500) SHA1(78c4b41a174d82a7e0e7775713c76e679c8a7e89)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(8b2795b0) SHA1(b838d4e410c815421099c65b0d3b22227dae17c6)) ROM_END ROM_START(wcsoccerd2) - ROM_REGION(0x10000, "maincpu", 0) + ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF) ROM_LOAD("gprom.bin", 0x0000, 0x10000, CRC(6382c32e) SHA1(e212f4a9a77d1cf089acb226a8079ac4cae8a96d)) - ROM_REGION(0x10000, "cpu2", ROMREGION_ERASEFF) - - ROM_REGION(0x80000, "dmdcpu", 0) + ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF) ROM_LOAD("dsprom2.bin", 0x00000, 0x80000, CRC(4c8ea71d) SHA1(ce751b84e2033e4de2f2c57490867ecafd423aaa)) - ROM_REGION(0x10000, "cpu4", 0) + ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF) ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(18d5edf3) SHA1(7d0d46506cf9d4b96b9b93139e3c65643e120c28)) - ROM_REGION(0x100000, "sound1", 0) + ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF) ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(ece4eebf) SHA1(78f882668967194bd547ace5d22083faeb29ef5e)) - ROM_RELOAD(0x00000+0x40000, 0x40000) + ROM_RELOAD(0x40000, 0x40000) ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(4e466500) SHA1(78c4b41a174d82a7e0e7775713c76e679c8a7e89)) - ROM_RELOAD(0x80000+0x40000, 0x40000) + ROM_RELOAD(0xc0000, 0x40000) - ROM_REGION(0x10000, "cpu3", 0) + ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF) ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(8b2795b0) SHA1(b838d4e410c815421099c65b0d3b22227dae17c6)) ROM_END } // anonymous namespace -GAME(1992, smb, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Super Mario Brothers", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1992, smb1, smb, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Super Mario Brothers (rev.1)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1992, smb2, smb, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Super Mario Brothers (rev.2)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1992, smb3, smb, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Super Mario Brothers (rev.3)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1992, smbmush, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Super Mario Brothers Mushroom World", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1992, cueball, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Cue Ball Wizard", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1992, cueball2, cueball, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Cue Ball Wizard (rev.2)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1992, cueball3, cueball, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Cue Ball Wizard (rev.3)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1993, sfight2, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Street Fighter II", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1993, sfight2a, sfight2, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Street Fighter II (rev.1)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1993, sfight2b, sfight2, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Street Fighter II (rev.2)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1993, teedoffp, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Tee'd Off", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1993, teedoffp1, teedoffp, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Tee'd Off (rev.1)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1993, teedoffp3, teedoffp, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Tee'd Off (rev.3)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1993, gladiatp, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Gladiators", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1993, wipeout, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Wipeout (rev.2)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1994, rescu911, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Rescue 911 (rev.1)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1994, wcsoccer, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "World Challenge Soccer (rev.1)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1994, wcsoccerd2, wcsoccer, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "World Challenge Soccer (disp.rev.2)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, stargatp, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (Pinball)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, stargatp1, stargatp, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (rev.1)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, stargatp2, stargatp, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (rev.2)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, stargatp3, stargatp, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (rev.3)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, stargatp4, stargatp, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (rev.4)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, stargatp5, stargatp, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (rev.5)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, shaqattq, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Shaq Attaq (rev.5)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, shaqattq2, shaqattq, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Shaq Attaq (rev.2)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1994, freddy, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Freddy: A Nightmare on Elm Street (rev.3)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1994, freddy4, freddy, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Freddy: A Nightmare on Elm Street (rev.4)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, bighurt, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Frank Thomas' Big Hurt (rev.3)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, waterwld, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Waterworld (rev.3)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, waterwld2, waterwld, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Waterworld (rev.2)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, snspares, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Strikes n' Spares (rev.6)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, snspares2, snspares, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Strikes n' Spares (rev.2)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, snspares1, snspares, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Strikes n' Spares (rev.1)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, andretti, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Mario Andretti", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1995, andretti4, andretti, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Mario Andretti (rev.T4)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1996, barbwire, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Barb Wire", MACHINE_IS_SKELETON_MECHANICAL) -GAME(1996, brooks, 0, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Brooks & Dunn (rev.T1)", MACHINE_IS_SKELETON_MECHANICAL) -GAME(2003, mac_zois, shaqattq, gts3a, gts3a, gts3a_state, init_gts3a, ROT0, "Aksioma", "Machina Zois Virtual Training Centre", MACHINE_IS_SKELETON_MECHANICAL) +GAME(1992, smb, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Super Mario Brothers", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1992, smb1, smb, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Super Mario Brothers (rev.1)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1992, smb2, smb, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Super Mario Brothers (rev.2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1992, smb3, smb, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Super Mario Brothers (rev.3)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1992, smbmush, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Super Mario Brothers Mushroom World", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1992, cueball, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Cue Ball Wizard", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1992, cueball2, cueball, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Cue Ball Wizard (rev.2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1992, cueball3, cueball, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Cue Ball Wizard (rev.3)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1993, sfight2, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Street Fighter II", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1993, sfight2a, sfight2, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Street Fighter II (rev.1)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1993, sfight2b, sfight2, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Street Fighter II (rev.2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1993, teedoffp, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Tee'd Off", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1993, teedoffp1, teedoffp, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Tee'd Off (rev.1)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1993, teedoffp3, teedoffp, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Tee'd Off (rev.3)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1993, gladiatp, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Gladiators", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1993, wipeout, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Wipeout (rev.2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1994, rescu911, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Rescue 911 (rev.1)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1994, wcsoccer, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "World Challenge Soccer (rev.1)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1994, wcsoccerd2, wcsoccer, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "World Challenge Soccer (disp.rev.2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, stargatp, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (Pinball)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, stargatp1, stargatp, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (rev.1)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, stargatp2, stargatp, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (rev.2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, stargatp3, stargatp, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (rev.3)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, stargatp4, stargatp, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (rev.4)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, stargatp5, stargatp, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Stargate (rev.5)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, shaqattq, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Shaq Attaq (rev.5)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, shaqattq2, shaqattq, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Shaq Attaq (rev.2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1994, freddy, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Freddy: A Nightmare on Elm Street (rev.3)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1994, freddy4, freddy, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Freddy: A Nightmare on Elm Street (rev.4)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, bighurt, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Frank Thomas' Big Hurt (rev.3)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, waterwld, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Waterworld (rev.3)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, waterwld2, waterwld, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Waterworld (rev.2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, snspares, 0, p0, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Strikes n' Spares (rev.6)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, snspares2, snspares, p0, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Strikes n' Spares (rev.2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, snspares1, snspares, p0, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Strikes n' Spares (rev.1)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, andretti, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Mario Andretti", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1995, andretti4, andretti, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Mario Andretti (rev.T4)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1996, barbwire, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Barb Wire", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1996, brooks, 0, p0, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Brooks & Dunn (rev.T1)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_IS_INCOMPLETE | MACHINE_SUPPORTS_SAVE ) +GAME(2003, mac_zois, shaqattq, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Aksioma", "Machina Zois Virtual Training Centre", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) diff --git a/src/mame/drivers/gts80.cpp b/src/mame/drivers/gts80.cpp index 75e573513e2..2d097ae79d8 100644 --- a/src/mame/drivers/gts80.cpp +++ b/src/mame/drivers/gts80.cpp @@ -30,6 +30,7 @@ Volcano 667 1 then M= M t Black Hole 668 1 then R (wait for score to flash) L then R (wait for flash or match) Haunted House 669 1 X Eclipse 671 1 then RW X +Critical Mass Status: - All machines are playable but read notes below. diff --git a/src/mame/drivers/gts80a.cpp b/src/mame/drivers/gts80a.cpp index 65d4c35b9b4..49d174884bf 100644 --- a/src/mame/drivers/gts80a.cpp +++ b/src/mame/drivers/gts80a.cpp @@ -37,6 +37,11 @@ The Games 691 1 X El Dorado 692 1 X Ice Fever 695 1 then unknown X Caveman PV810 1 then unknown X +**** Other Manufacturer **** +Commandos +Fast Draw +Mythology + Status: