Closed psherman42 closed 8 months ago
[ 00100 ][ 11 ] should be written as [ 0010011 ] (0x13) or OP-IMM to be consistent with all other instructions.
Also, in the Operations section, should one of the foreach loops between unzip and zip be different like, for example,
unzip
zip
foreach(i from 0 to xlen/2-1) { x(rd)[i] = X(rs1)[2*i] x(rd)[2*i+1] = X(rs1)[i+xlen/1] }
[ 00100 ][ 11 ] should be written as [ 0010011 ] (0x13) or OP-IMM to be consistent with all other instructions.
Also, in the Operations section, should one of the foreach loops between
unzip
andzip
be different like, for example,