Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Assembly Language - <b>else assemble if condition not met masm directive</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
ELSE             Assemble If Condition Not Met                 MASM Directive

  IF conditional
  statements
  [ELSE
  statements]
  ENDIF

    Causes the assembler to generate code for one or more statements if
    the IF condition is not met.  The statements between the IF directive
    and the ELSE directive are processed when the IF condition is
    satisfied.  If, on the other hand, the IF condition is not satisfied,
    the statements between the ELSE directive and the ENDIF directive are
    processed.

       Notes:     A nested ELSE directive is matched with the nearest IF
                  directive that does not have an ELSE directive.

See Also: IF ENDIF

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson