(nw) dec0.cpp: Correct Dragonninja MCU label & other misc comment clean ups

This commit is contained in:
braintro 2019-08-22 21:42:01 -05:00
parent cfd78bfa72
commit db3fc948ad

View File

@ -55,7 +55,7 @@ ToDo:
- Get rid of ROM patch in Hippodrome; - Get rid of ROM patch in Hippodrome;
- background pen in Birdie Try is presumably wrong. - background pen in Birdie Try is presumably wrong.
- Pixel clock frequency isn't verified; - Pixel clock frequency isn't verified;
- Finally, get a proper decap of the MCUs used by Dragonninja; - Finally, get a proper decap of the MCU used by Dragonninja
The current Dragonninja MCU program was made by hacking the expected startup The current Dragonninja MCU program was made by hacking the expected startup
@ -2339,7 +2339,7 @@ ROM_START( baddudes ) /* DE-0297-1 main board, DE-0299-1 sub/rom board */
ROM_REGION( 0x10000, "audiocpu", 0 ) /* Sound CPU */ ROM_REGION( 0x10000, "audiocpu", 0 ) /* Sound CPU */
ROM_LOAD( "ei07.8a", 0x8000, 0x8000, CRC(9fb1ef4b) SHA1(f4dd0773be93c2ad8b0faacd12939c531b5aa130) ) ROM_LOAD( "ei07.8a", 0x8000, 0x8000, CRC(9fb1ef4b) SHA1(f4dd0773be93c2ad8b0faacd12939c531b5aa130) )
ROM_REGION( 0x1000, "mcu", 0 ) /* i8751 microcontroller - see notes */ ROM_REGION( 0x1000, "mcu", 0 ) /* i8751 microcontroller */
ROM_LOAD( "ei31.9a", 0x0000, 0x1000, CRC(2a8745d2) SHA1(f15ab17b1e7836d603135f5c66ca2e3d72f6e4a2) ) ROM_LOAD( "ei31.9a", 0x0000, 0x1000, CRC(2a8745d2) SHA1(f15ab17b1e7836d603135f5c66ca2e3d72f6e4a2) )
ROM_REGION( 0x10000, "gfx1", 0 ) /* chars */ ROM_REGION( 0x10000, "gfx1", 0 ) /* chars */
@ -2387,7 +2387,7 @@ ROM_START( drgninja )
ROM_LOAD( "eg07.8a", 0x8000, 0x8000, CRC(001d2f51) SHA1(f186671f0450ccf9201577a5caf0efc490c6645e) ) ROM_LOAD( "eg07.8a", 0x8000, 0x8000, CRC(001d2f51) SHA1(f186671f0450ccf9201577a5caf0efc490c6645e) )
ROM_REGION( 0x1000, "mcu", 0 ) /* i8751 microcontroller - using hacked baddudes program */ ROM_REGION( 0x1000, "mcu", 0 ) /* i8751 microcontroller - using hacked baddudes program */
ROM_LOAD( "i8751", 0x0000, 0x1000, CRC(c3f6bc70) SHA1(3c80197dc70c6cb283df5d11d29a9d9baabcd99b) BAD_DUMP ) // Hand crafted, needs real dump ROM_LOAD( "eg31.9a", 0x0000, 0x1000, CRC(c3f6bc70) SHA1(3c80197dc70c6cb283df5d11d29a9d9baabcd99b) BAD_DUMP ) // Hand crafted, needs real dump
/* various graphic and sound roms also differ when compared to baddudes */ /* various graphic and sound roms also differ when compared to baddudes */
@ -2440,7 +2440,7 @@ ROM_START( drgninjab )
ROM_LOAD( "eg07.8a", 0x8000, 0x8000, CRC(001d2f51) SHA1(f186671f0450ccf9201577a5caf0efc490c6645e) ) ROM_LOAD( "eg07.8a", 0x8000, 0x8000, CRC(001d2f51) SHA1(f186671f0450ccf9201577a5caf0efc490c6645e) )
ROM_REGION( 0x1000, "mcu", 0 ) /* i8751 microcontroller */ ROM_REGION( 0x1000, "mcu", 0 ) /* i8751 microcontroller */
ROM_LOAD( "i8751", 0x0000, 0x1000, NO_DUMP ) ROM_LOAD( "i8751", 0x0000, 0x1000, NO_DUMP ) // Does this set actually have/need a MCU???
/* various graphic and sound roms also differ when compared to baddudes */ /* various graphic and sound roms also differ when compared to baddudes */