| 651 | } |
| 652 | |
| 653 | void zeroRegister(Instruction* instruction, ZydisRegister reg) |
| 654 | { |
| 655 | emitPushImmediate(instruction, 0x0, 64); |
| 656 | emitPopRegister(instruction, reg, 64); |
| 657 | } |
| 658 | |
| 659 | void calculateEffectiveAddress(Instruction* instruction, ZydisDecodedOperandMem mem) |
| 660 | { |
no test coverage detected