| 407 | } |
| 408 | |
| 409 | void N64Recomp::CGenerator::emit_function_call_lookup(uint32_t addr) const { |
| 410 | fmt::print(output_file, "LOOKUP_FUNC(0x{:08X})(rdram, ctx);\n", addr); |
| 411 | } |
| 412 | |
| 413 | void N64Recomp::CGenerator::emit_function_call_by_register(int reg) const { |
| 414 | fmt::print(output_file, "LOOKUP_FUNC({})(rdram, ctx);\n", gpr_to_string(reg)); |
no outgoing calls
no test coverage detected