idiv src
| 810 | |
| 811 | // idiv src |
| 812 | int x86IDIV(unsigned char *stream, x86Reg src) |
| 813 | { |
| 814 | stream[0] = 0xf7; |
| 815 | stream[1] = encodeRegister(src, 7); |
| 816 | return 2; |
| 817 | } |
| 818 | // idiv dword [index*mult+base+shift] |
| 819 | int x86IDIV(unsigned char *stream, x86Size size, x86Reg index, int multiplier, x86Reg base, int shift) |
| 820 | { |
no test coverage detected