mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-26 12:32:58 +00:00
VFPv5: Implement VMAXNM
This commit is contained in:
@@ -1274,6 +1274,10 @@ public:
|
||||
return fmt::format("vfma{}.{} {}, {}, {}", CondToString(cond), sz ? "f64" : "f32", FPRegStr(sz, Vd, D), FPRegStr(sz, Vn, N), FPRegStr(sz, Vm, M));
|
||||
}
|
||||
|
||||
std::string vfp_VMAXNM(bool D, size_t Vn, size_t Vd, bool sz, bool N, bool M, size_t Vm) {
|
||||
return fmt::format("vmaxnm.{} {}, {}, {}", sz ? "f64" : "f32", FPRegStr(sz, Vd, D), FPRegStr(sz, Vn, N), FPRegStr(sz, Vm, M));
|
||||
}
|
||||
|
||||
std::string vfp_VMOV_imm(Cond cond, bool D, Imm<4> imm4H, size_t Vd, bool sz, Imm<4> imm4L) {
|
||||
const auto imm8 = concatenate(imm4H, imm4L);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user