mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-05 18:22:57 +00:00
VFP: Implement VSQRT
This commit is contained in:
@@ -320,6 +320,13 @@ IR::Value IREmitter::FPNeg64(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::FPNeg64, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::FPSqrt32(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::FPSqrt32, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::FPSqrt64(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::FPSqrt64, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::FPSub32(const IR::Value& a, const IR::Value& b, bool fpscr_controlled) {
|
||||
ASSERT(fpscr_controlled);
|
||||
|
||||
Reference in New Issue
Block a user