| 333 | extern RspUcodeFunc aspMain; |
| 334 | |
| 335 | RspUcodeFunc* 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 | |
| 349 | extern "C" void recomp_entrypoint(uint8_t * rdram, recomp_context * ctx); |
| 350 | gpr get_entrypoint_address(); |
nothing calls this directly
no outgoing calls
no test coverage detected