diff options
| author | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-02-24 17:53:32 +0000 | 
|---|---|---|
| committer | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-02-24 17:53:32 +0000 | 
| commit | f8fda09104abedcde83419eb02583972771a1971 (patch) | |
| tree | 568a7347c69e10238964b0d722eb0bd3eb56ac14 | |
| parent | 9bbb4213a9d3c212b8a911e9aa13069bf6c37d1f (diff) | |
| download | uhd-f8fda09104abedcde83419eb02583972771a1971.tar.gz uhd-f8fda09104abedcde83419eb02583972771a1971.tar.bz2 uhd-f8fda09104abedcde83419eb02583972771a1971.zip | |
set all debug stuff to zero
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10497 221aa14e-8319-0410-a670-987f0aec2ac5
| -rwxr-xr-x | top/u2_core/u2_core.v | 23 | 
1 files changed, 10 insertions, 13 deletions
| diff --git a/top/u2_core/u2_core.v b/top/u2_core/u2_core.v index 9653ff10d..4fd5f6a6b 100755 --- a/top/u2_core/u2_core.v +++ b/top/u2_core/u2_core.v @@ -706,25 +706,22 @@ module u2_core       eth_mac_debug <= { { GMII_TX_EN, GMII_RX_DV, debug_txc[13:0]},  			{eth_rx_full2, eth_rx_empty2, eth_rx_occ2[13:0]} }; -   wire        debug_mux; -   setting_reg #(.my_addr(5)) sr_debug (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), -					.in(set_data),.out(debug_mux),.changed()); - -   //assign     debug = debug_mux ? host_to_dsp_fifo : dsp_to_host_fifo; -   //assign     debug = debug_mux ? serdes_to_dsp_fifo : dsp_to_serdes_fifo; -    -   assign      debug_clk[0] = wb_clk; +   assign      debug_clk[0] = 0;     assign      debug_clk[1] = dsp_clk;	 -   assign      debug = 0; //master_time;  -   assign      debug_gpio_0={{8'b0}, -			     {8'b0}, -			     {4'b0,strobe_rx,run_rx,strobe_tx,run_tx}, -			     {s12_ack,pps_o,pps_int,epoch,pps_pos_d1,pps_posedge,pps_neg_d1,pps_negedge}}; +   assign      debug = 0; +   assign      debug_gpio_0 = 0;     assign      debug_gpio_1 = 0;  endmodule // u2_core +//   wire        debug_mux; +//   setting_reg #(.my_addr(5)) sr_debug (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), +//					.in(set_data),.out(debug_mux),.changed()); + +//assign     debug = debug_mux ? host_to_dsp_fifo : dsp_to_host_fifo; +//assign     debug = debug_mux ? serdes_to_dsp_fifo : dsp_to_serdes_fifo; +     //assign      debug = {{strobe_rx,/*adc_ovf_a*/ 1'b0,adc_a},  //		{run_rx,/*adc_ovf_b*/ 1'b0,adc_b}}; | 
