diff options
author | Matt Ettus <matt@ettus.com> | 2011-10-06 22:56:51 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-10-26 15:57:22 -0700 |
commit | 80ec54d3f39536461c09c960c296e7c02c418310 (patch) | |
tree | 816eb661f0a4b1287877d30dd5c9cae97e055a74 /usrp2/control_lib/double_buffer.v | |
parent | f4c61186f6a81a09a038cef500d07d4ca5e65a57 (diff) | |
download | uhd-80ec54d3f39536461c09c960c296e7c02c418310.tar.gz uhd-80ec54d3f39536461c09c960c296e7c02c418310.tar.bz2 uhd-80ec54d3f39536461c09c960c296e7c02c418310.zip |
dspengine: insert into the rx chain
Diffstat (limited to 'usrp2/control_lib/double_buffer.v')
-rw-r--r-- | usrp2/control_lib/double_buffer.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/control_lib/double_buffer.v b/usrp2/control_lib/double_buffer.v index eabd0f956..e8e565963 100644 --- a/usrp2/control_lib/double_buffer.v +++ b/usrp2/control_lib/double_buffer.v @@ -54,7 +54,7 @@ module double_buffer assign rw0_adr = (read_ok & ~read_ptr) ? read_adr : write_adr; assign rw1_adr = (read_ok & read_ptr) ? read_adr : write_adr; - wire [35:0] access_dat_i, access_dat_o_0, access_dat_o_1; + wire [35:0] access_dat_o_0, access_dat_o_1; wire access_ptr; assign access_dat_o = access_ptr? access_dat_o_1 : access_dat_o_0; |