Open marcfedorow opened 2 years ago
To avoid an incorrect interpretation of SEXX(1) as SEXX(1'b1) (i.e. {(XLEN+1){1'b1}}) this probably should be replaced with ZEXX(1) so it will be clear that it is {{XLEN{1'b0}}, 1'b1}.
SEXX(1)
SEXX(1'b1)
{(XLEN+1){1'b1}}
ZEXX(1)
{{XLEN{1'b0}}, 1'b1}
Thanks for the suggestion. We will modify the description in the next release.
To avoid an incorrect interpretation of
SEXX(1)
asSEXX(1'b1)
(i.e.{(XLEN+1){1'b1}}
) this probably should be replaced withZEXX(1)
so it will be clear that it is{{XLEN{1'b0}}, 1'b1}
.