6 lines
244 B
ArmAsm
6 lines
244 B
ArmAsm
BRA TRGET ; Branches to TRGET
|
|
ADD R0,R1 ; Executes ADD before branching
|
|
NOP ; ← The PC location is used to calculate the branch destination
|
|
; address of the BRA instruction
|
|
TRGET: ; ← Branch destination of the BRA instruction
|