Skip to content
Snippets Groups Projects
Commit 98f5750e authored by Wesley W. Terpstra's avatar Wesley W. Terpstra
Browse files

eb2: fix tx mux hang

parent 2e0295b5
Branches
Tags
No related merge requests found
...@@ -114,7 +114,7 @@ begin ...@@ -114,7 +114,7 @@ begin
r_tag_valid <= '0'; r_tag_valid <= '0';
r_tag_value <= c_tag_pass_on; r_tag_value <= c_tag_pass_on;
elsif rising_edge(clk_i) then elsif rising_edge(clk_i) then
if s_tag_pop = '1' then if s_tag_pop = '1' or r_tag_valid = '0' then
r_tag_valid <= not tag_empty_i; r_tag_valid <= not tag_empty_i;
r_tag_value <= tag_dat_i; r_tag_value <= tag_dat_i;
end if; end if;
......
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