mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 22:18:16 +01:00
VFP: Implement VSQRT
This commit is contained in:
parent
cd8e7c0504
commit
0f412247ed
8 changed files with 88 additions and 11 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue