or op1, op2
| 920 | |
| 921 | // or op1, op2 |
| 922 | int x86OR(unsigned char *stream, x86Reg op1, x86Reg op2) |
| 923 | { |
| 924 | stream[0] = 0x09; |
| 925 | stream[1] = encodeRegister(op1, regCode[op2]); |
| 926 | return 2; |
| 927 | } |
| 928 | // or dword [index*mult+base+shift], op2 |
| 929 | int x86OR(unsigned char *stream, x86Size size, x86Reg index, int multiplier, x86Reg base, int shift, x86Reg op2) |
| 930 | { |
no test coverage detected