diff options
author | Josh Blum <josh@joshknows.com> | 2010-01-05 14:39:52 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-01-05 14:39:52 -0800 |
commit | 6b0dc91d66eb56bb682295d07c97caf0f07da8b1 (patch) | |
tree | 940850e3f2a8695eba30b73a43d589558bfc7ff8 /udp/add_onescomp.v | |
parent | f238468d299312ed562c6f711150f04b070818ed (diff) | |
parent | 5c2e94296991891d973ad7bd99ee59cded3a5418 (diff) | |
download | uhd-6b0dc91d66eb56bb682295d07c97caf0f07da8b1.tar.gz uhd-6b0dc91d66eb56bb682295d07c97caf0f07da8b1.tar.bz2 uhd-6b0dc91d66eb56bb682295d07c97caf0f07da8b1.zip |
Merge branch 'udp' of http://gnuradio.org/git/matt into wip/usrp2
Conflicts:
usrp2/fpga/top/u2_rev3/Makefile
Diffstat (limited to 'udp/add_onescomp.v')
-rw-r--r-- | udp/add_onescomp.v | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/udp/add_onescomp.v b/udp/add_onescomp.v new file mode 100644 index 000000000..048842a86 --- /dev/null +++ b/udp/add_onescomp.v @@ -0,0 +1,12 @@ + + +module add_onescomp + #(parameter WIDTH = 16) + (input [WIDTH-1:0] A, + input [WIDTH-1:0] B, + output [WIDTH-1:0] SUM); + + wire [WIDTH:0] SUM_INT = {1'b0,A} + {1'b0,B}; + assign SUM = SUM_INT[WIDTH-1:0] + {{WIDTH-1{1'b0}},SUM_INT[WIDTH]}; + +endmodule // add_onescomp |