From: matt Date: Wed, 1 Apr 2009 02:26:19 +0000 (+0000) Subject: variable length delay line, based on srl16 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=d381c0bab21594625f09533b436b8c1cd2c27976;p=debian%2Fgnuradio variable length delay line, based on srl16 git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10729 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/usrp2/fpga/simple_gemac/delay_line.v b/usrp2/fpga/simple_gemac/delay_line.v new file mode 100644 index 00000000..3d76c492 --- /dev/null +++ b/usrp2/fpga/simple_gemac/delay_line.v @@ -0,0 +1,21 @@ + + +module delay_line + #(parameter WIDTH=32) + (input clk, + input [3:0] delay, + input [WIDTH-1:0] din, + output [WIDTH-1:0] dout); + + integer i; + generate + for (i=0;i