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

Function get_rsp_microcode

src/main/main.cpp:335–347  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

333extern RspUcodeFunc aspMain;
334
335RspUcodeFunc* get_rsp_microcode(const OSTask* task) {
336 switch (task->t.type) {
337 case M_AUDTASK:
338 return aspMain;
339
340 // case M_NJPEGTASK:
341 // return njpgdspMain;
342
343 default:
344 fprintf(stderr, "Unknown task: %" PRIu32 "\n", task->t.type);
345 return nullptr;
346 }
347}
348
349extern "C" void recomp_entrypoint(uint8_t * rdram, recomp_context * ctx);
350gpr get_entrypoint_address();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected