•  Back 
  •  Assembler 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help 
  •  Show info about hypertext 
  •  View a new file 
Topic       : Pure Assembler Documentation
Author      : John Kormylo
Version     : PASM.HYP 1.0
Subject     : Documentation/Pure Assembler
Nodes       : 740
Index Size  : 20262
HCP-Version : 3
Compiled on : Atari
@charset    : atarist
@lang       : en
@default    : 
@help       : Help
@options    : +g -i -s +x +z -t4
@width      : 75
View Ref-File[ IFcc ]

IFB  name       ;if not defined
IFNB name       ;if defined
IF   expression ;if true                  (expression != 0)
IFF  expression ;if false                 (expression == 0)
IFEQ expression ;if equal                 (expression == 0)
IFNE expression ;if not equal             (expression != 0)
IFLE expression ;if less than or equal    (expression <= 0)
IFLT expression ;if less than             (expression <  0)
IFGE expression ;if greater than or equal (expression >= 0)
IFGT expression ;if greater than          (expression >  0)
IF1  ;One pass assembler (always true with Pure Assembler)
IF2  ;Two pass assembler (always false with Pure Assembler)

    Used in combination with ELSE and ENDIF directives for conditional
    assembly.

    If the IFcc is satisfied, assemble code between it and the next
    ELSE or ENDIF directives (whichever comes first).
    Otherwise, do not assemble code until the next ELSE or ENDIF
    directive.

See also ELSE and ENDIF.