diff options
author | Matt Ettus <matt@ettus.com> | 2010-01-14 17:29:28 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-01-14 17:29:28 -0800 |
commit | 0c44559d10f47c46ba485f39627c3890eca5639d (patch) | |
tree | b88699caf2f2cad046c985b5f931d753a483d8e7 /simple_gemac/simple_gemac_wrapper19.v | |
parent | 006532c50a95defd9b841e1d4ce96eacc24926d0 (diff) | |
download | uhd-0c44559d10f47c46ba485f39627c3890eca5639d.tar.gz uhd-0c44559d10f47c46ba485f39627c3890eca5639d.tar.bz2 uhd-0c44559d10f47c46ba485f39627c3890eca5639d.zip |
debug state
Diffstat (limited to 'simple_gemac/simple_gemac_wrapper19.v')
-rw-r--r-- | simple_gemac/simple_gemac_wrapper19.v | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/simple_gemac/simple_gemac_wrapper19.v b/simple_gemac/simple_gemac_wrapper19.v index 14ebd4ab3..2becd6aa1 100644 --- a/simple_gemac/simple_gemac_wrapper19.v +++ b/simple_gemac/simple_gemac_wrapper19.v @@ -49,7 +49,8 @@ module simple_gemac_wrapper19 .rx_clk(rx_clk), .rx_data(rx_data), .rx_valid(rx_valid), .rx_error(rx_error), .rx_ack(rx_ack), .tx_clk(tx_clk), .tx_data(tx_data), - .tx_valid(tx_valid), .tx_error(tx_error), .tx_ack(tx_ack) + .tx_valid(tx_valid), .tx_error(tx_error), .tx_ack(tx_ack), + .debug(debug_state) ); simple_gemac_wb simple_gemac_wb @@ -155,7 +156,7 @@ module simple_gemac_wrapper19 tx_ll_sof2, tx_ll_eof2, tx_ll_src_rdy2, tx_ll_dst_rdy2 }, { tx_valid, tx_error, tx_ack, tx_f19_src_rdy_int1, tx_f19_dst_rdy_int1, tx_f19_data_int1[18:16]}, { tx_data} }; - assign debug_rx = { { rx_ll_data }, + assign debug_rx = { { rx_f19_src_rdy, rx_f19_dst_rdy, debug_state[5:0] }, { rx_ll_sof, rx_ll_eof, rx_ll_src_rdy, rx_ll_dst_rdy, rx_ll_sof2, rx_ll_eof2, rx_ll_src_rdy2, rx_ll_dst_rdy2 }, { rx_valid, rx_error, rx_ack, rx_f19_src_rdy_int1, rx_f19_dst_rdy_int1, rx_f19_data_int1[18:16]}, |