forked from Github_Repos/cvw
simulation runs-- clmul doesn't pass lint with xor tree
This commit is contained in:
parent
5f08322e99
commit
31787c456b
@ -51,10 +51,12 @@ module clmul #(parameter WIDTH=32) (
|
|||||||
assign pp[i][j] = A[i]&B[j];
|
assign pp[i][j] = A[i]&B[j];
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
/*
|
||||||
for (i=1;i<WIDTH;i++) begin:xortree
|
for (i=1;i<WIDTH;i++) begin:xortree
|
||||||
assign ClmulResult[i] = ^pp[i:0][i];
|
assign ClmulResult[i] = ^pp[i:0][i];
|
||||||
|
|
||||||
end
|
end
|
||||||
|
*/
|
||||||
|
|
||||||
assign ClmulResult[0] = A[0]&B[0];
|
assign ClmulResult[0] = A[0]&B[0];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user