aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/usrp3/lib/dsp/add2_and_clip.v
diff options
context:
space:
mode:
Diffstat (limited to 'fpga/usrp3/lib/dsp/add2_and_clip.v')
-rw-r--r--fpga/usrp3/lib/dsp/add2_and_clip.v12
1 files changed, 0 insertions, 12 deletions
diff --git a/fpga/usrp3/lib/dsp/add2_and_clip.v b/fpga/usrp3/lib/dsp/add2_and_clip.v
deleted file mode 100644
index 663f5d004..000000000
--- a/fpga/usrp3/lib/dsp/add2_and_clip.v
+++ /dev/null
@@ -1,12 +0,0 @@
-
-module add2_and_clip
- #(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};
- clip #(.bits_in(WIDTH+1),.bits_out(WIDTH)) clip
- (.in(sum_int),.out(sum));
-
-endmodule // add2_and_clip