if,   else,   then,   begin,   until,   again,

Les structures de contrôle en assembleur utilisent une condition de contrôle marquée cc et correspond à une de ces intructions:


Notice: Undefined variable: str5 in /home/arduinofom/www/application/views/scripts/help/avrAsm/structCtrl.phtml on line 22
 

if, ( cc -- addr)

Conditional execution.

    cc if, 
        xxx 
    else, 
        yyy 
    then, 

else,

then,

begin,

Loop indefinitely.

    begin, 
        xxx 
    again, 

Loop until condion is true.

    begin, 
        xxx 
    cc until, 

until, ( addr cc -- )

again, ( addr -- )