| 71 | } |
| 72 | |
| 73 | recomp_func_t* test_get_function(int32_t vram) { |
| 74 | if (vram == 0x80100000) { |
| 75 | return write1; |
| 76 | } |
| 77 | assert(false); |
| 78 | return nullptr; |
| 79 | } |
| 80 | |
| 81 | void test_switch_error(const char* func, uint32_t vram, uint32_t jtbl) { |
| 82 | printf(" Switch-case out of bounds in %s at 0x%08X for jump table at 0x%08X\n", func, vram, jtbl); |
nothing calls this directly
no outgoing calls
no test coverage detected