Repeat

Repeat a loop a specified number of times.

Syntax:
Repeat count
   
statements
End Repeat

count can be a literal or variable. However the internal loop counter is 8 bits so only the lower 8 bits of a variable will be utilized.

Example:

Repeat 10
  nop
End Repeat

Also See: Loop Structures