sal eax, cl
| 855 | |
| 856 | // sal eax, cl |
| 857 | int x86SAL(unsigned char *stream) |
| 858 | { |
| 859 | stream[0] = 0xd3; |
| 860 | stream[1] = encodeRegister(rEAX, 4); |
| 861 | return 2; |
| 862 | } |
| 863 | // sar eax, cl |
| 864 | int x86SAR(unsigned char *stream) |
| 865 | { |
no test coverage detected