Forum Discussion
Hi,
May I know what is different libraries here and which libraries do you mean?
Based on my understanding, there is no library in verilog but you can use Verilog header file that can allow you to do some component functionality.
You can write a verilog file and then include it in another verilog file. In this verilog file, you might instantiate the component used. You may try the code as stated in link below:
https://www.intel.com/content/www/us/en/programmable/support/support-resources/knowledge-base/solutions/rd07231998_9862.html
Thanks
Cannot I use the 'vlog -work <libname> <filename>' command in order to compile the <filename> file into <libname> library?
The situation is so that I have a design with two modules, which have the the same name but a different functionality and they are located in the different hierarchies of the design...
So, I'm seeking a way how to compile the design without touching the files... So I thought that compiling the design into the different libraries could give a solution...