Assembly Language Help (alang.hlp) (Table of Contents; Topic list)
IF/IFE/ELSEIF/ELSEIFE Directives
 Example                                   Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Syntax:   [ELSE]IF expression
 
            [ELSE]IFE expression
 
  See also: .IF, Conditional Assembly Directives, Relational Operators,
            .ERRE, .ERRNZ
 
  Description:
 
     IF causes assembly of a block of statements if expression is true
     (nonzero). IFE causes assembly of a block of statements if
     expression is false (zero).
     See: IF Block Syntax
 
     The <expression> must resolve to a constant and contain no forward
     references.
                                    -♦-