Decrease CX, jump to label if CX not zero.Algorithm:
Decrease CX, jump to label if CX not zero.
Algorithm:
LOOP Label
.model small .data ... .code ... ... mov cx,10 ;number of times to repeat label: ... ... ... loop label ... ... end