9.9 'continue/CONTINUE' statement

  ----------------------------------

 

      A 'continue' statement passes control to the following iteration in

  'do-while', 'for', 'while', 'loop', and 'loopnz' loops. In 'do-while',

  'while', and 'loop' loops, the next iteration begins by calculating the

  conditional expression. In a 'for' loop, the next iteration begins by

  calculating the expression of incrementation and then the conditional

  expression is calculated.

 

      'CONTINUE' is similar to 'continue' but generates code 1 byte shorter.

  The code from the spot where 'BREAK' is used to the end of the loop must be

  less than 127 bytes long.