A64: Implement FCVTPU (scalar)

This commit is contained in:
MerryMage 2018-06-30 12:19:02 +01:00
parent af661ef5a6
commit 49c4499a87
2 changed files with 5 additions and 1 deletions

View file

@ -218,4 +218,8 @@ bool TranslatorVisitor::FCVTPS_float(bool sf, Imm<2> type, Vec Vn, Reg Rd) {
return FloaingPointConvertSignedInteger(*this, sf, type, Vn, Rd, FP::RoundingMode::TowardsPlusInfinity);
}
bool TranslatorVisitor::FCVTPU_float(bool sf, Imm<2> type, Vec Vn, Reg Rd) {
return FloaingPointConvertUnsignedInteger(*this, sf, type, Vn, Rd, FP::RoundingMode::TowardsPlusInfinity);
}
} // namespace Dynarmic::A64