Maker Pro
Maker Pro

HOW CAN I INTEGRATE A FIFO IN AN ALTERA FPGA?

P

pidy

Jan 1, 1970
0
hello
i need some helps...
i have an altera FPGA and an external FIFO (IDT72241) connected with th
FPGA.

now i want integrate the external FIFO in the FPGA using lpm_fifo o
lpm_fifo_dc altera_lpm library.

someone can suggest me how to modify the library to make work it at th
same way of the IDT72241.

pS: i use verilog descriptive language

thank you so much and sorry for not my perfect english

This message was sent using the sci.electronics.basics web interface o
www.Electronics-Related.com
 
P

PeteS

Jan 1, 1970
0
You would implement this the same way as any other external module

declare it like this

<modulename> <your local module name>
(
.<original module signal name>(your internal signal to be
connected),
.<>(),
.<>(),
.<>90
)

Where <modulename> is the name of the library module you wish to use.


Note that the angle brackets '<>' are placeholders that would not
appear. The periods before the signal names are required for Verilog,
and all the parenthesis are also required.

Cheers

PeteS
 
Top