diff options
author | Matt Ettus <matt@ettus.com> | 2010-01-14 16:30:10 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-01-14 16:30:10 -0800 |
commit | f525902cc955f5d983f36bd2d67e4c56e32d32f1 (patch) | |
tree | 6505c02edfd29808c86e674df9ea0e4eb8647f5e /top | |
parent | 114e8ea576226c11baff4671b5bd6f610b82ad37 (diff) | |
download | uhd-f525902cc955f5d983f36bd2d67e4c56e32d32f1.tar.gz uhd-f525902cc955f5d983f36bd2d67e4c56e32d32f1.tar.bz2 uhd-f525902cc955f5d983f36bd2d67e4c56e32d32f1.zip |
make it match the 36 bit wide version
Diffstat (limited to 'top')
-rw-r--r-- | top/u2_core/u2_core.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/top/u2_core/u2_core.v b/top/u2_core/u2_core.v index 26ad2d1e3..f5cc55670 100644 --- a/top/u2_core/u2_core.v +++ b/top/u2_core/u2_core.v @@ -721,7 +721,7 @@ module u2_core eth_mac_debug <= { { 6'd0, GMII_TX_EN, GMII_RX_DV, debug_mac0[7:0]}, {eth_rx_full2, eth_rx_empty2, eth_rx_occ2[13:0]} }; - assign debug_clk[0] = 0; // wb_clk; + assign debug_clk[0] = GMII_RX_CLK; // wb_clk; assign debug_clk[1] = dsp_clk; /* @@ -745,7 +745,7 @@ module u2_core assign debug = debug_udp; assign debug_gpio_0 = debug_mac; - assign debug_gpio_1 = 32'hDEAD_BEEF; + assign debug_gpio_1 = { rx_f19_src_rdy, rx_f19_dst_rdy, rx_f19_data }; endmodule // u2_core |