mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-04-03 12:00:02 +02:00
rsx/fp/cfg: Fix input mask for DIV and DIVSQ instructions
This commit is contained in:
parent
316e01995b
commit
4183d09a52
|
|
@ -257,7 +257,7 @@ namespace rsx::assembler::FP
|
|||
return xyz;
|
||||
case RSX_FP_OPCODE_DIV:
|
||||
case RSX_FP_OPCODE_DIVSQ:
|
||||
return decode({ xyzw, x });
|
||||
return decode({ xyzw, x }) & dst_write_mask;
|
||||
case RSX_FP_OPCODE_LIF:
|
||||
return decode({ y | w });
|
||||
case RSX_FP_OPCODE_FENCT:
|
||||
|
|
|
|||
Loading…
Reference in a new issue