| 295 | } |
| 296 | |
| 297 | void FlushGenieRW(void) { |
| 298 | int32 x; |
| 299 | |
| 300 | if (RWWrap) { |
| 301 | for (x = 0; x < 0x8000; x++) { |
| 302 | ARead[x + 0x8000] = AReadG[x]; |
| 303 | BWrite[x + 0x8000] = BWriteG[x]; |
| 304 | } |
| 305 | free(AReadG); |
| 306 | free(BWriteG); |
| 307 | AReadG = NULL; |
| 308 | BWriteG = NULL; |
| 309 | RWWrap = 0; |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | readfunc GetReadHandler(int32 a) { |
| 314 | if (a >= 0x8000 && RWWrap) |
no outgoing calls
no test coverage detected