Extrait de la documentation de A68k:
ORG expression
Places the code following the directive at the address specified by expression, which must be relocatable (that is, of the form label+number, where label is a backward reference, not a forward reference). If that address is located before the current position, the code previously generated there will be overwritten. If that adress is located after the current position, the space will be filled with zeros (0, NOT '0').
jmp label2 label1: rts org label1+64 label2: jsr label1 rtsEt label2 sera 64 octets après label1