mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 15:28:59 +00:00
small collection of fixes
This commit is contained in:
parent
a16cc3ac8a
commit
c9d2aed286
3 changed files with 12 additions and 25 deletions
|
@ -450,7 +450,7 @@ void decode_x64_reg_op(const u8* code, x64_op_t& out_op, x64_reg_t& out_reg, usz
|
|||
}
|
||||
case 0x7f:
|
||||
{
|
||||
if ((repe && !oso) || (!repe && oso)) // MOVDQU/MOVDQA xmm/m, xmm
|
||||
if (repe != oso) // MOVDQU/MOVDQA xmm/m, xmm
|
||||
{
|
||||
out_op = X64OP_STORE;
|
||||
out_reg = get_modRM_reg_xmm(code, rex);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue