diff options
author | Matt Ettus <matt@ettus.com> | 2010-06-10 12:19:41 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-06-10 12:19:41 -0700 |
commit | 7d067d0109d4ee484a65caabcaf173082719f0d4 (patch) | |
tree | fe32d53b768755feb9bd5370a43bfe01355e9453 /usrp2/control_lib | |
parent | aefcb65e7788a9fbb50b443dbd3f248e2d462107 (diff) | |
download | uhd-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.v | 2 |
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]) ) |