aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/usrp2/sdr_lib/add2.v
blob: 13fff803ed3878c7be798b0465398dd34670c789 (plain)
1
2
3
4
5
6
7
8
9
10
11
module add2
  #(parameter WIDTH=16)
    (input [WIDTH-1:0] in1,
     input [WIDTH-1:0] in2,
     output [WIDTH-1:0] sum);

   wire [WIDTH:0] 	sum_int = {in1[WIDTH-1],in1} + {in2[WIDTH-1],in2};
   assign 		sum = sum_int[WIDTH:1];  // Note -- will have some bias
   
endmodule // add2