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