mirror of
https://github.com/holub/mame
synced 2025-06-06 12:53:46 +03:00
New working clones
------------------ Gals Panic EX (Korea) [Arcade-Projects] Mouse Trap (German, version 4) [Team Europe, rtw, f205v, darksoft, zacky] Nebulas Ray (prototype) [Arcade-Projects] Rod-Land (Japan bootleg with unencrypted program and GFX) [jordigahan]
This commit is contained in:
parent
f3ce398d3c
commit
ab5a06dd7d
@ -49,7 +49,11 @@ sony_cdu76s_device::sony_cdu76s_device(const machine_config &mconfig, const char
|
||||
|
||||
ROM_START(cdu76s)
|
||||
ROM_REGION(0x10000, "eprom", 0)
|
||||
ROM_LOAD("76s.1.1c.ic206", 0x00000, 0x10000, CRC(8a233f19) SHA1(5f3c3f1ec181cb7f18daea5c8c592f6910aac3b2) )
|
||||
ROM_DEFAULT_BIOS("1.1c")
|
||||
ROM_SYSTEM_BIOS( 0, "1.1c", "CDU76S firmware 1.1c" )
|
||||
ROMX_LOAD("76s.1.1c.ic206", 0x00000, 0x10000, CRC(8a233f19) SHA1(5f3c3f1ec181cb7f18daea5c8c592f6910aac3b2), ROM_BIOS(0))
|
||||
ROM_SYSTEM_BIOS( 1, "1.1a", "CDU76S firmware 1.1a" )
|
||||
ROMX_LOAD("76s.1.1a.ic206", 0x00000, 0x10000, CRC(1df044f9) SHA1(8d1f6ccd6fb5e04b987b9aa21e602a21df7505a4), ROM_BIOS(1)) // 95.06.01
|
||||
ROM_END
|
||||
|
||||
const tiny_rom_entry *sony_cdu76s_device::device_rom_region() const
|
||||
|
@ -2004,10 +2004,10 @@ ROM_START( mtrap )
|
||||
ROM_REGION( 0x0800, "gfx1", 0 )
|
||||
ROM_LOAD( "mtl_11d.11d", 0x0000, 0x0800, CRC(c6e4d339) SHA1(b091923e4d52e93d7c567afba217a10b2a3735fc) )
|
||||
|
||||
ROM_REGION( 0x140, "proms", 0 ) // h14 taken from bootleg, very likely same and matches teetert, but marked bad dump until verification - same note applies to mtrap clone sets
|
||||
ROM_LOAD( "74s288.h14", 0x0000, 0x0020, BAD_DUMP CRC(f76b4fcf) SHA1(197e0cc508ffeb5cefa4046bdfb158939d598225) ) // 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "vel5c_1.c5", 0x0020, 0x0100, CRC(43b35bb7) SHA1(0a0cecea8faff9f3ff4c2ceda0b5b25e8e1cd667) ) // 6301 according to the Mouse Trap manual
|
||||
ROM_LOAD( "74s288.d6", 0x0120, 0x0020, CRC(e26f9053) SHA1(eec35b6aa2c2d305418306bf4a1754a0583f109f) ) // 6331 according to the Mouse Trap manual
|
||||
ROM_REGION( 0x140, "proms", 0 )
|
||||
ROM_LOAD( "hrl14h.h14", 0x0000, 0x0020, CRC(f76b4fcf) SHA1(197e0cc508ffeb5cefa4046bdfb158939d598225) ) // 74S288 or 7603 - 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "vel5c-11.c5", 0x0020, 0x0100, CRC(43b35bb7) SHA1(0a0cecea8faff9f3ff4c2ceda0b5b25e8e1cd667) ) // 742S97 - 6301 according to the Mouse Trap manual
|
||||
ROM_LOAD( "hrl6d.d6", 0x0120, 0x0020, CRC(e26f9053) SHA1(eec35b6aa2c2d305418306bf4a1754a0583f109f) ) // 74S288 or 7603 - 6331 according to the Mouse Trap manual
|
||||
ROM_END
|
||||
|
||||
ROM_START( mtrap4 )
|
||||
@ -2034,9 +2034,38 @@ ROM_START( mtrap4 )
|
||||
ROM_LOAD( "mtl_11d.11d", 0x0000, 0x0800, CRC(c6e4d339) SHA1(b091923e4d52e93d7c567afba217a10b2a3735fc) )
|
||||
|
||||
ROM_REGION( 0x140, "proms", 0 )
|
||||
ROM_LOAD( "74s288.h14", 0x0000, 0x0020, BAD_DUMP CRC(f76b4fcf) SHA1(197e0cc508ffeb5cefa4046bdfb158939d598225) ) // 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "vel5c_1.c5", 0x0020, 0x0100, CRC(43b35bb7) SHA1(0a0cecea8faff9f3ff4c2ceda0b5b25e8e1cd667) ) // 6301 according to the Mouse Trap manual
|
||||
ROM_LOAD( "74s288.d6", 0x0120, 0x0020, CRC(e26f9053) SHA1(eec35b6aa2c2d305418306bf4a1754a0583f109f) ) // 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "hrl14h.h14", 0x0000, 0x0020, CRC(f76b4fcf) SHA1(197e0cc508ffeb5cefa4046bdfb158939d598225) ) // 74S288 or 7603 - 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "vel5c-11.c5", 0x0020, 0x0100, CRC(43b35bb7) SHA1(0a0cecea8faff9f3ff4c2ceda0b5b25e8e1cd667) ) // 742S97 - 6301 according to the Mouse Trap manual
|
||||
ROM_LOAD( "hrl6d.d6", 0x0120, 0x0020, CRC(e26f9053) SHA1(eec35b6aa2c2d305418306bf4a1754a0583f109f) ) // 74S288 or 7603 - 6331 according to the Mouse Trap manual
|
||||
ROM_END
|
||||
|
||||
ROM_START( mtrap4g )
|
||||
ROM_REGION( 0x10000, "maincpu", 0 )
|
||||
ROM_LOAD( "gmtl-4_11a.11a", 0xa000, 0x1000, CRC(d84aa55e) SHA1(e13fe6cd027f1afa751d4914e50fac8a02d90bd0) )
|
||||
ROM_LOAD( "gmtl-4_10a.10a", 0xb000, 0x1000, CRC(c4a83a69) SHA1(8b904fb7b6416e668b400475f6491af8ac66c49d) )
|
||||
ROM_LOAD( "gmtl-4_9a.9a", 0xc000, 0x1000, CRC(9b7e5e7a) SHA1(6c63f118c24cdce9bb1343e778eeb524296dd3e0) )
|
||||
ROM_LOAD( "gmtl-4_8a.8a", 0xd000, 0x1000, CRC(fbcf1572) SHA1(c5e9a7427544a61389b489542e8e12a5bc7b6741) )
|
||||
ROM_LOAD( "gmtl-4_7a.7a", 0xe000, 0x1000, CRC(7786e51b) SHA1(08535122b84898cd91bc39d65996f6030807e0bf) )
|
||||
ROM_LOAD( "gmtl-4_6a.6a", 0xf000, 0x1000, CRC(bbb535cd) SHA1(db24015170951c1c8dba68261d948214c7ec805d) )
|
||||
|
||||
ROM_REGION( 0x8000, "soundbd:audiocpu", 0 )
|
||||
ROM_LOAD( "mta-1_5a.5a", 0x6800, 0x0800, CRC(dbe4ec02) SHA1(34e965428dbb4b9c558927bb80d19cb550b53228) ) // Same data as other sets, but explicitly labeled MTA-1
|
||||
ROM_LOAD( "mta-1_6a.6a", 0x7000, 0x0800, CRC(c00f0c05) SHA1(398b0bc2a7e54b1e2326ed067bf6bb15cc52ed39) )
|
||||
ROM_LOAD( "mta-1_7a.7a", 0x7800, 0x0800, CRC(f3f16ca7) SHA1(3928c5da246c43036a7b4cbb140a1734d5f1fb03) )
|
||||
|
||||
ROM_REGION( 0x4000, "soundbd:cvsdcpu", 0 ) /* 16k for digital sound processor */
|
||||
ROM_LOAD( "mta-1_2a.2a", 0x0000, 0x1000, CRC(13db8ed3) SHA1(939352323bdcd7df25db5eb2e30f269bcaebe6af) ) // Same data as other sets, but explicitly labeled MTA-1
|
||||
ROM_LOAD( "mta-1_3a.3a", 0x1000, 0x1000, CRC(31bdfe5c) SHA1(b10bfe9e56dd617c5b4cd8b5bfec9c7f537b1086) )
|
||||
ROM_LOAD( "mta-1_4a.4a", 0x2000, 0x1000, CRC(1502d0e8) SHA1(8ef51ad4601299016f1821a5c65bec0199dd5474) )
|
||||
ROM_LOAD( "mta-1_1a.1a", 0x3000, 0x1000, CRC(658482a6) SHA1(c0d770fbeaa7cb3e0eef47d8caa0f8a78841692e) )
|
||||
|
||||
ROM_REGION( 0x0800, "gfx1", 0 )
|
||||
ROM_LOAD( "mtl-1_11d.11d", 0x0000, 0x0800, CRC(c6e4d339) SHA1(b091923e4d52e93d7c567afba217a10b2a3735fc) )
|
||||
|
||||
ROM_REGION( 0x140, "proms", 0 )
|
||||
ROM_LOAD( "hrl14h.h14", 0x0000, 0x0020, CRC(f76b4fcf) SHA1(197e0cc508ffeb5cefa4046bdfb158939d598225) ) // 74S288 or 7603 - 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "vel5c-11.c5", 0x0020, 0x0100, CRC(43b35bb7) SHA1(0a0cecea8faff9f3ff4c2ceda0b5b25e8e1cd667) ) // 742S97 - 6301 according to the Mouse Trap manual
|
||||
ROM_LOAD( "hrl6d.d6", 0x0120, 0x0020, CRC(e26f9053) SHA1(eec35b6aa2c2d305418306bf4a1754a0583f109f) ) // 74S288 or 7603 - 6331 according to the Mouse Trap manual
|
||||
ROM_END
|
||||
|
||||
ROM_START( mtrap3 )
|
||||
@ -2063,9 +2092,9 @@ ROM_START( mtrap3 )
|
||||
ROM_LOAD( "mtl_11d.11d", 0x0000, 0x0800, CRC(c6e4d339) SHA1(b091923e4d52e93d7c567afba217a10b2a3735fc) )
|
||||
|
||||
ROM_REGION( 0x140, "proms", 0 )
|
||||
ROM_LOAD( "74s288.h14", 0x0000, 0x0020, BAD_DUMP CRC(f76b4fcf) SHA1(197e0cc508ffeb5cefa4046bdfb158939d598225) ) // 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "vel5c_1.c5", 0x0020, 0x0100, CRC(43b35bb7) SHA1(0a0cecea8faff9f3ff4c2ceda0b5b25e8e1cd667) ) // 6301 according to the Mouse Trap manual
|
||||
ROM_LOAD( "74s288.d6", 0x0120, 0x0020, CRC(e26f9053) SHA1(eec35b6aa2c2d305418306bf4a1754a0583f109f) ) // 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "hrl14h.h14", 0x0000, 0x0020, CRC(f76b4fcf) SHA1(197e0cc508ffeb5cefa4046bdfb158939d598225) ) // 74S288 or 7603 - 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "vel5c-11.c5", 0x0020, 0x0100, CRC(43b35bb7) SHA1(0a0cecea8faff9f3ff4c2ceda0b5b25e8e1cd667) ) // 742S97 - 6301 according to the Mouse Trap manual
|
||||
ROM_LOAD( "hrl6d.d6", 0x0120, 0x0020, CRC(e26f9053) SHA1(eec35b6aa2c2d305418306bf4a1754a0583f109f) ) // 74S288 or 7603 - 6331 according to the Mouse Trap manual
|
||||
ROM_END
|
||||
|
||||
ROM_START( mtrap2 )
|
||||
@ -2092,9 +2121,9 @@ ROM_START( mtrap2 )
|
||||
ROM_LOAD( "mtl_11d.11d", 0x0000, 0x0800, CRC(c6e4d339) SHA1(b091923e4d52e93d7c567afba217a10b2a3735fc) )
|
||||
|
||||
ROM_REGION( 0x140, "proms", 0 )
|
||||
ROM_LOAD( "74s288.h14", 0x0000, 0x0020, BAD_DUMP CRC(f76b4fcf) SHA1(197e0cc508ffeb5cefa4046bdfb158939d598225) ) // 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "vel5c_1.c5", 0x0020, 0x0100, CRC(43b35bb7) SHA1(0a0cecea8faff9f3ff4c2ceda0b5b25e8e1cd667) ) // 6301 according to the Mouse Trap manual
|
||||
ROM_LOAD( "74s288.d6", 0x0120, 0x0020, CRC(e26f9053) SHA1(eec35b6aa2c2d305418306bf4a1754a0583f109f) ) // 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "hrl14h.h14", 0x0000, 0x0020, CRC(f76b4fcf) SHA1(197e0cc508ffeb5cefa4046bdfb158939d598225) ) // 74S288 or 7603 - 6331 according to the Mouse Trap manual
|
||||
ROM_LOAD( "vel5c-11.c5", 0x0020, 0x0100, CRC(43b35bb7) SHA1(0a0cecea8faff9f3ff4c2ceda0b5b25e8e1cd667) ) // 742S97 - 6301 according to the Mouse Trap manual
|
||||
ROM_LOAD( "hrl6d.d6", 0x0120, 0x0020, CRC(e26f9053) SHA1(eec35b6aa2c2d305418306bf4a1754a0583f109f) ) // 74S288 or 7603 - 6331 according to the Mouse Trap manual
|
||||
ROM_END
|
||||
|
||||
ROM_START( mtrapb )
|
||||
@ -2528,6 +2557,7 @@ GAME( 1980, phantom, spectar, phantoma, phantoma, spectar_state, init_spectar
|
||||
|
||||
GAME( 1981, mtrap, 0, mtrap, mtrap, exidy_state, empty_init, ROT0, "Exidy", "Mouse Trap (version 5)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1981, mtrap4, mtrap, mtrap, mtrap, exidy_state, empty_init, ROT0, "Exidy", "Mouse Trap (version 4)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1981, mtrap4g, mtrap, mtrap, mtrap, exidy_state, empty_init, ROT0, "Exidy", "Mouse Trap (German, version 4)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1981, mtrap3, mtrap, mtrap, mtrap, exidy_state, empty_init, ROT0, "Exidy", "Mouse Trap (version 3)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1981, mtrap2, mtrap, mtrap, mtrap, exidy_state, empty_init, ROT0, "Exidy", "Mouse Trap (version 2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1981, mtrapb, mtrap, mtrap, mtrap, exidy_state, empty_init, ROT0, "bootleg", "Mouse Trap (bootleg)", MACHINE_SUPPORTS_SAVE )
|
||||
|
@ -354,7 +354,7 @@ void go2000_state::go2000(machine_config &config)
|
||||
PALETTE(config, m_palette).set_format(palette_device::xBGR_555, 0x800);
|
||||
|
||||
|
||||
GENERIC_LATCH_8(config, "soundlatch").data_pending_callback().set_inputline(m_soundcpu, 0);;
|
||||
GENERIC_LATCH_8(config, "soundlatch").data_pending_callback().set_inputline(m_soundcpu, 0);
|
||||
|
||||
SPEAKER(config, "speaker").front_center();
|
||||
DAC_8BIT_R2R(config, "dac", 0).add_route(0, "speaker", 0.25); // unknown DAC
|
||||
|
@ -37,7 +37,7 @@
|
||||
| |_____________| |
|
||||
|_____________________________________________________________________________________________________________________________|
|
||||
|
||||
Main PCB marked Atari Games Gumball Rally Main (possibly hinting at a missing second PCB)
|
||||
Main PCB marked Atari Games @ 90 Gumball Rally Main
|
||||
Main components:
|
||||
1 x M68000 or compatible (exact type unknown as it's covered by a sticker)
|
||||
2 x M27512FI main CPU ROMs
|
||||
@ -52,6 +52,13 @@
|
||||
1 x selftest switch
|
||||
no dips
|
||||
|
||||
The manual also lists the following PCBs:
|
||||
Bar Graph Display PCB with 16 x 7-segment displays
|
||||
Score Display PCB with 16 x 7-segment displays
|
||||
Display Blanking PCB
|
||||
APB Triac PCB
|
||||
Steering Wheel PCB
|
||||
|
||||
TODO:
|
||||
- everything.
|
||||
*/
|
||||
|
@ -4305,6 +4305,63 @@ ROM_START( rodlandjb )
|
||||
ROM_END
|
||||
|
||||
|
||||
ROM_START( rodlandjb2 ) // very cheaply done PCB with unpopulated Okis; the same as the bootleg above but for smaller ROMs and unencrypted GFX.
|
||||
ROM_REGION( 0x80000, "maincpu", 0 )
|
||||
ROM_LOAD16_BYTE( "19.bin", 0x00000, 0x10000, CRC(028de21f) SHA1(04c88a0138dd119655b4a8a965617781a9a6ff71) )
|
||||
ROM_LOAD16_BYTE( "17.bin", 0x00001, 0x10000, CRC(9c720046) SHA1(8543f0942863b4aa5329572dd1f374ea18c29851) )
|
||||
ROM_LOAD16_BYTE( "20.bin", 0x20000, 0x10000, CRC(3f536d07) SHA1(cfcf47c42677fae204b3a7d70786d157279ba6e5) )
|
||||
ROM_LOAD16_BYTE( "18.bin", 0x20001, 0x10000, CRC(5aa61717) SHA1(3292cdafc10b412c06addc3c6d4e39ee70ff06e8) )
|
||||
ROM_LOAD16_BYTE( "12.bin", 0x40000, 0x10000, CRC(c5b1075f) SHA1(a8bcc0e9dbb4b731bc0b7e5a8e0efc3d142505b9) )
|
||||
ROM_LOAD16_BYTE( "11.bin", 0x40001, 0x10000, CRC(9ec61048) SHA1(71b6af054a528af04e23affff635a9358537cd3b) )
|
||||
|
||||
ROM_REGION( 0x20000, "audiocpu", 0 )
|
||||
ROM_LOAD16_BYTE( "2.bin", 0x00000, 0x10000, CRC(d26eae8f) SHA1(1c6d514e6d006f78fa7b24d18a3eb4c5a4c5cbce) )
|
||||
ROM_LOAD16_BYTE( "1.bin", 0x00001, 0x10000, CRC(04cf24bc) SHA1(e754cce3c83a7088daf90e753fbb0df9ef7fc9be) )
|
||||
|
||||
ROM_REGION( 0x80000, "scroll0", 0 )
|
||||
ROM_LOAD( "27.bin", 0x00000, 0x10000, CRC(673a5986) SHA1(659a7854210f461ca67fada778a4277332ad41d8) )
|
||||
ROM_LOAD( "28.bin", 0x10000, 0x10000, CRC(523a731d) SHA1(90da3644e0b7913dcdbe29261e901787dad9d830) )
|
||||
ROM_LOAD( "26.bin", 0x20000, 0x10000, CRC(4d0a5c97) SHA1(8ff64420e65502be586877db82f5a1d6b5e0b6f6) )
|
||||
ROM_LOAD( "29b.bin", 0x30000, 0x10000, CRC(2279cb76) SHA1(91db071d15ab92f830a7f0e136527698c1ad3ea9) )
|
||||
ROM_LOAD( "30.bin", 0x40000, 0x10000, CRC(b155f39e) SHA1(5c47176816baa263bf04c7e44ed611a14c26fbd3) )
|
||||
ROM_LOAD( "29a.bin", 0x50000, 0x10000, CRC(9fd628f1) SHA1(cdd81dcb2ccb138634ab7d39c08ec0c7f9835367) )
|
||||
ROM_LOAD( "31a.bin", 0x60000, 0x10000, CRC(a9bc5b84) SHA1(7766de2b451a3486ad02399b8742faa71465fada) )
|
||||
ROM_LOAD( "31b.bin", 0x70000, 0x10000, CRC(fb2faa69) SHA1(0c867c4b9bffc2fd38847f3f6b67ca488d86751a) )
|
||||
|
||||
ROM_REGION( 0x80000, "scroll1", 0 )
|
||||
ROM_LOAD( "21.bin", 0x00000, 0x10000, CRC(32fc0bc6) SHA1(93295e5db75825da227d4fb557654755dabc4ef5) )
|
||||
ROM_LOAD( "22.bin", 0x10000, 0x10000, CRC(0969daa9) SHA1(6298dd6522134479cd4bea9e32ed9e27228224e4) )
|
||||
ROM_LOAD( "13.bin", 0x20000, 0x10000, CRC(1203cdf6) SHA1(4af882ebd534e995b05a3a6673422904c5a9b49f) )
|
||||
ROM_LOAD( "14.bin", 0x30000, 0x10000, CRC(d53e094b) SHA1(4689284ac742932d26dd804a467bd2ad548c23a8) )
|
||||
ROM_LOAD( "24.bin", 0x40000, 0x10000, CRC(b04343e6) SHA1(871646815de2d3f3004da6b4814f015e6296755e) )
|
||||
ROM_LOAD( "23.bin", 0x50000, 0x10000, CRC(70aa7e2c) SHA1(08e75707192fc7496accdad48df22914eff16767) )
|
||||
ROM_LOAD( "15.bin", 0x60000, 0x10000, CRC(38ac846e) SHA1(788186914df9af3ea6c4b12eaec5c0fcb72940e2) )
|
||||
ROM_LOAD( "16.bin", 0x70000, 0x10000, CRC(5e31f0b2) SHA1(ab04ecb2a1147eda05ea3cadbe1c68c7a5bc543c) )
|
||||
|
||||
ROM_REGION( 0x20000, "scroll2", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "25.bin", 0x00000, 0x10000, CRC(4ca57cb6) SHA1(a665ee530644eb599fc9aa09676fb7acbf23accd) )
|
||||
|
||||
ROM_REGION( 0x80000, "sprites", 0 )
|
||||
ROM_LOAD( "4.bin", 0x00000, 0x10000, CRC(cfcf9f97) SHA1(02a5ac96d172dda138e95850a133158ab03f8f08) )
|
||||
ROM_LOAD( "5.bin", 0x10000, 0x10000, CRC(38c05d15) SHA1(a27e753e714f08fa37f3bcf11a15bc2b3640965e) )
|
||||
ROM_LOAD( "7.bin", 0x20000, 0x10000, CRC(e117cb72) SHA1(cceb60023e4a2dea16bf3796f146e161ec7a8046) )
|
||||
ROM_LOAD( "8.bin", 0x30000, 0x10000, CRC(2f9b40c3) SHA1(bc8e1f1e5f159db12035e5235a9d6bc6e96ef419) )
|
||||
ROM_LOAD( "3.bin", 0x40000, 0x10000, CRC(f6a88efd) SHA1(ac0cd9d1fcf4aae138eb7219a20d278f442e6bda) )
|
||||
ROM_LOAD( "6.bin", 0x50000, 0x10000, CRC(90a78af1) SHA1(da237a2671c864998d0dd415fef5163f516db7cb) )
|
||||
ROM_LOAD( "9.bin", 0x60000, 0x10000, CRC(427a0908) SHA1(cd201f4d157676fff2d74492791c0f979ad41f7d) )
|
||||
ROM_LOAD( "10.bin", 0x70000, 0x10000, CRC(53cc2c11) SHA1(beb9b760d8bcf4f4901a67b065d98d80b9ef7b99) )
|
||||
|
||||
ROM_REGION( 0x40000, "oki1", ROMREGION_ERASEFF )
|
||||
// Oki chip and ROMs not populated
|
||||
|
||||
ROM_REGION( 0x40000, "oki2", ROMREGION_ERASEFF )
|
||||
// Oki chip and ROMs not populated
|
||||
|
||||
ROM_REGION( 0x200, "proms", 0 ) // Priority PROM
|
||||
ROM_LOAD( "ps89013a.14m", 0x000, 0x200, CRC(8914e72d) SHA1(80a664471f14c8ed8544a5e226fdca425ab3c657) )
|
||||
ROM_END
|
||||
|
||||
|
||||
/***************************************************************************
|
||||
|
||||
[ Saint Dragon ]
|
||||
@ -5168,60 +5225,61 @@ void megasys1_state::init_monkelf()
|
||||
*************************************/
|
||||
|
||||
// Type Z
|
||||
GAME( 1988, lomakai, 0, system_Z, lomakai, megasys1_state, empty_init, ROT0, "Jaleco", "Legend of Makai (World)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, makaiden, lomakai, system_Z, lomakai, megasys1_state, empty_init, ROT0, "Jaleco", "Makai Densetsu (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, lomakai, 0, system_Z, lomakai, megasys1_state, empty_init, ROT0, "Jaleco", "Legend of Makai (World)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, makaiden, lomakai, system_Z, lomakai, megasys1_state, empty_init, ROT0, "Jaleco", "Makai Densetsu (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
|
||||
// Type A
|
||||
GAME( 1988, p47, 0, system_A, p47, megasys1_state, empty_init, ROT0, "Jaleco", "P-47 - The Phantom Fighter (World)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, p47j, p47, system_A, p47, megasys1_state, empty_init, ROT0, "Jaleco", "P-47 - The Freedom Fighter (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, p47je, p47, system_A, p47, megasys1_state, empty_init, ROT0, "Jaleco", "P-47 - The Freedom Fighter (Japan, Export)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, p47b, p47, p47b, p47, megasys1_state, empty_init, ROT0, "bootleg","P-47 - The Freedom Fighter (World, bootleg)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, kickoff, 0, system_A, kickoff, megasys1_state, empty_init, ROT0, "Jaleco", "Kick Off - Jaleco Cup (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, kickoffb, kickoff, kickoffb, kickoff, megasys1_state, empty_init, ROT0, "bootleg (Comodo)", "Kick Off - World Cup (bootleg)", MACHINE_IMPERFECT_SOUND | MACHINE_SUPPORTS_SAVE ) // OKI needs to be checked
|
||||
GAME( 1988, tshingen, 0, system_A, tshingen, megasys1_state, init_phantasm, ROT0, "Jaleco", "Shingen Samurai-Fighter (Japan, English)", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, tshingena,tshingen, system_A, tshingen, megasys1_state, init_phantasm, ROT0, "Jaleco", "Takeda Shingen (Japan, Japanese)", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, kazan, 0, system_A_iganinju, kazan, megasys1_state, init_iganinju, ROT0, "Jaleco", "Ninja Kazan (World)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, iganinju, kazan, system_A_iganinju, kazan, megasys1_state, init_iganinju, ROT0, "Jaleco", "Iga Ninjyutsuden (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, iganinjub,kazan, system_A_iganinju, kazan, megasys1_state, empty_init , ROT0, "bootleg","Iga Ninjyutsuden (Japan, bootleg)", MACHINE_IMPERFECT_SOUND | MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, astyanax, 0, system_A, astyanax, megasys1_state, init_astyanax, ROT0, "Jaleco", "The Astyanax (EPROM version)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, astyanaxa,astyanax, system_A, astyanax, megasys1_state, init_astyanax, ROT0, "Jaleco", "The Astyanax (mask ROM version)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, lordofk, astyanax, system_A, astyanax, megasys1_state, init_astyanax, ROT0, "Jaleco", "The Lord of King (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, lordofkb, astyanax, system_A, astyanax, megasys1_state, empty_init, ROT0, "bootleg","The Lord of King (bootleg, not protected)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, lordofkbp,astyanax, system_A, astyanax, megasys1_state, init_lordofkbp,ROT0, "bootleg","The Lord of King (bootleg, protected)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, hachoo, 0, system_A_hachoo, hachoo, megasys1_state, init_astyanax, ROT0, "Jaleco", "Hachoo!", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, jitsupro, 0, system_A_jitsupro, jitsupro, megasys1_state, init_jitsupro, ROT0, "Jaleco", "Jitsuryoku!! Pro Yakyuu (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, plusalph, 0, system_A, plusalph, megasys1_state, init_astyanax, ROT270, "Jaleco", "Plus Alpha", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, stdragon, 0, system_A, stdragon, megasys1_state, init_stdragon, ROT0, "Jaleco", "Saint Dragon (set 1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, stdragona,stdragon, system_A, stdragon, megasys1_state, init_stdragona,ROT0, "Jaleco", "Saint Dragon (set 2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, stdragonb,stdragon, system_A, stdragon, megasys1_state, init_stdragonb,ROT0, "bootleg","Saint Dragon (bootleg)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rodland, 0, system_A, rodland, megasys1_state, init_rodland, ROT0, "Jaleco", "Rod-Land (World, set 1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rodlanda, rodland, system_A, rodland, megasys1_state, init_rodlandj, ROT0, "Jaleco", "Rod-Land (World, set 2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rodlandj, rodland, system_A, rodland, megasys1_state, init_rodlandj, ROT0, "Jaleco", "Rod-Land (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rittam, rodland, system_A, rodland, megasys1_state, init_rittam, ROT0, "Jaleco", "R&T (Rod-Land prototype)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rodlandjb,rodland, system_A, rodland, megasys1_state, init_rodlandjb,ROT0, "bootleg","Rod-Land (Japan bootleg)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, phantasm, avspirit, system_A, phantasm, megasys1_state, init_phantasm, ROT0, "Jaleco", "Phantasm (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, edfp, edf, system_A, edfp, megasys1_state, init_edfp, ROT0, "Jaleco", "E.D.F. : Earth Defense Force (Japan, prototype)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, inyourfa, 0, system_A, inyourfa, megasys1_state, init_iganinju, ROT0, "Jaleco", "In Your Face (North America, prototype)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1992, soldam, 0, system_A_soldam, soldam, megasys1_state, init_soldam, ROT0, "Jaleco", "Soldam", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1992, soldamj, soldam, system_A_soldam, soldam, megasys1_state, init_soldamj, ROT0, "Jaleco", "Soldam (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, p47, 0, system_A, p47, megasys1_state, empty_init, ROT0, "Jaleco", "P-47 - The Phantom Fighter (World)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, p47j, p47, system_A, p47, megasys1_state, empty_init, ROT0, "Jaleco", "P-47 - The Freedom Fighter (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, p47je, p47, system_A, p47, megasys1_state, empty_init, ROT0, "Jaleco", "P-47 - The Freedom Fighter (Japan, Export)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, p47b, p47, p47b, p47, megasys1_state, empty_init, ROT0, "bootleg","P-47 - The Freedom Fighter (World, bootleg)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, kickoff, 0, system_A, kickoff, megasys1_state, empty_init, ROT0, "Jaleco", "Kick Off - Jaleco Cup (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, kickoffb, kickoff, kickoffb, kickoff, megasys1_state, empty_init, ROT0, "bootleg (Comodo)", "Kick Off - World Cup (bootleg)", MACHINE_IMPERFECT_SOUND | MACHINE_SUPPORTS_SAVE ) // OKI needs to be checked
|
||||
GAME( 1988, tshingen, 0, system_A, tshingen, megasys1_state, init_phantasm, ROT0, "Jaleco", "Shingen Samurai-Fighter (Japan, English)", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, tshingena, tshingen, system_A, tshingen, megasys1_state, init_phantasm, ROT0, "Jaleco", "Takeda Shingen (Japan, Japanese)", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, kazan, 0, system_A_iganinju, kazan, megasys1_state, init_iganinju, ROT0, "Jaleco", "Ninja Kazan (World)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, iganinju, kazan, system_A_iganinju, kazan, megasys1_state, init_iganinju, ROT0, "Jaleco", "Iga Ninjyutsuden (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1988, iganinjub, kazan, system_A_iganinju, kazan, megasys1_state, empty_init , ROT0, "bootleg","Iga Ninjyutsuden (Japan, bootleg)", MACHINE_IMPERFECT_SOUND | MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, astyanax, 0, system_A, astyanax, megasys1_state, init_astyanax, ROT0, "Jaleco", "The Astyanax (EPROM version)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, astyanaxa, astyanax, system_A, astyanax, megasys1_state, init_astyanax, ROT0, "Jaleco", "The Astyanax (mask ROM version)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, lordofk, astyanax, system_A, astyanax, megasys1_state, init_astyanax, ROT0, "Jaleco", "The Lord of King (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, lordofkb, astyanax, system_A, astyanax, megasys1_state, empty_init, ROT0, "bootleg","The Lord of King (bootleg, not protected)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, lordofkbp, astyanax, system_A, astyanax, megasys1_state, init_lordofkbp,ROT0, "bootleg","The Lord of King (bootleg, protected)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, hachoo, 0, system_A_hachoo, hachoo, megasys1_state, init_astyanax, ROT0, "Jaleco", "Hachoo!", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, jitsupro, 0, system_A_jitsupro, jitsupro, megasys1_state, init_jitsupro, ROT0, "Jaleco", "Jitsuryoku!! Pro Yakyuu (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, plusalph, 0, system_A, plusalph, megasys1_state, init_astyanax, ROT270, "Jaleco", "Plus Alpha", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, stdragon, 0, system_A, stdragon, megasys1_state, init_stdragon, ROT0, "Jaleco", "Saint Dragon (set 1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, stdragona, stdragon, system_A, stdragon, megasys1_state, init_stdragona,ROT0, "Jaleco", "Saint Dragon (set 2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, stdragonb, stdragon, system_A, stdragon, megasys1_state, init_stdragonb,ROT0, "bootleg","Saint Dragon (bootleg)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rodland, 0, system_A, rodland, megasys1_state, init_rodland, ROT0, "Jaleco", "Rod-Land (World, set 1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rodlanda, rodland, system_A, rodland, megasys1_state, init_rodlandj, ROT0, "Jaleco", "Rod-Land (World, set 2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rodlandj, rodland, system_A, rodland, megasys1_state, init_rodlandj, ROT0, "Jaleco", "Rod-Land (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rittam, rodland, system_A, rodland, megasys1_state, init_rittam, ROT0, "Jaleco", "R&T (Rod-Land prototype)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rodlandjb, rodland, system_A, rodland, megasys1_state, init_rodlandjb,ROT0, "bootleg","Rod-Land (Japan bootleg with unencrypted program)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, rodlandjb2, rodland, system_A, rodland, megasys1_state, empty_init, ROT0, "bootleg","Rod-Land (Japan bootleg with unencrypted program and GFX)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, phantasm, avspirit, system_A, phantasm, megasys1_state, init_phantasm, ROT0, "Jaleco", "Phantasm (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, edfp, edf, system_A, edfp, megasys1_state, init_edfp, ROT0, "Jaleco", "E.D.F. : Earth Defense Force (Japan, prototype)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, inyourfa, 0, system_A, inyourfa, megasys1_state, init_iganinju, ROT0, "Jaleco", "In Your Face (North America, prototype)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1992, soldam, 0, system_A_soldam, soldam, megasys1_state, init_soldam, ROT0, "Jaleco", "Soldam", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1992, soldamj, soldam, system_A_soldam, soldam, megasys1_state, init_soldamj, ROT0, "Jaleco", "Soldam (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||
|
||||
// Type B
|
||||
GAME( 1991, avspirit, 0, system_B, avspirit, megasys1_state, init_avspirit, ROT0, "Jaleco", "Avenging Spirit", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, monkelf, avspirit, system_B_monkelf, avspirit, megasys1_state, init_monkelf, ROT0, "bootleg","Monky Elf (Korean bootleg of Avenging Spirit)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, edf, 0, system_B, edf, megasys1_state, init_edf, ROT0, "Jaleco", "E.D.F. : Earth Defense Force (set 1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, edfa, edf, system_B, edf, megasys1_state, init_edf, ROT0, "Jaleco", "E.D.F. : Earth Defense Force (set 2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, edfu, edf, system_B, edf, megasys1_state, init_edf, ROT0, "Jaleco", "E.D.F. : Earth Defense Force (North America)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, edfbl, edf, system_Bbl, edf, megasys1_state, empty_init, ROT0, "bootleg","E.D.F. : Earth Defense Force (bootleg)", MACHINE_NO_SOUND | MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1993, hayaosi1, 0, system_B_hayaosi1, hayaosi1, megasys1_state, init_hayaosi1, ROT0, "Jaleco", "Hayaoshi Quiz Ouza Ketteisen - The King Of Quiz", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, avspirit, 0, system_B, avspirit, megasys1_state, init_avspirit, ROT0, "Jaleco", "Avenging Spirit", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1990, monkelf, avspirit, system_B_monkelf, avspirit, megasys1_state, init_monkelf, ROT0, "bootleg","Monky Elf (Korean bootleg of Avenging Spirit)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, edf, 0, system_B, edf, megasys1_state, init_edf, ROT0, "Jaleco", "E.D.F. : Earth Defense Force (set 1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, edfa, edf, system_B, edf, megasys1_state, init_edf, ROT0, "Jaleco", "E.D.F. : Earth Defense Force (set 2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, edfu, edf, system_B, edf, megasys1_state, init_edf, ROT0, "Jaleco", "E.D.F. : Earth Defense Force (North America)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, edfbl, edf, system_Bbl, edf, megasys1_state, empty_init, ROT0, "bootleg","E.D.F. : Earth Defense Force (bootleg)", MACHINE_NO_SOUND | MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1993, hayaosi1, 0, system_B_hayaosi1, hayaosi1, megasys1_state, init_hayaosi1, ROT0, "Jaleco", "Hayaoshi Quiz Ouza Ketteisen - The King Of Quiz", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
|
||||
|
||||
// Type C
|
||||
GAME( 1991, 64street, 0, system_C, 64street, megasys1_state, init_64street, ROT0, "Jaleco", "64th. Street - A Detective Story (World)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, 64streetj,64street, system_C, 64street, megasys1_state, init_64street, ROT0, "Jaleco", "64th. Street - A Detective Story (Japan, set 1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, 64streetja,64street,system_C, 64street, megasys1_state, init_64street, ROT0, "Jaleco", "64th. Street - A Detective Story (Japan, set 2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1992, bigstrik, 0, system_C, bigstrik, megasys1_state, init_bigstrik, ROT0, "Jaleco", "Big Striker", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1993, chimerab, 0, system_C, chimerab, megasys1_state, init_chimerab, ROT0, "Jaleco", "Chimera Beast (Japan, prototype)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1993, cybattlr, 0, system_C, cybattlr, megasys1_state, init_cybattlr, ROT90, "Jaleco", "Cybattler", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, 64street, 0, system_C, 64street, megasys1_state, init_64street, ROT0, "Jaleco", "64th. Street - A Detective Story (World)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, 64streetj, 64street, system_C, 64street, megasys1_state, init_64street, ROT0, "Jaleco", "64th. Street - A Detective Story (Japan, set 1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1991, 64streetja, 64street, system_C, 64street, megasys1_state, init_64street, ROT0, "Jaleco", "64th. Street - A Detective Story (Japan, set 2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1992, bigstrik, 0, system_C, bigstrik, megasys1_state, init_bigstrik, ROT0, "Jaleco", "Big Striker", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1993, chimerab, 0, system_C, chimerab, megasys1_state, init_chimerab, ROT0, "Jaleco", "Chimera Beast (Japan, prototype)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1993, cybattlr, 0, system_C, cybattlr, megasys1_state, init_cybattlr, ROT90, "Jaleco", "Cybattler", MACHINE_SUPPORTS_SAVE )
|
||||
|
||||
// Type D
|
||||
GAME( 1993, peekaboo, 0, system_D, peekaboo, megasys1_state, init_peekaboo, ROT0, "Jaleco", "Peek-a-Boo! (Japan, ver. 1.1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1993, peekaboou,peekaboo, system_D, peekaboo, megasys1_state, init_peekaboo, ROT0, "Jaleco", "Peek-a-Boo! (North America, ver 1.0)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1993, peekaboo, 0, system_D, peekaboo, megasys1_state, init_peekaboo, ROT0, "Jaleco", "Peek-a-Boo! (Japan, ver. 1.1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1993, peekaboou, peekaboo, system_D, peekaboo, megasys1_state, init_peekaboo, ROT0, "Jaleco", "Peek-a-Boo! (North America, ver 1.0)", MACHINE_SUPPORTS_SAVE )
|
||||
|
@ -1248,6 +1248,67 @@ ROM_START( nebulrayj )
|
||||
ROM_LOAD( "c366.bin", 0, 0x20, CRC(8c96f31d) SHA1(d186859cfc19a63266084372080d0a5bee687ae2) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( nebulrayp ) // every label handwritten
|
||||
ROM_REGION( 0x100000, "maincpu", 0 )
|
||||
ROM_LOAD32_WORD( "prgl_1-17.15b", 0x00002, 0x80000, CRC(9066aa9e) SHA1(5f9a07ccc255c93263fbe8a3ab7c88e4dcc29850) )
|
||||
ROM_LOAD32_WORD( "prgu_1-17.13b", 0x00000, 0x80000, CRC(c77f06d3) SHA1(5baf5337e99aa31f8ff07cad217c5186ed63892b) )
|
||||
|
||||
ROM_REGION16_LE( 0x80000, "c75data", 0 ) // sound data, seems much earlier than the other sets
|
||||
ROM_LOAD( "sprg.5b", 0x00000, 0x80000, CRC(e32c099f) SHA1(e7214bda9c4ee1ad99aeac827520e69a723dfb8f) ) // 11xxxxxxxxxxxxxxxxx = 0xFF
|
||||
|
||||
ROM_REGION( 0x1000000, "c352", 0 ) // on hi-pric P43 B SYSFL REX 64MB8 PCB G327R61100 (G327R63100), samples, same as the other sets but split in smaller ROMs
|
||||
ROM_LOAD( "rom0_e-30.ic5", 0x000000, 0x80000, CRC(beee81e6) SHA1(13f2b0316c6466cdd9ad63a1345dc56dc7883297) )
|
||||
ROM_LOAD( "rom1_a1.ic6", 0x080000, 0x80000, CRC(91a88946) SHA1(7f51a63e0dd09adae52f6476049949635c23adfa) )
|
||||
ROM_LOAD( "rom2_22.ic7", 0x100000, 0x80000, CRC(ef492d2b) SHA1(672175e67957be683d9b0507f2a03b6293ae359b) )
|
||||
ROM_LOAD( "rom3_w3.ic8", 0x180000, 0x80000, CRC(5d4900e1) SHA1(2434517c66e3cbe01ecaed025273ab05e267108f) )
|
||||
|
||||
ROM_REGION( 0x1000000, "c355spr", 0 ) // on MEMEXT OBJ EPROM PCB 8635903200 (8635903300), almost same as the other sets, but split in smaller ROMs
|
||||
ROM_LOAD32_BYTE( "a0.1a", 0x000000, 0x80000, CRC(e6ecca1a) SHA1(310d8a40400d022003e88f19ae880fb1325294cf) )
|
||||
ROM_LOAD32_BYTE( "b0.1b", 0x000001, 0x80000, CRC(004f6665) SHA1(56775749653ad968a6a4c0a335b28a3e72f53eac) )
|
||||
ROM_LOAD32_BYTE( "c0.1c", 0x000002, 0x80000, CRC(58ce8745) SHA1(25774961408d4164295c056bf0381907b2ae17cc) )
|
||||
ROM_LOAD32_BYTE( "d0.1d", 0x000003, 0x80000, CRC(94913c00) SHA1(89acec4409d3f56bfb8fc3bead5c93214e42ec63) )
|
||||
ROM_LOAD32_BYTE( "a1.2a", 0x200000, 0x80000, CRC(4681329b) SHA1(871c01c3bfc84cb4f75d01dbc98798a593da6715) )
|
||||
ROM_LOAD32_BYTE( "b1.2b", 0x200001, 0x80000, CRC(8464608d) SHA1(99cdb43485ce9c9bc759399a0d002861e2586ae0) )
|
||||
ROM_LOAD32_BYTE( "c1.2c", 0x200002, 0x80000, CRC(8d82b485) SHA1(a431f5b1f15a8539f83edf198587597660f3e23b) )
|
||||
ROM_LOAD32_BYTE( "d1.2d", 0x200003, 0x80000, CRC(f0b10fa7) SHA1(f0fed84fe655fe9ea47b9b607745b1728018d81f) )
|
||||
ROM_LOAD32_BYTE( "a2.3a", 0x400000, 0x80000, CRC(03908666) SHA1(a9b82a8f16101522fa3df6cbab65afcba296fabd) )
|
||||
ROM_LOAD32_BYTE( "b2.3b", 0x400001, 0x80000, CRC(ebfeb8d6) SHA1(7a8a126ddd900e3cf596949e141c80ec9cf411be) )
|
||||
ROM_LOAD32_BYTE( "c2.3c", 0x400002, 0x80000, CRC(9b3c02dc) SHA1(a9717b7940ea23f538ef9973908f883573acf928) )
|
||||
ROM_LOAD32_BYTE( "d2.3d", 0x400003, 0x80000, CRC(07767b77) SHA1(053cb730eabd70f928197e2b1151e36d52ffa718) )
|
||||
ROM_LOAD32_BYTE( "a3.4a", 0x600000, 0x80000, CRC(ac6502a0) SHA1(5afd6ddc72535f1db6a3cd6d28eaabb73b9796f6) )
|
||||
ROM_LOAD32_BYTE( "b3.4b", 0x600001, 0x80000, CRC(73eca091) SHA1(9920dcf4de599a91e4eff388ca16dc0e6ff2b2df) )
|
||||
ROM_LOAD32_BYTE( "c3.4c", 0x600002, 0x80000, CRC(ea718267) SHA1(70a06cb83b90daddeda1bb823e933b7f978cb2f7) )
|
||||
ROM_LOAD32_BYTE( "d3.4d", 0x600003, 0x80000, CRC(b22d1d10) SHA1(02c3dd7a6b19c14ace0cef3978473a77cabf32ed) )
|
||||
ROM_LOAD32_BYTE( "a4.5a", 0x800000, 0x80000, CRC(c1da92b6) SHA1(57912d5993e46508d3432c093ac746cc3426467f) )
|
||||
ROM_LOAD32_BYTE( "b4.5b", 0x800001, 0x80000, CRC(7b00567d) SHA1(7ec2f3d63f1e5c667263d21644cc421e25d577b7) )
|
||||
ROM_LOAD32_BYTE( "c4.5c", 0x800002, 0x80000, CRC(d46ef578) SHA1(a9265380b0ae4bf209c8a754db834e898ae09b92) )
|
||||
ROM_LOAD32_BYTE( "d4.5d", 0x800003, 0x80000, CRC(ffff82d9) SHA1(db4b57ac44dca14cc043827d77eb6958214c17c3) )
|
||||
ROM_LOAD32_BYTE( "a5.6a", 0xa00000, 0x80000, CRC(6b171a66) SHA1(9a9cced3949ebdc9335e1029126a5bc5e9ff543a) )
|
||||
ROM_LOAD32_BYTE( "b5.6b", 0xa00001, 0x80000, CRC(ce576891) SHA1(559f2840831e52f1fc105a9a4d6193891655b752) )
|
||||
ROM_LOAD32_BYTE( "c5.6c", 0xa00002, 0x80000, CRC(d04ebb7a) SHA1(12de79e9130af93e7fd78f21549670c4c5cd70d8) )
|
||||
ROM_LOAD32_BYTE( "d5.6d", 0xa00003, 0x80000, CRC(96aa1d38) SHA1(8d3b4771acd0b7e4829afdc520e1ed6d5adf823c) )
|
||||
ROM_LOAD32_BYTE( "a6.7a", 0xc00000, 0x80000, CRC(c423ddd4) SHA1(dbccdcbfa96ce8c20d93520fd6e0af03a98da787) )
|
||||
ROM_LOAD32_BYTE( "b6.7b", 0xc00001, 0x80000, CRC(4f51fc57) SHA1(d1655f6aeaa0f16cd7c888430ef437bf5341e323) )
|
||||
ROM_LOAD32_BYTE( "c6.7c", 0xc00002, 0x80000, CRC(0c763fdb) SHA1(037456f6952dfdad045e8c01adb80881e6983d93) )
|
||||
ROM_LOAD32_BYTE( "d6.7d", 0xc00003, 0x80000, CRC(82d6cef2) SHA1(d4158e6cb9f747bb2af662044262dc9efe306bc2) )
|
||||
ROM_LOAD32_BYTE( "a7.8a", 0xe00000, 0x80000, CRC(811ccd6b) SHA1(875615a0662b2f756e2d00dcd85c3dddcac972e8) )
|
||||
ROM_LOAD32_BYTE( "b7.8b", 0xe00001, 0x80000, CRC(2ee75fc6) SHA1(6d21dd6f62efc99e3a367328edab774cced87129) ) // 99.999809% identical to the other sets' data
|
||||
ROM_LOAD32_BYTE( "c7.8c", 0xe00002, 0x80000, CRC(e22194fd) SHA1(b2f084c80437b3e22f564760e59ecb7a0dd748c8) )
|
||||
ROM_LOAD32_BYTE( "d7.8d", 0xe00003, 0x80000, CRC(4b682344) SHA1(4f8e904708451dfe7656b0923ff8cdd9b131ee6d) ) // 99.999809% identical to the other sets' data
|
||||
|
||||
ROM_REGION( 0x400000, "c123tmap", 0 ) // same as the other sets
|
||||
ROM_LOAD( "nr1-chr0", 0x000000, 0x100000,CRC(8d5b54ea) SHA1(616d5729f474da91da19a8246066280652da998c) )
|
||||
ROM_LOAD( "nr1-chr1", 0x100000, 0x100000,CRC(cd21630c) SHA1(9974c0eb1051ca52f001e6631264a1936bb50620) )
|
||||
ROM_LOAD( "nr1-chr2", 0x200000, 0x100000,CRC(70a11023) SHA1(bead486a86bd96c6fdfd2ea4d4d37c38bbe9bfbb) )
|
||||
ROM_LOAD( "nr1-chr3", 0x300000, 0x100000,CRC(8f4b1d51) SHA1(b48fb2c8ccd9105a5b48be44dd3fe4309769efa4) )
|
||||
|
||||
ROM_REGION( 0x80000, "c123tmap:mask", 0 ) // same as the other sets
|
||||
ROM_LOAD( "nr1-sha0", 0, 0x80000,CRC(ca667e13) SHA1(685032603224cb81bcb85361921477caec570d5e) )
|
||||
|
||||
ROM_REGION( 0x20, "proms", 0 ) // custom key data?
|
||||
ROM_LOAD( "c366.bin", 0, 0x20, CRC(8c96f31d) SHA1(d186859cfc19a63266084372080d0a5bee687ae2) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gslgr94u )
|
||||
ROM_REGION( 0x100000, "maincpu", 0 ) /* main program */
|
||||
ROM_LOAD32_WORD( "gse2mprl.15b", 0x00002, 0x80000, CRC(a514349c) SHA1(1f7ec81cd6193410d2f01e6f0f84878561fc8035) )
|
||||
@ -1974,6 +2035,7 @@ ROM_END
|
||||
/* YEAR, NAME, PARENT, MACHINE, INPUT, CLASS, INIT, MONITOR,COMPANY,FULLNAME, FLAGS */
|
||||
GAME( 1994, nebulray, 0, namconb1, namconb1, namconb1_state, init_nebulray, ROT90, "Namco", "Nebulas Ray (World, NR2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1994, nebulrayj, nebulray, namconb1, namconb1, namconb1_state, init_nebulray, ROT90, "Namco", "Nebulas Ray (Japan, NR1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1994, nebulrayp, nebulray, namconb1, namconb1, namconb1_state, init_nebulray, ROT90, "Namco", "Nebulas Ray (prototype)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1994, ptblank, 0, namconb1, gunbulet, namconb1_state, init_gunbulet, ROT0, "Namco", "Point Blank (World, GN2 Rev B, set 1)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1994, ptblanka, ptblank, namconb1, gunbulet, namconb1_state, init_gunbulet, ROT0, "Namco", "Point Blank (World, GN2 Rev B, set 2)", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1994, gunbuletj, ptblank, namconb1, gunbulet, namconb1_state, init_gunbulet, ROT0, "Namco", "Gun Bullet (Japan, GN1)", MACHINE_SUPPORTS_SAVE )
|
||||
|
@ -1200,6 +1200,36 @@ ROM_START( galpani4k ) /* ROM-BOARD NEP-16 part number GP04K00372 with extra sou
|
||||
ROM_LOAD( "gp4-301-01.u7", 0x200000, 0x200000, CRC(886ef77f) SHA1(047d5fecf2034339c69b2cb605b623a814a18f0d) ) // Changed some samples when compared to U4 ROM
|
||||
ROM_END
|
||||
|
||||
/*
|
||||
The Gals Panic EX version is very strange.
|
||||
|
||||
Found on a green cart which is generally known to be for Asian region. It boots with the Asia BIOS and machine.
|
||||
But it's clearly meant for Korea as it shows a Korean region warning and KA+cat Korean version of Kaneko
|
||||
*/
|
||||
ROM_START( galpaniex ) /* ROM-BOARD NEP-16 part number GP04K01334 with extra sound sample ROM at U7 */
|
||||
SKNS_ASIA
|
||||
|
||||
ROM_REGION32_BE( 0x200000, "user1", 0 ) // SH-2 Code mapped at 0x04000000
|
||||
ROM_LOAD16_BYTE( "gpex_even_u10_d804_2001-2-6.u10", 0x000000, 0x100000, CRC(d3b504e6) SHA1(c5b3e06ee35386db5e0032b4cb7d49b7fbbcf531) ) // GPEX even U10 2001/2/6 D804
|
||||
ROM_LOAD16_BYTE( "gpex_odd_u8_14c6_2001-2-6.u8", 0x000001, 0x100000, CRC(f3fe305a) SHA1(99d2f4e0857ebffd93674de22fb2836353f68974) ) // GPEX odd U8 2001/2/6 14C6
|
||||
|
||||
ROM_REGION( 0x400000, "spritegen", 0 ) // Sprites
|
||||
ROM_LOAD( "gp4-100-00.u24", 0x000000, 0x200000, CRC(1df61f01) SHA1(a9e95bbb3013e8f2fd01243b1b392ff07b4f7d02) )
|
||||
ROM_LOAD( "gp4-101-00.u20", 0x200000, 0x100000, CRC(8e2c9349) SHA1(a58fa9bcc9684ed4558e3395d592b64a1978a902) )
|
||||
|
||||
ROM_REGION( 0x400000, "gfx2", 0 ) // Tiles Plane A
|
||||
ROM_LOAD( "gp4-200-00.u16", 0x000000, 0x200000, CRC(f0781376) SHA1(aeab9553a9af922524e528eb2d019cf36b6e2094) )
|
||||
ROM_LOAD( "gp4-201-00.u18", 0x200000, 0x200000, CRC(10c4b183) SHA1(80e05f3932495ad4fc9bf928fa66e6d2931bbb06) )
|
||||
|
||||
ROM_REGION( 0x800000, "gfx3", ROMREGION_ERASE00 ) // Tiles Plane B
|
||||
// First 0x040000 bytes (0x03ff Tiles) are RAM Based Tiles
|
||||
// 0x040000 - 0x3fffff empty?
|
||||
|
||||
ROM_REGION( 0x400000, "ymz", 0 ) // Samples
|
||||
ROM_LOAD( "gp4-300-00.u4", 0x000000, 0x200000, CRC(8374663a) SHA1(095512564f4de25dc3752d9fbd254b9dabd16d1b) ) // Doesn't seem to use these samples at all
|
||||
ROM_LOAD( "gp4-301-01.u7", 0x200000, 0x200000, CRC(886ef77f) SHA1(047d5fecf2034339c69b2cb605b623a814a18f0d) ) // Changed some samples when compared to U4 ROM
|
||||
ROM_END
|
||||
|
||||
ROM_START( galpanidx )
|
||||
SKNS_ASIA
|
||||
|
||||
@ -1955,8 +1985,9 @@ GAME( 1996, skns, 0, skns, skns, skns_state, empty_init, RO
|
||||
GAME( 1996, galpani4, skns, sknse, cyvern, skns_state, init_galpani4, ROT0, "Kaneko", "Gals Panic 4 (Europe)", MACHINE_IMPERFECT_GRAPHICS | MACHINE_NO_SOUND ) // 2nd sound ROM wasn't dumped, it's different than GP4-301-01
|
||||
GAME( 1996, galpani4j, galpani4, sknsj, cyvern, skns_state, init_galpani4, ROT0, "Kaneko", "Gals Panic 4 (Japan)", MACHINE_IMPERFECT_GRAPHICS )
|
||||
GAME( 1996, galpani4k, galpani4, sknsk, cyvern, skns_state, init_galpani4, ROT0, "Kaneko", "Gals Panic 4 (Korea)", MACHINE_IMPERFECT_GRAPHICS )
|
||||
GAME( 2000, galpaniex, galpani4, sknsa, cyvern, skns_state, init_galpani4, ROT0, "Kaneko", "Gals Panic EX (Korea)", MACHINE_IMPERFECT_GRAPHICS ) // copyright 2000, re-release for the Asian/Korean market?
|
||||
GAME( 2001, galpanidx, galpani4, sknsa, cyvern, skns_state, init_galpani4, ROT0, "Kaneko", "Gals Panic DX (Asia)", MACHINE_IMPERFECT_GRAPHICS ) // copyright 2001, re-release for the Asian market?
|
||||
// there is a Gals Panic 4 version with 'Gals Panic SU' title as well, seen for sale in Korea (different to the Gals Panic SU clone of galpans2)
|
||||
// known to exist: Korean Gals Panic 4 re-release titled 'Gals Panic SU' and copyright 2000, this is different than the Gals Panic SU clone of galpans2
|
||||
|
||||
GAME( 1996, jjparads, skns, sknsj, skns_1p, skns_state, init_jjparads, ROT0, "Electro Design", "Jan Jan Paradise", MACHINE_IMPERFECT_GRAPHICS )
|
||||
|
||||
|
@ -13590,6 +13590,7 @@ mtrap // (c) 1981
|
||||
mtrap2 // (c) 1981
|
||||
mtrap3 // (c) 1981
|
||||
mtrap4 // (c) 1981
|
||||
mtrap4g // (c) 1981
|
||||
mtrapb // bootleg
|
||||
mtrapb2 // bootleg
|
||||
panzer // (c) 1980 Proel (bootleg)
|
||||
@ -22941,6 +22942,7 @@ rodland // (c) 1990
|
||||
rodlanda // (c) 1990
|
||||
rodlandj // (c) 1990 (Japan)
|
||||
rodlandjb // bootleg
|
||||
rodlandjb2 // bootleg
|
||||
soldam // (c) 1992
|
||||
soldamj // (c) 1992 (Japan)
|
||||
stdragon // (c) 1989
|
||||
@ -31665,6 +31667,7 @@ machbrkr // (c) 1995 (World)
|
||||
machbrkrj // (c) 1995 (Japan)
|
||||
nebulray // (c) 1994 (World)
|
||||
nebulrayj // (c) 1994 (Japan)
|
||||
nebulrayp // prototype
|
||||
outfxies // (c) 1994 (World)
|
||||
outfxiesa // (c) 1994 (Korea?)
|
||||
outfxiesj // (c) 1994 (Japan)
|
||||
@ -40053,7 +40056,8 @@ cyvernj // 1998.02 (c) 1998 Kaneko (Japan)
|
||||
galpani4 // 1996.09 (c) 1996 Kaneko (Europe)
|
||||
galpani4j // 1996.09 (c) 1996 Kaneko (Japan)
|
||||
galpani4k // 1996.09 (c) 1996 Kaneko (Korea)
|
||||
galpanidx // 1996.09 (c) 1996 Kaneko (Asia)
|
||||
galpanidx // 2001
|
||||
galpaniex // 2000
|
||||
galpanis // 1997.04 (c) 1997 Kaneko (Europe)
|
||||
galpanisa // 1997.04 (c) 1997 Kaneko (Asia)
|
||||
galpanise // 1997.04 (c) 1997 Kaneko (Europe)
|
||||
|
Loading…
Reference in New Issue
Block a user