Skip to content
Snippets Groups Projects
Commit 8eadd8ad authored by Mathias Kreider's avatar Mathias Kreider
Browse files

No commit message

No commit message
parent 3e4648ac
Branches
Tags
No related merge requests found
...@@ -272,7 +272,7 @@ sipo_en <= (not snk_buffer_empty) or get_last_element; ...@@ -272,7 +272,7 @@ sipo_en <= (not snk_buffer_empty) or get_last_element;
feed_buffer : process(clk_i) feed_buffer : process(clk_i)
begin begin
if rising_edge(clk_i) then if rising_edge(clk_i) then
if (nRST_i = '0') then if (nRST_i = '0' or parser_reset = '1') then
snk_buffer_empty <= '1'; snk_buffer_empty <= '1';
sipo_clr <= '0'; sipo_clr <= '0';
byte_count <= 0; byte_count <= 0;
...@@ -328,7 +328,7 @@ snk_WR <= NOT snk_hdr_fsm.stall AND snk_i.cyc AND snk_i.stb; ...@@ -328,7 +328,7 @@ snk_WR <= NOT snk_hdr_fsm.stall AND snk_i.cyc AND snk_i.stb;
parser : process(clk_i) parser : process(clk_i)
begin begin
if rising_edge(clk_i) then if rising_edge(clk_i) then
if (nRST_i = '0' or parser_reset = '1') then if (nRST_i = '0' or parser_reset = '1') then
parser_wait <= '0'; parser_wait <= '0';
get_last_element <= '0'; get_last_element <= '0';
parse <= idle; parse <= idle;
......
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