| 494 | } |
| 495 | |
| 496 | void N64Recomp::CGenerator::emit_cop0_status_read(int reg) const { |
| 497 | fmt::print(output_file, "{} = cop0_status_read(ctx);\n", gpr_to_string(reg)); |
| 498 | } |
| 499 | |
| 500 | void N64Recomp::CGenerator::emit_cop0_status_write(int reg) const { |
| 501 | fmt::print(output_file, "cop0_status_write(ctx, {});", gpr_to_string(reg)); |
no test coverage detected