MCPcopy Create free account
hub / github.com/RevoSucks/BM64Recomp / bzero_recomp

Function bzero_recomp

src/game/recomp_api.cpp:278–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

276}
277
278extern "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
288extern "C" void osMapTLB_recomp(uint8_t* rdram, recomp_context* ctx) {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected