REPT
The REPT built-in macro is defined as follows:
REPT count
macro-body
ENDM
Where
| count | is the number of times the macro-body is expanded. |
| macro-body | is the text that is expanded when the macro is invoked. |
For example:
REPT 5
NOP
ENDM
expands as:
NOP
NOP
NOP
NOP
NOP