Skip to content
Snippets Groups Projects
Commit f9b70d78 authored by Dimitris Lampridis's avatar Dimitris Lampridis
Browse files

genrams: fix typo in inferred async fifos

parent b60dd256
Branches
Tags
No related merge requests found
...@@ -252,7 +252,7 @@ begin -- syn ...@@ -252,7 +252,7 @@ begin -- syn
p_gen_going_full : process(we_int, wcb, rcb) p_gen_going_full : process(we_int, wcb, rcb)
begin begin
if ((wcb.bin (wcb.bin'left-1 downto 0) = rcb.bin_x(rcb.bin_x'left-1 downto 0)) if ((wcb.bin (wcb.bin'left-1 downto 0) = rcb.bin_x(rcb.bin_x'left-1 downto 0))
and (wcb.bin(wcb.bin'left) /= rcb.bin_x(wcb.bin_x'left))) then and (wcb.bin(wcb.bin'left) /= rcb.bin_x(rcb.bin_x'left))) then
going_full <= '1'; going_full <= '1';
elsif (we_int = '1' elsif (we_int = '1'
and (wcb.bin_next(wcb.bin'left-1 downto 0) = rcb.bin_x(rcb.bin_x'left-1 downto 0)) and (wcb.bin_next(wcb.bin'left-1 downto 0) = rcb.bin_x(rcb.bin_x'left-1 downto 0))
......
...@@ -223,7 +223,7 @@ begin -- syn ...@@ -223,7 +223,7 @@ begin -- syn
p_gen_going_full : process(rcb, wcb, we_int) p_gen_going_full : process(rcb, wcb, we_int)
begin begin
if ((wcb.bin (wcb.bin'LEFT-1 downto 0) = rcb.bin_x(rcb.bin_x'LEFT-1 downto 0)) if ((wcb.bin (wcb.bin'LEFT-1 downto 0) = rcb.bin_x(rcb.bin_x'LEFT-1 downto 0))
and (wcb.bin(wcb.bin'LEFT) /= rcb.bin_x(wcb.bin_x'LEFT))) then and (wcb.bin(wcb.bin'LEFT) /= rcb.bin_x(rcb.bin_x'LEFT))) then
going_full <= '1'; going_full <= '1';
elsif (we_int = '1' elsif (we_int = '1'
and (wcb.bin_next(wcb.bin'LEFT-1 downto 0) = rcb.bin_x(rcb.bin_x'LEFT-1 downto 0)) and (wcb.bin_next(wcb.bin'LEFT-1 downto 0) = rcb.bin_x(rcb.bin_x'LEFT-1 downto 0))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment