; ===== COUNT =================================================
MOV AL,0 ; Move 0 into the AL register
REP: ; This label is used with jump commands
ADD AL,2 ; Add two to AL
JMP REP ; Jump back to the rep label
END ; Program ends here
; =============================================================
|