; test6 - loop first: mov ax, 10 mov bx, 0 loop: add bx, 1 cmp ax, bx jne loop ; loop ten times, bx and ax must be 10 in the end end: hlt