Jump and link register: Set t1 to Program Counter (return address) then jump to statement at t2 + immediate
jalr
Operands
reg, [reg / imm / imm(reg)], immVariants
- Jump and link register: Set t1 to Program Counter (return address) then jump to statement at t2 + immediate jalr t1, t2, -100
- Jump And Link Register: Jump to address in t0 and set the return address to ra jalr t0
- Jump And Link Register: Jump to address in t0 and set the return address to ra jalr t0, -100
- Jump And Link Register: Jump to address in t1 and set the return address to t0 jalr t0,-100(t1)
Loading...