aboutsummaryrefslogtreecommitdiffstats
path: root/usrp2/fifo/fifo_long.v
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2011-08-24 15:59:34 -0700
committerJosh Blum <josh@joshknows.com>2011-08-26 13:24:26 -0700
commit311fcf1abad690a6eaee24069bd4c1679623deee (patch)
tree115c2eb799b39d102fe16e36d7abf74b25373a75 /usrp2/fifo/fifo_long.v
parent672795f93f8166262d93c78fcb35939809348c95 (diff)
downloaduhd-311fcf1abad690a6eaee24069bd4c1679623deee.tar.gz
uhd-311fcf1abad690a6eaee24069bd4c1679623deee.tar.bz2
uhd-311fcf1abad690a6eaee24069bd4c1679623deee.zip
all: tie unused ram inputs to 1 instead of zero, helps routing
Diffstat (limited to 'usrp2/fifo/fifo_long.v')
-rw-r--r--usrp2/fifo/fifo_long.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/fifo/fifo_long.v b/usrp2/fifo/fifo_long.v
index e9739ad94..c4f0a1cc2 100644
--- a/usrp2/fifo/fifo_long.v
+++ b/usrp2/fifo/fifo_long.v
@@ -71,7 +71,7 @@ module fifo_long
.enb((read_state==PRE_READ)|read),
.web(0),
.addrb(rd_addr),
- .dib(0),
+ .dib({WIDTH{1'b1}}),
.dob(dataout));
always @(posedge clk)