aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/csrrw.h
blob: e4c605bd8179adc82d3fd1156a11f017df9f1437 (plain)
1
2
3
4
5
int csr = validate_csr(insn.csr(), true);
reg_t old = p->get_csr(csr, insn, true);
p->put_csr(csr, RS1);
WRITE_RD(sext_xlen(old));
serialize();