c.jr
Jump Register
This instruction is defined by:
Synopsis
C.JR (jump register) performs an unconditional control transfer to the address in register xs1. C.JR expands to jalr x0, 0(xs1).
Execution
-
Pruned, XLEN == 64
-
Original
jump(X[xs1]);
if (implemented?(ExtensionName::C) && MISA_CSR_IMPLEMENTED && (CSR[misa].C == 1'b0)) {
reserved_instruction($encoding);
}
jump(X[xs1]);