aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/ror.h
blob: 61b5ff8f7c23af6e0fd5ab75ba1802d054bd54f1 (plain)
1
2
3
4
require_either_extension(EXT_ZBB, EXT_ZBKB);
int shamt = RS2 & (xlen-1);
int rshamt = -shamt & (xlen-1);
WRITE_RD(sext_xlen((RS1 << rshamt) | (zext_xlen(RS1) >> shamt)));