Command: LOOP-Loop while CX is not zero
Arguments: label: label that points to the beginning of the iteration
Usage: LOOP label
Effects: Decrements CX (not modifying any flags) and jumps to label if CX is not zero
Flags to be set: none
Misc: Create a loop of N iterations by copying N to CX (MOV CX,N), adding a label to the beginning of the block of operations to be repeated and a LOOP statement to its end.