jalr

Operands

reg, [{args.join('/')}], [{args.join('/')}], reg, )

Variants

  • 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)

Jump and link register: Set t1 to Program Counter (return address) then jump to statement at t2 + immediate

Loading...