trunk/src/mame/drivers/coolridr.c
| r21236 | r21237 | |
| 796 | 796 | if (m_b3romoffset!=0) |
| 797 | 797 | { |
| 798 | 798 | #if 0 |
| 799 | | // if we look in rom IC6 (+0x1400000) then the word before our offset is very often 0x0000 |
| 799 | // if we look in rom IC6 (+0x1400000) then the word before our offset is very often 0x0000 probably indicating that's the last word used |
| 800 | 800 | printf("rom offset %08x, previous values : ", m_b3romoffset); |
| 801 | 801 | for (int i=0;i<10;i++) |
| 802 | 802 | { |
| r21236 | r21237 | |
| 806 | 806 | printf("\n"); |
| 807 | 807 | #endif |
| 808 | 808 | #if 0 |
| 809 | | // if we look in rom IC6 (+0x1400000) then the word before our offset is very often 0x0000 probably indicating that's the last word used |
| 809 | // look at the values actually at the address we're using.. |
| 810 | // often have a similar form to |
| 811 | // 0002, 0020, 0000, 0200, 2000, 0002, 0020, 0000, 0200, 2000, |
| 812 | // 1 2 3 4 5 6 7 8 9 10 |
| 813 | // so you can see 1/6 2/7, 3/8, 4/9, 5/10 are often similar or the same |
| 810 | 814 | printf("rom offset %08x, values : ", m_b3romoffset); |
| 811 | 815 | for (int i=0;i<10;i++) |
| 812 | 816 | { |