| 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)); |
| 502 | } |
| 503 | |
| 504 | void N64Recomp::CGenerator::emit_cop1_cs_read(int reg) const { |
| 505 | fmt::print(output_file, "{} = get_cop1_cs();\n", gpr_to_string(reg)); |
no test coverage detected