add method

AsmBuilderBase add(
  1. Operand dest,
  2. Operand src
)

Appends a add instruction to the instruction list

Implementation

AsmBuilderBase add(Operand dest, Operand src) {
  append(TwoOperandsInstructionIntel('add', dest, src));
  return this;
}