simulation runs-- clmul doesn't pass lint with xor tree

This commit is contained in:
Kevin Kim 2023-02-11 21:22:33 -08:00
parent 5f08322e99
commit 31787c456b

View File

@ -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];