Jump

From ArcoWiki
Revision as of 12:53, 3 August 2016 by Admin (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The JUMPTO/ command is used to transfer the execution of the program to the statements 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