Definition
call (RISC-V)
Calls a function by jumping to its address while saving the return address.
call labelThe above is a pseudoinstruction, which is translated to (auipc, jalr):
auipc ra, imm_{31:12} jalr ra, ra, imm_{11:0}
call (RISC-V)
Calls a function by jumping to its address while saving the return address.
call labelThe above is a pseudoinstruction, which is translated to (auipc, jalr):
auipc ra, imm_{31:12} jalr ra, ra, imm_{11:0}