N
nfirtaps
Guest
I am trying to instantiate a Xilinx Asynchrouns FIFO with coregen and
am running into problems. Here is what I have for the control
signals
wr_clk is running at 6 MHz
rd_clk is running at 48 MHz
wr_en <= not almost_full;
process(rd_clk)
begin
if(rd_clk'event and rd_clk = '1')
rd_en <= not almost_empty;
end if;
end process;
The code is simple however, I can tranfer are 180K and the thing
dies. Anyone out there who has used the Async FIFO from Corgen and
gotten it to work?
Regards
am running into problems. Here is what I have for the control
signals
wr_clk is running at 6 MHz
rd_clk is running at 48 MHz
wr_en <= not almost_full;
process(rd_clk)
begin
if(rd_clk'event and rd_clk = '1')
rd_en <= not almost_empty;
end if;
end process;
The code is simple however, I can tranfer are 180K and the thing
dies. Anyone out there who has used the Async FIFO from Corgen and
gotten it to work?
Regards