A64: Implement FCVTAU (scalar)

This commit is contained in:
MerryMage 2018-06-30 12:17:37 +01:00
parent c0c7a26314
commit 27319822bb
2 changed files with 5 additions and 1 deletions

View file

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