Skip to content
Snippets Groups Projects
Commit a069296e authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Avoid no driver warning in synthesis.

parent 57f2e213
No related branches found
No related tags found
1 merge request!293Rename eth_stream into eth_stream_udp. Create new eth_stream.vhd that contains...
...@@ -111,7 +111,7 @@ ARCHITECTURE str OF dp_fifo_core IS ...@@ -111,7 +111,7 @@ ARCHITECTURE str OF dp_fifo_core IS
SIGNAL fifo_wr_dat : STD_LOGIC_VECTOR(c_fifo_dat_w-1 DOWNTO 0); SIGNAL fifo_wr_dat : STD_LOGIC_VECTOR(c_fifo_dat_w-1 DOWNTO 0);
SIGNAL fifo_wr_req : STD_LOGIC; SIGNAL fifo_wr_req : STD_LOGIC;
SIGNAL fifo_wr_ful : STD_LOGIC; SIGNAL fifo_wr_ful : STD_LOGIC;
SIGNAL wr_init : STD_LOGIC := '0'; SIGNAL wr_init : STD_LOGIC := '0';
SIGNAL fifo_wr_usedw : STD_LOGIC_VECTOR(wr_usedw'RANGE); SIGNAL fifo_wr_usedw : STD_LOGIC_VECTOR(wr_usedw'RANGE);
SIGNAL fifo_rd_dat : STD_LOGIC_VECTOR(c_fifo_dat_w-1 DOWNTO 0) := (OTHERS=>'0'); SIGNAL fifo_rd_dat : STD_LOGIC_VECTOR(c_fifo_dat_w-1 DOWNTO 0) := (OTHERS=>'0');
...@@ -191,6 +191,7 @@ BEGIN ...@@ -191,6 +191,7 @@ BEGIN
usedw => fifo_rd_usedw usedw => fifo_rd_usedw
); );
wr_init <= '0'; -- to avoid no driver warning in synthesis
fifo_wr_usedw <= fifo_rd_usedw; fifo_wr_usedw <= fifo_rd_usedw;
END GENERATE; END GENERATE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment