summaryrefslogtreecommitdiffstats
path: root/usrp2/control_lib/nsgpio.v
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-05-12 16:13:32 -0700
committerMatt Ettus <matt@ettus.com>2010-05-12 16:13:32 -0700
commit4ca04dc4c373ea8c2fd62325e1122bb61bdb3920 (patch)
treefb9627fd00c4ccc59e16a04297300354fe53db23 /usrp2/control_lib/nsgpio.v
parent247e36dcbace9ef06763c2c537b44c8225a9d6a7 (diff)
parent9df5aa38bb1cd289e80ca817c4cd7412b1eb7e0c (diff)
downloaduhd-4ca04dc4c373ea8c2fd62325e1122bb61bdb3920.tar.gz
uhd-4ca04dc4c373ea8c2fd62325e1122bb61bdb3920.tar.bz2
uhd-4ca04dc4c373ea8c2fd62325e1122bb61bdb3920.zip
Merge branch 'master' into u1e
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]) )