| 490 | } |
| 491 | |
| 492 | void N64Recomp::CGenerator::emit_check_nan(int fpr, bool is_double) const { |
| 493 | fmt::print(output_file, "NAN_CHECK(ctx->f{}.{}); ", fpr, is_double ? "d" : "fl"); |
| 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)); |
no outgoing calls
no test coverage detected