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.
This commit is contained in:
parent
8004f21a7c
commit
41814f6bcc
@ -29,7 +29,9 @@ begin
|
|||||||
lpm_widthu => log2c(FIFO_DEPTH),
|
lpm_widthu => log2c(FIFO_DEPTH),
|
||||||
overflow_checking => "ON",
|
overflow_checking => "ON",
|
||||||
underflow_checking => "ON",
|
underflow_checking => "ON",
|
||||||
use_eab => "ON"
|
use_eab => "ON",
|
||||||
|
ram_block_type => "AUTO",
|
||||||
|
allow_rwcycle_when_full => "ON"
|
||||||
)
|
)
|
||||||
port map (
|
port map (
|
||||||
clock => clk,
|
clock => clk,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user