diff options
author | Johnathan Corgan <jcorgan@corganenterprises.com> | 2010-02-28 12:47:43 -0800 |
---|---|---|
committer | Johnathan Corgan <jcorgan@corganenterprises.com> | 2010-02-28 12:47:43 -0800 |
commit | a2c00f5cff7407ff10fc6c812d06fefe52c0b6a3 (patch) | |
tree | 77121ca27b951f9bd687dbba33f6a9383ac74d5a /usrp2/fpga/control_lib/gray2bin.v | |
parent | db29a2cfc18554ae0a3c55a4e13dc4cbfa86317f (diff) |
Remove usrp1 and usrp2 FPGA files. These are now hosted at:
git://ettus.sourcerepo.com/ettus/fpga.git
...under the 'usrp1' and 'usrp2' top-level directories.
Diffstat (limited to 'usrp2/fpga/control_lib/gray2bin.v')
-rw-r--r-- | usrp2/fpga/control_lib/gray2bin.v | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/usrp2/fpga/control_lib/gray2bin.v b/usrp2/fpga/control_lib/gray2bin.v deleted file mode 100644 index 5df40bd527..0000000000 --- a/usrp2/fpga/control_lib/gray2bin.v +++ /dev/null @@ -1,13 +0,0 @@ - - -module gray2bin - #(parameter WIDTH=8) - (input [WIDTH-1:0] gray, - output reg [WIDTH-1:0] bin); - - integer i; - always @(gray) - for(i = 0;i<WIDTH;i=i+1) - bin[i] = ^(gray>>i); - -endmodule // gray2bin |