diff options
author | Matt Ettus <matt@ettus.com> | 2011-08-24 15:59:34 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-08-26 13:24:26 -0700 |
commit | 311fcf1abad690a6eaee24069bd4c1679623deee (patch) | |
tree | 115c2eb799b39d102fe16e36d7abf74b25373a75 /usrp2/fifo/fifo_long.v | |
parent | 672795f93f8166262d93c78fcb35939809348c95 (diff) | |
download | uhd-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.v | 2 |
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) |