aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/crc32c_w.h
blob: 879354029713bfb831e5924baac4fc223516607b (plain)
1
2
3
4
5
require_extension(EXT_XZBR);
reg_t x = zext_xlen(RS1);
for (int i = 0; i < 32; i++)
  x = (x >> 1) ^ (0x82F63B78 & ~((x&1)-1));
WRITE_RD(sext_xlen(x));