| 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)); |
| 506 | } |
| 507 | |
| 508 | void N64Recomp::CGenerator::emit_cop1_cs_write(int reg) const { |
| 509 | fmt::print(output_file, "set_cop1_cs({});\n", gpr_to_string(reg)); |
no test coverage detected