as: PRU Relocations

1 
1 9.36.3 PRU Machine Relocations
1 ------------------------------
1 
1 '%pmem(EXPRESSION)'
1      Convert EXPRESSION from byte-address to a word-address.  In other
1      words, shift right by two.
1 
1 '%label(EXPRESSION)'
1      Mark the given operand as a label.  This is useful if you need to
1      jump to a label that matches a register name.
1 
1           r1:
1               jmp r1		; Will jump to register R1
1               jmp %label(r1)	; Will jump to label r1
1