I am completely new to Vivado and VHDL, and I would like to receive some recommendations on a fundamental problem.
I suppose that I can create my own libraries and use them in my projects, as well as for standard and fundamental
eg:
library IEEE;
use IEEE.std_logic_1164.ALL;
use IEEE.std_logic_unsigned.ALL;
Now, browsing the net, I did not find anything concrete as an answer; there is no direct way to “add a library” (at least in my version of Vivado).
Is there a way to build VHDL code, let's say type definitions and use them in any file you like, how is it done in C, for example?
source
share