Difference between revisions of "Jump"
From ArcoWiki
(Created page with "The <code>JUMPTO/</code> command is used to transfer the execution of the program to the statements following the defined label .<br/> The label is defined using the following...") |
|||
(3 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | The <code>JUMPTO/</code> command is used to transfer the execution of the program to the | + | The <code>JUMPTO/</code> command is used to transfer the execution of the program to the statement following the defined label .<br/> |
The label is defined using the following sintax: <code>(label)</code>.<br/> | The label is defined using the following sintax: <code>(label)</code>.<br/> | ||
Line 10: | Line 10: | ||
::::<code><span style="color: green; text-decoration: none;"> $$ instructions executed</span><br/></code> | ::::<code><span style="color: green; text-decoration: none;"> $$ instructions executed</span><br/></code> | ||
::::<code><span style="color: green; text-decoration: none;"> $$ instructions executed</span><br/></code> | ::::<code><span style="color: green; text-decoration: none;"> $$ instructions executed</span><br/></code> | ||
+ | |||
+ | [[it:Saltare]] | ||
+ | [[zh-cn:跳]] | ||
+ | [[pt:Saltar]] | ||
+ | [[de:Springen]] | ||
+ | [[es:Saltar]] | ||
+ | [[en:Jump]] | ||
+ | |||
+ | [[Category:Dmis_Tutorial]] |
Latest revision as of 08:41, 11 June 2018
The JUMPTO/
command is used to transfer the execution of the program to the statement following the defined label .
The label is defined using the following sintax: (label)
.
$$ Example of JUMPTO command
JUMPTO/(CONTINUEFROMHERE)
$$ instructions not executed
$$ instructions not executed
(CONTINUEFROMHERE)
$$ instructions executed
$$ instructions executed