diff options
author | Matt Ettus <matt@ettus.com> | 2010-02-23 16:35:06 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-02-23 16:35:06 -0800 |
commit | 89fc3946d6fa590dd8047984ed8718a6ffa4ab77 (patch) | |
tree | dbdd4a23722d8252650b90b8c85388be690476b7 | |
parent | 035440ab7dce5c13655539db606de531606bad59 (diff) | |
download | uhd-89fc3946d6fa590dd8047984ed8718a6ffa4ab77.tar.gz uhd-89fc3946d6fa590dd8047984ed8718a6ffa4ab77.tar.bz2 uhd-89fc3946d6fa590dd8047984ed8718a6ffa4ab77.zip |
use our fancy new debug ports
-rw-r--r-- | usrp2/top/u1e/u1e_core.v | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usrp2/top/u1e/u1e_core.v b/usrp2/top/u1e/u1e_core.v index 7ac4c8f86..12c566b6c 100644 --- a/usrp2/top/u1e/u1e_core.v +++ b/usrp2/top/u1e/u1e_core.v @@ -206,6 +206,9 @@ module u1e_core assign debug = { { 1'b0, EM_WAIT0, EM_NCS6, EM_NCS4, EM_NWE, EM_NOE, EM_A[10:1] }, { EM_D } }; + assign debug_gpio_0 = { m0_we, m0_stb, m0_ack, s1_stb, s0_stb, m0_adr[10:0], m0_dat_mosi[15:0] }; + assign debug_gpio_1 = { debug_txd, debug_rxd }; + assign { debug_led[2],debug_led[0],debug_led[1] } = reg_fast; // LEDs are arranged funny on board endmodule // u1e_core |