test method

AsmBuilderBase test(
  1. Operand op1,
  2. Operand op2
)

Appends a test instruction to the instruction list

Implementation

AsmBuilderBase test(Operand op1, Operand op2) {
  append(TwoOperandsInstructionIntel('test', op1, op2));
  return this;
}