Commit f3f638d7 authored by Maciej Lipinski's avatar Maciej Lipinski

[swcore/out_blk] ignoring dlast from mpm when no dvalid

parent a09b62ec
......@@ -808,7 +808,7 @@ begin -- behavoural
src_out_int.stb <= '1';
elsif(src_i.stall = '1' and mpm_dvalid_i = '1') then
s_send_pck <= S_FLUSH_STALL;
elsif(mpm_dlast_i = '1')then
elsif(mpm_dlast_i = '1' and mpm_dvalid_i = '1')then
s_send_pck <= S_FINISH_CYCLE; -- we free page in EOF
end if;
......
Markdown is supported
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