Spike, a RISC-V ISA Simulator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
229 B

require_rv32;
require_extension(EXT_ZKNH);
reg_t result =
(zext32(RS1) << 3) ^ (zext32(RS1) >> 6) ^ (zext32(RS1) >> 19) ^
(zext32(RS2) >> 29) ^ (zext32(RS2) << 13);
WRITE_RD(sext_xlen(result));