shr method

AsmBuilderBase shr(
  1. Operand dest,
  2. Operand count
)

Appends a shr instruction to the instruction list

Implementation

AsmBuilderBase shr(Operand dest, Operand count) {
  append(TwoOperandsInstructionIntel('shr', dest, count));
  return this;
}