Control Transfer in ARM Assembly
1. Direct Transfer (Simple Jump) After executing the current instruction, the next instruction is not executed in sequence; instead, it jumps to execute other instructions. ① B Instruction <span>B LABEL</span> This transfers execution to the instruction at the label LABEL (PC) = LABEL Commonly used for branching, for example: B LABEL ; Unconditional jump to … Read more