A VHDL common library built to simplify and speed up the development of FPGA project
- VHDL 100%
| ip/Async_FIFO | ||
| MAIN.vhd | ||
| README.md | ||
LIB_COMMON
A common VHDL library meant to simplify and speed up the development of FPGA project.
This library comes with a set of predefined types and functions, so you don't have to manually copy them, each time you create a new project or module.
This library also provides basic common IPs such as Asynchronous FIFO
How to use ?
- Inside your IDE, create a new library
lib_common - Import the needed file(s) to your project
- Inside your IP, import the package
library LIB_COMMON;
use LIB.COMMON.MAIN.all; -- mandatory
use LIB.COMMON.XXX.all;