| 311 | } |
| 312 | |
| 313 | readfunc GetReadHandler(int32 a) { |
| 314 | if (a >= 0x8000 && RWWrap) |
| 315 | return AReadG[a - 0x8000]; |
| 316 | else |
| 317 | return ARead[a]; |
| 318 | } |
| 319 | |
| 320 | void SetReadHandler(int32 start, int32 end, readfunc func) { |
| 321 | int32 x; |
no outgoing calls
no test coverage detected