diff --git a/wally-pipelined/src/fpu/compressors.sv b/wally-pipelined/src/fpu/compressors.sv index 0c2bece86..1e975e43c 100644 --- a/wally-pipelined/src/fpu/compressors.sv +++ b/wally-pipelined/src/fpu/compressors.sv @@ -1,90 +1,93 @@ -module add3comp2(a, b, c, carry, sum); -///////////////////////////////////////////////////////////////////////////// -//look into diffrent implementations of the compressors? +// //***breaks lint with warnings like: %Warning-UNOPTFLAT: Example path: src/fpu/compressors.sv:37: ASSIGNW +// //%Warning-UNOPTFLAT: Example path: src/fpu/compressors.sv:32: wallypipelinedsoc.hart.fpu.fma1.multiply.genblk5[0].add4.cout + +// module add3comp2(a, b, c, carry, sum); +// ///////////////////////////////////////////////////////////////////////////// +// //look into diffrent implementations of the compressors? - parameter BITS = 4; - input logic [BITS-1:0] a; - input logic [BITS-1:0] b; - input logic [BITS-1:0] c; - output logic [BITS-1:0] carry; - output logic [BITS-1:0] sum; - genvar i; +// parameter BITS = 4; +// input logic [BITS-1:0] a; +// input logic [BITS-1:0] b; +// input logic [BITS-1:0] c; +// output logic [BITS-1:0] carry; +// output logic [BITS-1:0] sum; +// genvar i; - generate - for(i= 0; i