Assembly Language Help (alang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Evaluate Loop Condition
 Example                                   Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Syntax:   .CONTINUE [.IF condition]
 
  See also: .BREAK, .REPEAT, .UNTIL, .WHILE
 
  Description:
 
     Skips to the code that evaluates the loop condition of the nearest
     enclosing loop. If the .IF condition clause is present, the skip
     will occur only if the value of <condition> is true.
 
     This directive is valid only within a .REPEAT or .WHILE block.
                                    -♦-