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_rx.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_rx.v')
-rw-r--r-- | simple_gemac/simple_gemac_rx.v | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/simple_gemac/simple_gemac_rx.v b/simple_gemac/simple_gemac_rx.v index 45ddd6dfa..b02bb0758 100644 --- a/simple_gemac/simple_gemac_rx.v +++ b/simple_gemac/simple_gemac_rx.v @@ -6,7 +6,8 @@ module simple_gemac_rx output rx_clk, output [7:0] rx_data, output reg rx_valid, output rx_error, output reg rx_ack, input [47:0] ucast_addr, input [47:0] mcast_addr, input pass_ucast, input pass_mcast, input pass_bcast, input pass_pause, input pass_all, - output reg [15:0] pause_quanta_rcvd, output pause_rcvd ); + output reg [15:0] pause_quanta_rcvd, output pause_rcvd, + output [31:0] debug ); localparam RX_IDLE = 0; localparam RX_PREAMBLE = 1; @@ -170,5 +171,7 @@ module simple_gemac_rx pause_quanta_rcvd[7:0] <= rxd_d1; assign rx_clk = GMII_RX_CLK; + + assign debug = rx_state; endmodule // simple_gemac_rx |