.ifgt

Starts a conditional assembly block, making assembly conditional on an expression value being greater than zero.

  .ifgt expression statement-group
  
Parameters

expression

Any valid expression.

statement-group

Any valid assembly statements.

Remarks

If the expression value is greater than 0, the assembler processes the statements of the block. If the expression value is less than or equal to 0, the assembler skips the statements of the block.