mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 06:39:33 +00:00
JitArm64: fix ps_res
This commit is contained in:
parent
c54c49714d
commit
5c93c98c05
1 changed files with 2 additions and 1 deletions
|
@ -169,7 +169,8 @@ void JitArm64::ps_res(UGeckoInstruction inst)
|
||||||
ARM64Reg VB = fpr.R(b, type);
|
ARM64Reg VB = fpr.R(b, type);
|
||||||
ARM64Reg VD = fpr.RW(d, type);
|
ARM64Reg VD = fpr.RW(d, type);
|
||||||
|
|
||||||
m_float_emit.FRSQRTE(size, reg_encoder(VD), reg_encoder(VB));
|
// FIXME: implement the same LUT as in the interpreter
|
||||||
|
m_float_emit.FRECPE(size, reg_encoder(VD), reg_encoder(VB));
|
||||||
|
|
||||||
fpr.FixSinglePrecision(d);
|
fpr.FixSinglePrecision(d);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue