diff --git a/libraries/base/dp/src/vhdl/dp_fifo_fill_eop.vhd b/libraries/base/dp/src/vhdl/dp_fifo_fill_eop.vhd index 56b49e0e1c2fd6ab2aaebb66fb309f9f406b0f3a..124fdb1e1437686a8fcfc523ec2bba8ea27501b5 100644 --- a/libraries/base/dp/src/vhdl/dp_fifo_fill_eop.vhd +++ b/libraries/base/dp/src/vhdl/dp_fifo_fill_eop.vhd @@ -253,8 +253,8 @@ BEGIN -- No need to transfer eop counter across clock domains for single clock ELSE - wr_eop_busy <= '0'; -- To prevent inferred latch. - wr_eop_new <= '0'; -- To prevent inferred latch. + wr_eop_busy <= '0'; -- Not used here, fix value to prevent inferred latch. + wr_eop_new <= '0'; -- Not used here, fix value to prevent inferred latch. IF snk_in.eop = '1' THEN wr_eop_cnt <= 1; -- wr_eop_cnt can simply be set to 1 instead of counting as it is immidiatly processed due to having a single clock. ELSE