.REPEAT (32-bit MASM)

Generates code that repeats execution of the block of statements until condition becomes true. .UNTILCXZ, which becomes true when CX is zero, may be substituted for .UNTIL. The condition is optional with .UNTILCXZ. (32-bit MASM only.)

Syntax

.REPEAT
statements
.UNTIL condition

See also

Directives reference
MASM BNF Grammar