.ifeq

Starts a conditional assembly block, making assembly conditional on an expression value being equal to zero.

  .ifeq expression statement-group
    
Parameters

expression

Any valid expression.

statement-group

Any valid assembly statements

Remarks

If the expression value equals 0, the assembler processes the statements of the block. If the expression value does not equal 0, the assembler skips the statements of the block.