Jump
Direct jump to a Lable or Address.
Syntax: Jump LableName/Address
Example 1:
jump test // Jump to "test" and continue execution there Print "1" // will not be executed test: Print "2"
Example 2:
jump &h3c00 ' Jump to Bootloader & Reset (atmega32)