summaryrefslogtreecommitdiffstats
path: root/usrp2/control_lib
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-06-10 12:19:41 -0700
committerMatt Ettus <matt@ettus.com>2010-06-10 12:19:41 -0700
commit7d067d0109d4ee484a65caabcaf173082719f0d4 (patch)
treefe32d53b768755feb9bd5370a43bfe01355e9453 /usrp2/control_lib
parentaefcb65e7788a9fbb50b443dbd3f248e2d462107 (diff)
downloaduhd-7d067d0109d4ee484a65caabcaf173082719f0d4.tar.gz
uhd-7d067d0109d4ee484a65caabcaf173082719f0d4.tar.bz2
uhd-7d067d0109d4ee484a65caabcaf173082719f0d4.zip
left something out of the 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 514b003ce..8aef0c7ae 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 or ddr)
+ always @(ctrl or line or debug_1 or debug_0 or atr or ddr or dbg)
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]) )