summaryrefslogtreecommitdiffstats
path: root/usrp2/control_lib/nsgpio.v
diff options
context:
space:
mode:
authorJohnathan Corgan <jcorgan@corganenterprises.com>2010-02-23 09:05:51 -0800
committerJohnathan Corgan <jcorgan@corganenterprises.com>2010-02-23 09:05:51 -0800
commit9519efb38f006e7c934a62f69d7366fe7cdd4410 (patch)
tree03d306a06f0a09925a60ecec4b2463d6dc8d1e64 /usrp2/control_lib/nsgpio.v
parentc4a00173b2f3b0b4adb1bd003c4865e625d6da86 (diff)
downloaduhd-9519efb38f006e7c934a62f69d7366fe7cdd4410.tar.gz
uhd-9519efb38f006e7c934a62f69d7366fe7cdd4410.tar.bz2
uhd-9519efb38f006e7c934a62f69d7366fe7cdd4410.zip
Fix missing item on sensitivity list
Diffstat (limited to 'usrp2/control_lib/nsgpio.v')
-rw-r--r--usrp2/control_lib/nsgpio.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/control_lib/nsgpio.v b/usrp2/control_lib/nsgpio.v
index 937ea7020..26130cc8e 100644
--- a/usrp2/control_lib/nsgpio.v
+++ b/usrp2/control_lib/nsgpio.v
@@ -95,7 +95,7 @@ module nsgpio
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] ? (ctrl[2*n+1] ? (ctrl[2*n] ? debug_1[n] : debug_0[n]) :
(ctrl[2*n] ? atr[n] : line[n]) )