Code objects contain instruction. These instructions depend on the platform, there are currently 2 instruction sets avaiable:
There are some things generic across both instructions
label:
Labels are used for jumps, location information and flow blocks. A label must always be placed between two instructions:
lint 3
label:
jmp label
Labels can be referenced before they were defined.