CRC32CW rt, rs |
nanoMIPS. Optional, present when Config5.CRCP=1. |
CRC32 (Castagnoli) Word |
CRC32 (Castagnoli) Word. Generate a 32-bit CRC value $rt based on the reversed polynomial 0x82F63B78, using cumulative 32-bit CRC value $rt and right-justified word-sized message $rs as inputs.
nanoMIPS. Optional, present when Config5.CRCP=1.
001000 |
rt |
rs |
x |
110 |
1111 |
1 |
01 |
000 |
6 |
5 |
5 |
3 |
3 |
4 |
1 |
2 |
3 |
if C0.Config5.CRCP == 0: raise exception('RI') result = crc32(value=GPR[rt], message=GPR[rs], nbits=32, poly=0x82F63B78) GPR[rt] = sign_extend(result, from_nbits=32)
Reserved Instruction on cores without CRC support.