mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
spu: improve dfnma instruction
This commit is contained in:
parent
2ed6e51d24
commit
1b0f5b1ed9
3 changed files with 4 additions and 5 deletions
|
@ -4141,7 +4141,7 @@ public:
|
|||
|
||||
void DFNMA(spu_opcode_t op) //
|
||||
{
|
||||
set_vr(op.rt, -get_vr<f64[2]>(op.rt) - get_vr<f64[2]>(op.ra) * get_vr<f64[2]>(op.rb));
|
||||
set_vr(op.rt, -(get_vr<f64[2]>(op.ra) * get_vr<f64[2]>(op.rb) + get_vr<f64[2]>(op.rt)));
|
||||
}
|
||||
|
||||
void FREST(spu_opcode_t op) //
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue