| 276 | } |
| 277 | |
| 278 | extern "C" void bzero_recomp(uint8_t* rdram, recomp_context* ctx) { |
| 279 | char* ptr = _arg<0, char*>(rdram, ctx); |
| 280 | u32 size = _arg<1, u32>(rdram, ctx); |
| 281 | |
| 282 | for (int i = 0; i < size; i++) { |
| 283 | ptr[i] = 0; |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | // Unimplemented stubs |
| 288 | extern "C" void osMapTLB_recomp(uint8_t* rdram, recomp_context* ctx) {} |
nothing calls this directly
no outgoing calls
no test coverage detected