| 74 | // ---------------------------------------------------------------------- |
| 75 | |
| 76 | void FixMMC3PRG(int V) { |
| 77 | if (V & 0x40) { |
| 78 | pwrap(0xC000, DRegBuf[6]); |
| 79 | pwrap(0x8000, ~1); |
| 80 | } else { |
| 81 | pwrap(0x8000, DRegBuf[6]); |
| 82 | pwrap(0xC000, ~1); |
| 83 | } |
| 84 | pwrap(0xA000, DRegBuf[7]); |
| 85 | pwrap(0xE000, ~0); |
| 86 | } |
| 87 | |
| 88 | void FixMMC3CHR(int V) { |
| 89 | int cbase = (V & 0x80) << 5; |
no outgoing calls
no test coverage detected