diff options
author | Matt Ettus <matt@ettus.com> | 2010-01-05 18:28:14 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-01-05 18:28:14 -0800 |
commit | 52a27f2de265c6a3ee549e8dce7c0da7170d3ae9 (patch) | |
tree | e3abecb64afef32fdcae799bdb2645fd1745bf28 | |
parent | 5f057354dc036157780696c23a32b44c23b8c1b4 (diff) | |
download | uhd-52a27f2de265c6a3ee549e8dce7c0da7170d3ae9.tar.gz uhd-52a27f2de265c6a3ee549e8dce7c0da7170d3ae9.tar.bz2 uhd-52a27f2de265c6a3ee549e8dce7c0da7170d3ae9.zip |
more typo fixes.
-rw-r--r-- | udp/udp_wrapper.v | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/udp/udp_wrapper.v b/udp/udp_wrapper.v index 21c77c50a..7a32c6a3e 100644 --- a/udp/udp_wrapper.v +++ b/udp/udp_wrapper.v @@ -72,12 +72,12 @@ module udp_wrapper fifo_cascade #(.WIDTH(36),.SIZE(RXFIFOSIZE)) eth0_rxfifo (.clk(clk), .reset(reset), .clear(clear), .datain(rx_int3_data), .src_rdy_i(rx_int3_src_rdy), .dst_rdy_o(rx_int3_dst_rdy), - .dataout(rx_f36_data_o), .src_rdy_o(rx_f36_src_rdy_o), .dst_rdy_i(rx_f36_dst_rdy_i), + .dataout(rx_f36_data), .src_rdy_o(rx_f36_src_rdy_o), .dst_rdy_i(rx_f36_dst_rdy_i), .space(), .occupied() ); assign debug = { { 1'b0, rx_f19_data[18:16], rx_f19_src_rdy_i, rx_f19_dst_rdy_o, rx_f36_src_rdy_o, rx_f36_dst_rdy_i }, { 2'b0, rx_int1_src_rdy, rx_int1_dst_rdy, rx_int2_src_rdy, rx_int2_dst_rdy, rx_int3_src_rdy, rx_int3_dst_rdy}, - { 4'b0, rx_f36_data_o[35:32] }, - {} }; + { 4'b0, rx_f36_data[35:32] }, + { 8'b0 } }; endmodule // udp_wrapper |