summaryrefslogtreecommitdiffstats
path: root/usrp2
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-10-21 21:10:08 -0700
committerMatt Ettus <matt@ettus.com>2010-10-21 21:10:08 -0700
commitf14e7eb89b09e6fc4b1619c9ec255ebad3fa2aed (patch)
tree7cd0659d205351d9be240befd1f6738e0e2ff49b /usrp2
parent9a687bdb82eeb5f5133146bb3af6800d8435c75d (diff)
downloaduhd-f14e7eb89b09e6fc4b1619c9ec255ebad3fa2aed.tar.gz
uhd-f14e7eb89b09e6fc4b1619c9ec255ebad3fa2aed.tar.bz2
uhd-f14e7eb89b09e6fc4b1619c9ec255ebad3fa2aed.zip
the width of the address bus is called DEPTH, not WIDTH...
Diffstat (limited to 'usrp2')
-rw-r--r--usrp2/extramfifo/nobl_if.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/extramfifo/nobl_if.v b/usrp2/extramfifo/nobl_if.v
index a8303deca..adf9f165b 100644
--- a/usrp2/extramfifo/nobl_if.v
+++ b/usrp2/extramfifo/nobl_if.v
@@ -41,9 +41,9 @@ module nobl_if
assign RAM_OEn = 0;
// gray code the address to reduce EMI
- wire [WIDTH-1:0] address_gray;
+ wire [DEPTH-1:0] address_gray;
- bin2gray #(.WIDTH(WIDTH)) bin2gray (.bin(address),.gray(address_gray));
+ bin2gray #(.WIDTH(DEPTH)) bin2gray (.bin(address),.gray(address_gray));
//