Assembly Language Help (alang.hlp) (Table of Contents; Topic list)
Repeat Assembly of Block
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Syntax:   REPEAT expression
              statements
            ENDM
 
  See also: .REPEAT, FOR, FORC, WHILE, MACRO, MASM 5.1 Compatibility
 
  Description:
 
     Assembles a block of statements <expression> times. REPT is a
     synonym for REPEAT and is included for compatibility with previous
     versions of the assembler.
 
 
 
     The <expression> parameter must evaluate to a numeric constant. This
     constant is evaluated during the first pass. The <statements> are
     any valid assembler statements.
                                    -♦-