mirror of
https://github.com/izzy2lost/xenia-edge.git
synced 2026-07-06 00:20:26 -07:00
[a64] Fix AND_NOT_V128
Operand order is wrong.
This commit is contained in:
+1
-1
@@ -2262,7 +2262,7 @@ struct AND_NOT_V128
|
||||
static void Emit(A64Emitter& e, const EmitArgType& i) {
|
||||
EmitCommutativeBinaryVOp(
|
||||
e, i, [](A64Emitter& e, QReg dest, QReg src1, QReg src2) {
|
||||
e.BIC(dest.B16(), src2.B16(), src1.B16());
|
||||
e.BIC(dest.B16(), src1.B16(), src2.B16());
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user