sar eax, cl
| 862 | } |
| 863 | // sar eax, cl |
| 864 | int x86SAR(unsigned char *stream) |
| 865 | { |
| 866 | stream[0] = 0xd3; |
| 867 | stream[1] = encodeRegister(rEAX, 7); |
| 868 | return 2; |
| 869 | } |
| 870 | |
| 871 | // not reg |
| 872 | int x86NOT(unsigned char *stream, x86Reg reg) |
no test coverage detected