mirror of
https://github.com/holub/mame
synced 2025-06-04 11:56:28 +03:00
quizshow.c: Dumped one of the gfx proms, the other one was wounded in action. [Siftware]
nw: before anyone asks, the font is unique i think, and definitely NOT the same one as atari proto cannonball
This commit is contained in:
parent
e2eb6ebf9f
commit
0754a4b72b
@ -421,11 +421,11 @@ ROM_START( quizshow )
|
||||
ROM_REGION( 0x0800, "gfx1", ROMREGION_ERASEFF )
|
||||
|
||||
ROM_REGION( 0x0200, "user1", 0 ) // gfx1
|
||||
ROM_LOAD_NIB_HIGH( "005466-01.m2", 0x0000, 0x0200, BAD_DUMP CRC(4f42fdd6) SHA1(f8ea4b582e26cad37b746174cdc9f1c7ae0819c3) ) // not dumped yet, placeholder taken from dominos.zip
|
||||
ROM_LOAD_NIB_LOW ( "005466-02.n2", 0x0000, 0x0200, BAD_DUMP CRC(957dd8df) SHA1(280457392f40cd66eae34d2fcdbd4d2142793402) ) // "
|
||||
ROM_LOAD_NIB_HIGH( "005466-01.m2", 0x0000, 0x0200, BAD_DUMP CRC(b2aa7578) SHA1(5c3eb80066420002bc3dcc7ca4ab6efad7ed4ae5) ) // missing rom, zerofilled
|
||||
ROM_LOAD_NIB_LOW ( "005466-02.n2", 0x0000, 0x0200, CRC(cd554367) SHA1(04da83eb6e2f86f88a3495072b98fbdaca485ae8) )
|
||||
|
||||
ROM_REGION( 0x0020, "proms", 0 )
|
||||
ROM_LOAD( "005465-01.f2", 0x0000, 0x0020, NO_DUMP ) // memory timing
|
||||
ROM_REGION( 0x0200, "proms", 0 )
|
||||
ROM_LOAD( "005465-01.f2", 0x0000, 0x0200, CRC(0fe46552) SHA1(d79b1ff0abfaba1ef2d564d1166c3696e0a1a3f1) ) // memory timing
|
||||
ROM_END
|
||||
|
||||
|
||||
@ -445,12 +445,9 @@ DRIVER_INIT_MEMBER(quizshow_state,quizshow)
|
||||
dest[tile << 4 | line | 0x400] = 0;
|
||||
|
||||
if (line >= 4 && line < 12)
|
||||
dest[tile << 4 | line] = gfxdata[tile << 3 | (line - 4)];
|
||||
dest[tile << 4 | line] = gfxdata[(tile ^ 0x3f) << 3 | (line - 4)];
|
||||
}
|
||||
}
|
||||
|
||||
// HACK out a gfxrom glitch, remove it when a good dump is out
|
||||
dest[0x208] = dest[0x209] = 0;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user