diff options
author | Matt Ettus <matt@ettus.com> | 2009-12-12 14:08:50 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2009-12-12 14:08:50 -0800 |
commit | 251b01d424da9612ef827fa5f13d61515d09a354 (patch) | |
tree | 23c88320d6823fefecc86c1baff231b760ccf4a0 /top | |
parent | f46cbe5ffabe8f439e3d86e52bdc3c25fb7bc084 (diff) | |
download | uhd-251b01d424da9612ef827fa5f13d61515d09a354.tar.gz uhd-251b01d424da9612ef827fa5f13d61515d09a354.tar.bz2 uhd-251b01d424da9612ef827fa5f13d61515d09a354.zip |
changed debug pins to see incoming data
Diffstat (limited to 'top')
-rw-r--r-- | top/u2_core/u2_core.v | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/top/u2_core/u2_core.v b/top/u2_core/u2_core.v index e6001a412..8551efca0 100644 --- a/top/u2_core/u2_core.v +++ b/top/u2_core/u2_core.v @@ -621,8 +621,9 @@ module u2_core dsp_core_tx dsp_core_tx (.clk(dsp_clk),.rst(dsp_rst), .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), + .sample(sample_tx), .run(run_tx), .strobe(strobe_tx), .dac_a(dac_a),.dac_b(dac_b), - .sample(sample_tx), .run(run_tx), .strobe(strobe_tx), .debug(debug_tx_dsp) ); + .debug(debug_tx_dsp) ); assign dsp_rst = wb_rst; @@ -728,8 +729,8 @@ module u2_core */ assign debug = debug_vt; - assign debug_gpio_0 = sample_tx; - assign debug_gpio_1 = 0; + assign debug_gpio_0 = tx_data; + assign debug_gpio_1 = sample_tx; endmodule // u2_core |