call reg
| 1105 | |
| 1106 | // call reg |
| 1107 | int x86CALL(unsigned char *stream, x86Reg address) |
| 1108 | { |
| 1109 | stream[0] = 0xff; |
| 1110 | stream[1] = encodeRegister(address, 2); |
| 1111 | return 2; |
| 1112 | } |
| 1113 | // call [index*mult+base+shift] |
| 1114 | int x86CALL(unsigned char *stream, x86Size, x86Reg index, int multiplier, x86Reg base, unsigned int shift) |
| 1115 | { |
no test coverage detected