diff options
author | Josh Blum <josh@joshknows.com> | 2011-09-30 09:34:24 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-10-26 15:57:22 -0700 |
commit | e21b2852a7d3eb46ba564aad3883934b7a8dd8e5 (patch) | |
tree | 4bdf378f1efdef2f9e26cef70e0d925d55aefdc2 /usrp2/top | |
parent | 2849b0912bf251cfd1c0d9e89d39870ca54bef00 (diff) | |
download | uhd-e21b2852a7d3eb46ba564aad3883934b7a8dd8e5.tar.gz uhd-e21b2852a7d3eb46ba564aad3883934b7a8dd8e5.tar.bz2 uhd-e21b2852a7d3eb46ba564aad3883934b7a8dd8e5.zip |
usrp2: fix typo in top level core files
Diffstat (limited to 'usrp2/top')
-rw-r--r-- | usrp2/top/N2x0/u2plus_core.v | 2 | ||||
-rw-r--r-- | usrp2/top/USRP2/u2_core.v | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/top/N2x0/u2plus_core.v b/usrp2/top/N2x0/u2plus_core.v index 4d612bfab..a685c4319 100644 --- a/usrp2/top/N2x0/u2plus_core.v +++ b/usrp2/top/N2x0/u2plus_core.v @@ -421,7 +421,7 @@ module u2plus_core nsgpio nsgpio(.clk_i(wb_clk),.rst_i(wb_rst), .cyc_i(s4_cyc),.stb_i(s4_stb),.adr_i(s4_adr[4:0]),.we_i(s4_we), .dat_i(s4_dat_o),.dat_o(s4_dat_i),.ack_o(s4_ack), - .rx(run_rx0_d1 | rx_rx1_d1), .tx(run_tx), .gpio({io_tx,io_rx}) ); + .rx(run_rx0_d1 | run_rx1_d1), .tx(run_tx), .gpio({io_tx,io_rx}) ); // ///////////////////////////////////////////////////////////////////////// // Buffer Pool Status -- Slave #5 diff --git a/usrp2/top/USRP2/u2_core.v b/usrp2/top/USRP2/u2_core.v index 7415f68e5..eae16bfeb 100644 --- a/usrp2/top/USRP2/u2_core.v +++ b/usrp2/top/USRP2/u2_core.v @@ -426,7 +426,7 @@ module u2_core nsgpio nsgpio(.clk_i(wb_clk),.rst_i(wb_rst), .cyc_i(s4_cyc),.stb_i(s4_stb),.adr_i(s4_adr[4:0]),.we_i(s4_we), .dat_i(s4_dat_o),.dat_o(s4_dat_i),.ack_o(s4_ack), - .rx(run_rx0_d1 | rx_rx1_d1), .tx(run_tx), .gpio({io_tx,io_rx}) ); + .rx(run_rx0_d1 | run_rx1_d1), .tx(run_tx), .gpio({io_tx,io_rx}) ); // ///////////////////////////////////////////////////////////////////////// // Buffer Pool Status -- Slave #5 |