mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
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];
|
||||
end
|
||||
end
|
||||
|
||||
/*
|
||||
for (i=1;i<WIDTH;i++) begin:xortree
|
||||
assign ClmulResult[i] = ^pp[i:0][i];
|
||||
|
||||
end
|
||||
*/
|
||||
|
||||
assign ClmulResult[0] = A[0]&B[0];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user