Unconditional Jumps
The basic instruction that transfers control to another point in the
program is JMP. The basic syntax of JMP instruction:
JMP label
To declare a label in your program, just type its name and add ":" to
the end, label can be any character combination but it cannot start with a
number, for example here are 3 legal label definitions:
label1:
label2:
a