diff options
author | Matt Ettus <matt@ettus.com> | 2010-04-26 16:16:25 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-04-26 16:16:25 -0700 |
commit | c1db109e05034e7bb1e813b8d6c965cf01619aa8 (patch) | |
tree | 56c9dfe1d059b26db25844f2b2358d45b5d749b1 /usrp2/control_lib | |
parent | 16818dc98e97b69a028c47e66ebfb16e32565533 (diff) | |
parent | de21671b8dab89d6aaa3b6bbb99a4dc0d306121f (diff) | |
download | uhd-c1db109e05034e7bb1e813b8d6c965cf01619aa8.tar.gz uhd-c1db109e05034e7bb1e813b8d6c965cf01619aa8.tar.bz2 uhd-c1db109e05034e7bb1e813b8d6c965cf01619aa8.zip |
Merge branch 'corgan_fixes' into udp_corgan
Diffstat (limited to 'usrp2/control_lib')
-rw-r--r-- | usrp2/control_lib/nsgpio.v | 2 |
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]) ) |