R
Richard
Guest
Hi all,
I am wondering if there is a way to simulate a Xilinx FIFO that is
generated with the FIFO Generator v6.1 as follows:
COMPONENT fifo_generator_v6_1
GENERIC (
C_COMMON_CLOCK : integer := 0;
C_COUNT_TYPE : integer := 0;
...
)
PORT(
CLK : IN std_logic := '0';
BACKUP : IN std_logic := '0';
...
)
ATTRIBUTE box_type : STRING;
ATTRIBUTE box_type OF fifo_generator_v6_1 : COMPONENT IS "black_box";
ATTRIBUTE GENERATOR_DEFAULT : STRING;
ATTRIBUTE GENERATOR_DEFAULT OF fifo_generator_v6_1: COMPONENT IS
"generatecore com.xilinx.ip.fifo_generator_v6_1.fifo_generator_v6_1 -a
map_qrvirtex4_to=virtex4 map_qvirtex4_to=virtex4";
Of course when I just simulate my design this is a blackbox. But to see
that I got everything right, I would need to be able to simulate this
core. Is there a simple way to do that?
In the meantime, I used async_fifo_v5_1.vhd to do some testing which has
a similar interface and worked fine. Anyway, I was wondering if there is
something similiar with the fifo_generator_v6_1.
Many thanks!
I am wondering if there is a way to simulate a Xilinx FIFO that is
generated with the FIFO Generator v6.1 as follows:
COMPONENT fifo_generator_v6_1
GENERIC (
C_COMMON_CLOCK : integer := 0;
C_COUNT_TYPE : integer := 0;
...
)
PORT(
CLK : IN std_logic := '0';
BACKUP : IN std_logic := '0';
...
)
ATTRIBUTE box_type : STRING;
ATTRIBUTE box_type OF fifo_generator_v6_1 : COMPONENT IS "black_box";
ATTRIBUTE GENERATOR_DEFAULT : STRING;
ATTRIBUTE GENERATOR_DEFAULT OF fifo_generator_v6_1: COMPONENT IS
"generatecore com.xilinx.ip.fifo_generator_v6_1.fifo_generator_v6_1 -a
map_qrvirtex4_to=virtex4 map_qvirtex4_to=virtex4";
Of course when I just simulate my design this is a blackbox. But to see
that I got everything right, I would need to be able to simulate this
core. Is there a simple way to do that?
In the meantime, I used async_fifo_v5_1.vhd to do some testing which has
a similar interface and worked fine. Anyway, I was wondering if there is
something similiar with the fifo_generator_v6_1.
Many thanks!