diff options
author | Matt Ettus <matt@ettus.com> | 2009-10-01 01:02:25 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2009-10-01 01:02:25 -0700 |
commit | 42fc55415af499980901c7787f44c7e74b4a9ce1 (patch) | |
tree | ffefbf0e212d5ad895b1a391e9e4b5fb21c74283 /simple_gemac/simple_gemac_rx.v | |
parent | 0a0655b56b84aa6557cdfaece206d0f5cf6ebeac (diff) | |
download | uhd-42fc55415af499980901c7787f44c7e74b4a9ce1.tar.gz uhd-42fc55415af499980901c7787f44c7e74b4a9ce1.tar.bz2 uhd-42fc55415af499980901c7787f44c7e74b4a9ce1.zip |
Fix warnings, mostly from implicitly defined wires or unspecified widths
Diffstat (limited to 'simple_gemac/simple_gemac_rx.v')
-rw-r--r-- | simple_gemac/simple_gemac_rx.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simple_gemac/simple_gemac_rx.v b/simple_gemac/simple_gemac_rx.v index bad43a607..45ddd6dfa 100644 --- a/simple_gemac/simple_gemac_rx.v +++ b/simple_gemac/simple_gemac_rx.v @@ -47,7 +47,7 @@ module simple_gemac_rx localparam DELAY = 6; delay_line #(.WIDTH(10)) rx_delay - (.clk(rx_clk), .delay(DELAY), .din({rx_dv_d1,rx_er_d1,rxd_d1}),.dout({rx_dv_del,rx_er_dl,rxd_del})); + (.clk(rx_clk), .delay(DELAY), .din({rx_dv_d1,rx_er_d1,rxd_d1}),.dout({rx_dv_del,rx_er_del,rxd_del})); always @(posedge rx_clk) if(reset) |