mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
New systems marked not working
------------------------------ Alone Shettle Crew [f205v, Brian Troha, rtw, Scott Jackman, Sean Sutton, Smitdogg, The Dumping Union]
This commit is contained in:
parent
32f6f833ca
commit
be3f632ddf
@ -34143,6 +34143,7 @@ tubepb // (c) 1984 + bootleg
|
||||
|
||||
@source:nichibutsu/wiping.cpp
|
||||
rugrats // (c) 1983
|
||||
shettle // (c) 1984
|
||||
wiping // (c) 1982
|
||||
|
||||
@source:nintendo/aleck64.cpp
|
||||
|
@ -571,8 +571,46 @@ ROM_START( rugrats )
|
||||
ROM_LOAD( "e9.9e", 0x0100, 0x0100, CRC(4017a2a6) SHA1(dadef2de7a1119758c8e6d397aa42815b0218889) ) // high 4 bits
|
||||
ROM_END
|
||||
|
||||
// main PCB is marked: "PC-082A" on component side
|
||||
// sub PCB is marked: "MADE IN JAPAN", "SCO-102B(C)1983 GRC" on component side
|
||||
// main PCB is labeled: "NEW DIGIMATIC GARANZIA 6 MESI DATA OTTOBRE 1984" on component side
|
||||
// 2x D780C, 18.432 MHz XTAL, 2x 8 DIP switches banks
|
||||
// hardware seems to have similarities both with Wiping (video hardware) and the later Clash-Road / Fire Battle (inputs, sound hook-up)
|
||||
// has an unidentified "Z4" 24-pin chip, just like Fire Battle
|
||||
ROM_START( shettle )
|
||||
ROM_REGION( 0x8000, "maincpu", 0 )
|
||||
ROM_LOAD( "1.bin", 0x00000, 0x2000, CRC(e2b25df4) SHA1(781e09ca2ef03ded468b768261074f6e4a25720b) )
|
||||
ROM_LOAD( "2.bin", 0x02000, 0x2000, CRC(a24bf4ad) SHA1(fbe00dfb6ce2306c59e459440f403c3c5f49bdd3) )
|
||||
ROM_LOAD( "3.bin", 0x04000, 0x2000, CRC(b88e8213) SHA1(e3745ad1c25eaf8019dd9d46e3480f2ca8c5a7cf) )
|
||||
ROM_FILL( 0x06000, 0x2000, 0x00 ) // Accessed, could this range map to the Z4 device ?!
|
||||
|
||||
ROM_REGION( 0x10000, "audiocpu", 0 )
|
||||
ROM_LOAD( "d.bin", 0x0000, 0x2000, CRC(1e2e7365) SHA1(ad6d0c94d5cb172d3a29523706ccd901a72e90be) )
|
||||
|
||||
ROM_REGION( 0x1000, "chars", 0 )
|
||||
ROM_LOAD( "0.5d", 0x0000, 0x1000, CRC(fa6261da) SHA1(e7ab7eb2ab2ba2497d06606861a804d317d306ff) )
|
||||
|
||||
ROM_REGION( 0x2000, "sprites", 0 )
|
||||
ROM_LOAD( "e.bin", 0x0000, 0x2000, CRC(a3cef381) SHA1(ed511f5b695f0abdbaea8414d9de260f696f5318) )
|
||||
|
||||
ROM_REGION( 0x0340, "proms", 0 )
|
||||
ROM_LOAD( "prom-1.bin", 0x0000, 0x0020, CRC(1afc04f0) SHA1(38207cf3e15bac7034ac06469b95708d22b57da4) ) // unknown, same as clashrd.g4
|
||||
ROM_LOAD( "prom-5.3r", 0x0020, 0x0100, CRC(0f64edb9) SHA1(e1bc4acc0778ca13a3a2b8caa653bbf54a3507f9) ) // unknown
|
||||
ROM_LOAD( "prom-6.4h", 0x0120, 0x0100, CRC(1abbc864) SHA1(a28d35cb2492f74f847858475aef669c38c3574a) ) // unknown
|
||||
ROM_LOAD( "prom-7.7b", 0x0220, 0x0100, CRC(9e824f74) SHA1(03fcde2546b87286038ef93a6939c1c325f74998) ) // unknown, almost identical to clshroad.g10
|
||||
ROM_LOAD( "prom-4.2f", 0x0320, 0x0020, CRC(befab139) SHA1(748c49437067d2d0a99b359bb5d53841a22b4760) ) // unknown
|
||||
|
||||
ROM_REGION( 0x2000, "wiping:samples", 0 )
|
||||
ROM_LOAD( "4.bin", 0x0000, 0x2000, CRC(c9da4245) SHA1(961c3b52b7608a35493d753a3b482713198fd2eb) )
|
||||
|
||||
ROM_REGION( 0x0200, "wiping:soundproms", 0 ) // 4bit->8bit sample expansion PROMs
|
||||
ROM_LOAD( "prom-2.bin", 0x0000, 0x0100, CRC(bd2c080b) SHA1(9782bb5001e96db56bc29df398187f700bce4f8e) ) // low 4 bits, same as wiping, clshroad, firebatl
|
||||
ROM_LOAD( "prom-3.bin", 0x0100, 0x0100, CRC(4017a2a6) SHA1(dadef2de7a1119758c8e6d397aa42815b0218889) ) // high 4 bits, same as wiping, clshroad, firebatl
|
||||
ROM_END
|
||||
|
||||
} // anonymous namespace
|
||||
|
||||
|
||||
GAME( 1982, wiping, 0, wiping, wiping, wiping_state, empty_init, ROT90, "Nichibutsu", "Wiping", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1983, rugrats, wiping, wiping, rugrats, wiping_state, empty_init, ROT90, "Nichibutsu", "Rug Rats", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1982, wiping, 0, wiping, wiping, wiping_state, empty_init, ROT90, "Nichibutsu", "Wiping", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1983, rugrats, wiping, wiping, rugrats, wiping_state, empty_init, ROT90, "Nichibutsu", "Rug Rats", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1984, shettle, 0, wiping, wiping, wiping_state, empty_init, ROT90, "New Digimatic", "Alone Shettle Crew", MACHINE_NOT_WORKING | MACHINE_NO_SOUND | MACHINE_IMPERFECT_GRAPHICS | MACHINE_WRONG_COLORS | MACHINE_SUPPORTS_SAVE )
|
||||
|
Loading…
Reference in New Issue
Block a user