X86: Implement a media xor microop.
This commit is contained in:
parent
f3fb444af4
commit
982b3ad1f0
1 changed files with 7 additions and 0 deletions
|
@ -334,4 +334,11 @@ let {{
|
||||||
}
|
}
|
||||||
FpDestReg.uqw = result;
|
FpDestReg.uqw = result;
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
class Mxor(MediaOp):
|
||||||
|
def __init__(self, dest, src1, src2):
|
||||||
|
super(Mxor, self).__init__(dest, src1, src2, 1)
|
||||||
|
code = '''
|
||||||
|
FpDestReg.uqw = FpSrcReg1.uqw ^ FpSrcReg2.uqw;
|
||||||
|
'''
|
||||||
}};
|
}};
|
||||||
|
|
Loading…
Reference in a new issue