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.
5 lines
159 B
5 lines
159 B
require_extension('P');
|
|
require_rv32;
|
|
reg_t mres = reg_t((uint32_t)RS1) * reg_t((uint32_t)RS2);
|
|
uint32_t round = ((mres >> 31) + 1) >> 1;
|
|
WRITE_RD(RD + round);
|