summaryrefslogtreecommitdiffstats
path: root/usrp2/control_lib
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-05-12 16:16:18 -0700
committerMatt Ettus <matt@ettus.com>2010-05-12 16:16:18 -0700
commited48630974fb8cbdc3b863b13d4e7d7e8fe31434 (patch)
tree1d4ca78d8bd6484b55d2db471d4f5a81c145bf90 /usrp2/control_lib
parent4ca04dc4c373ea8c2fd62325e1122bb61bdb3920 (diff)
downloaduhd-ed48630974fb8cbdc3b863b13d4e7d7e8fe31434.tar.gz
uhd-ed48630974fb8cbdc3b863b13d4e7d7e8fe31434.tar.bz2
uhd-ed48630974fb8cbdc3b863b13d4e7d7e8fe31434.zip
add missing signal from sensitivity list
Diffstat (limited to 'usrp2/control_lib')
-rw-r--r--usrp2/control_lib/nsgpio16LE.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/control_lib/nsgpio16LE.v b/usrp2/control_lib/nsgpio16LE.v
index d6d7dcf56..514b003ce 100644
--- a/usrp2/control_lib/nsgpio16LE.v
+++ b/usrp2/control_lib/nsgpio16LE.v
@@ -111,7 +111,7 @@ module nsgpio16LE
integer n;
reg [31:0] igpio; // temporary internal signal
- always @(ctrl or line or debug_1 or debug_0 or atr)
+ always @(ctrl or line or debug_1 or debug_0 or atr or ddr)
for(n=0;n<32;n=n+1)
igpio[n] <= ddr[n] ? (dbg[n] ? (ctrl[n] ? debug_1[n] : debug_0[n]) :
(ctrl[n] ? atr[n] : line[n]) )