jnz method

AsmBuilderBase jnz(
  1. Operand label
)

Appends a jnz instruction to the instruction list

Implementation

AsmBuilderBase jnz(Operand label) {
  append(OneOperandInstructionIntel('jnz', label));
  return this;
}