diff options
author | 2019-12-22 11:30:19 +0100 | |
---|---|---|
committer | 2019-12-22 11:30:19 +0100 | |
commit | c85f53c511e275540e63b57f7407bb6f2c36a496 (patch) | |
tree | 15550d4a69870243c3ce97a760721f55562bb4fd | |
parent | 17a99a4dd9a57d96c4579779388361b4d687fcf3 (diff) |
atetris.cpp: UM3482 raw dump for "atetb3482" [Sean Riddle] (#6086)
* atetris.cpp: UM3482 raw dump for "atetb3482" [Sean Riddle]
(nw) This is a raw dump from a visual decap, but the ROM layout and the note format are not understood, so it cannot be properly hooked up. Any help on this will be appreciated. Full info: http://www.seanriddle.com/um348x/
* Move um3482 to its own region (nw)
-rw-r--r-- | src/mame/drivers/atetris.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mame/drivers/atetris.cpp b/src/mame/drivers/atetris.cpp index e43c0051391..6096025f6d8 100644 --- a/src/mame/drivers/atetris.cpp +++ b/src/mame/drivers/atetris.cpp @@ -588,9 +588,13 @@ ROM_START( atetb3482 ) ROM_REGION( 0x10000, "gfx1", 0 ) ROM_LOAD( "f8-d2.bin", 0x0000, 0x10000, CRC(84a1939f) SHA1(d8577985fc8ed4e74f74c68b7c00c4855b7c3270) ) - ROM_REGION( 0x08000, "tunes", 0 ) // Not hooked up. Same 8K repeated four times - ROM_LOAD( "k1-d3.bin", 0x00000, 0x08000, CRC(ce51c82b) SHA1(f90ed16f817e6b2a22b69db20348386b9c1ecb67) ) + ROM_REGION( 0x8000, "soundcpu", 0 ) // Not hooked up + ROM_LOAD( "k1-d3.bin", 0x0000, 0x8000, CRC(ce51c82b) SHA1(f90ed16f817e6b2a22b69db20348386b9c1ecb67) ) // Same 8K repeated four times + // See http://www.seanriddle.com/um348x/ for notes about the UM3482 + ROM_REGION( 0x01c0, "um3482", 0 ) // Not hooked up + ROM_LOAD( "um3482araw.bin", 0x0000, 0x01c0, BAD_DUMP CRC(5871d564) SHA1(4203b6513ad08ece26177778e5defeb862d1a81d) ) // Raw dump from visual decap, needs further analysis + /* Not dumped, unused */ ROM_REGION( 0x71c, "plds", 0 ) ROM_LOAD( "pal16r4.1n" , 0x000, 0x104, NO_DUMP ) |