AARM User's Guide

Discontinued

REPT

The REPT built-in macro is defined as follows:

REPT count
macro-body
ENDM

Where

countis the number of times the macro-body is expanded.
macro-bodyis the text that is expanded when the macro is invoked.

For example:

REPT 5
        NOP
ENDM

expands as:

        NOP
        NOP
        NOP
        NOP
        NOP