PIC: This would work whether the code was at address 100 or 1000. 100: COMPARE REG1, REG2 101: JUMP_IF_EQUAL CURRENT+10 ... 111: NOP Non-PIC: This will only work if the code is at address 100. 100: COMPARE REG1, REG2 101: JUMP_IF_EQUAL 111 ... 111: NOP EDIT: In response to comment. More @Wikipedia
Hover over any link to get a description of the article. Please note that search keywords are sometimes hidden within the full article and don't appear in the description or title.