Re: FPGA: Model-SIm XE problem



Duane Clark wrote:
bijoy wrote:
Hi I have made a generic component like below

entity fifo is generic( AW : integer; PROG_EMPTY_THD :
std_logic_vector(AW downto 0);...

The problem is that you are using AW within the generic declaration area. The way you are doing that is a bit unusual too. Make PROG_EMPTY_THD a signal instead of a generic, and the problem should go away.

Oops, and of course also PROG_FULL_THD.
.