SPRUI30H November 2015 – May 2024 DRA745 , DRA746 , DRA750 , DRA756
Return from Subroutine
RET
Functional unit = D
16 bit
15 | 14 | 13 | 12 | 11 | 10 | 9 | 0 |
x | x | x | x | x | x | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
opcode |
Load the link register (LR) into the program counter (PC), increment the stack pointer (SP), then load the contents of the memory location pointed to by SP into LR. The content of LR and the content of the memory location pointed to by SP in this case is treated as an absolute halfword address.
This instruction has one delay slot. See Section 8.2.A.3.1 for restrictions on scheduling an instruction in this delay slot.
None
PC = LR; SP += 4; LR = *(SP)