| 543 | } |
| 544 | |
| 545 | void N64Recomp::CGenerator::emit_syscall(uint32_t instr_vram) const { |
| 546 | fmt::print(output_file, "recomp_syscall_handler(rdram, ctx, 0x{:08X});\n", instr_vram); |
| 547 | } |
| 548 | |
| 549 | void N64Recomp::CGenerator::emit_do_break(uint32_t instr_vram) const { |
| 550 | fmt::print(output_file, "do_break({});\n", instr_vram); |
no outgoing calls
no test coverage detected