| 111 | static uint8 exntar[2048]; |
| 112 | |
| 113 | static void MooMirroring(void) { |
| 114 | if (mirrortodo < 0x4) |
| 115 | SetupCartMirroring(mirrortodo, 1, 0); |
| 116 | else if (mirrortodo == 0x4) { |
| 117 | FCEU_MemoryRand(exntar, sizeof(exntar), true); |
| 118 | SetupCartMirroring(4, 1, exntar); |
| 119 | AddExState(exntar, 2048, 0, "EXNR"); |
| 120 | } else |
| 121 | SetupCartMirroring(0, 0, 0); |
| 122 | } |
| 123 | |
| 124 | static int DoMirroring(FCEUFILE *fp) { |
| 125 | int t; |
no test coverage detected