From 41814f6bcc42986bb0827cbff63777a15390c47f Mon Sep 17 00:00:00 2001 From: John Daktylidis Date: Sat, 22 Jul 2023 14:40:13 +0200 Subject: [PATCH] Update Altera implementation of FWFT_FIFO Update the Altera implemenation of the FWFT FIFO to allow write and read on the smae cycle when the FIFO is full. This is a requirement for the moving_average implementation. --- src/FWFT_FIFO_Altera.vhd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/FWFT_FIFO_Altera.vhd b/src/FWFT_FIFO_Altera.vhd index dfaf9cb..4342634 100644 --- a/src/FWFT_FIFO_Altera.vhd +++ b/src/FWFT_FIFO_Altera.vhd @@ -29,7 +29,9 @@ begin lpm_widthu => log2c(FIFO_DEPTH), overflow_checking => "ON", underflow_checking => "ON", - use_eab => "ON" + use_eab => "ON", + ram_block_type => "AUTO", + allow_rwcycle_when_full => "ON" ) port map ( clock => clk,