diff options
author | Matt Ettus <matt@ettus.com> | 2010-08-11 16:26:58 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-08-11 16:26:58 -0700 |
commit | 9e97e773b9952ec3212e6c818bb40d785016afa4 (patch) | |
tree | 67bcc8f0373e9976dc836c059d594fc092a7cf0c /usrp2/top | |
parent | 19974fa00b04280e52d3d644e8e12953c570c06d (diff) | |
download | uhd-9e97e773b9952ec3212e6c818bb40d785016afa4.tar.gz uhd-9e97e773b9952ec3212e6c818bb40d785016afa4.tar.bz2 uhd-9e97e773b9952ec3212e6c818bb40d785016afa4.zip |
connect the setting reg to the real clock and reset
Diffstat (limited to 'usrp2/top')
-rw-r--r-- | usrp2/top/u1e/u1e_core.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/top/u1e/u1e_core.v b/usrp2/top/u1e/u1e_core.v index 516a5cf96..4561df173 100644 --- a/usrp2/top/u1e/u1e_core.v +++ b/usrp2/top/u1e/u1e_core.v @@ -70,7 +70,7 @@ module u1e_core wire clear_rx_int, clear_tx_int, clear_tx, clear_rx, do_clear; setting_reg #(.my_addr(SR_CLEAR_FIFO), .width(2)) sr_clear - (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), + (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), .in(set_data),.out({clear_tx_int,clear_rx_int}),.changed(do_clear)); assign clear_tx = clear_tx_int & do_clear; assign clear_rx = clear_rx_int & do_clear; |