Forum Discussion
3 Replies
- AnandRaj_S_Intel
Regular Contributor
Hi Luis,
- We need to add the include (macro)files to the project and just compile for Quartus STD & LITE.
- For Quartus Pro, the compiler to search for macro file and include it during the compile process. No need to use `include in Verilog module. Please check the attached image
We recommend user to just add the `include "define.v" statement to the start of your design file and add macro file in file list.
Hope it helps! Let me know if you need any further assistance.
Regards
Anand
- ak6dn
Regular Contributor
No. There is no implicit INCLUDE capability in verilog. You need to use `include <file> in each separately compiled verilog module.
- AnandRaj_S_Intel
Regular Contributor
Yes, We can use by including the macro files into the file list. If we don't include macro files in file list than we have to `include <file> in each Verilog module.
Please check the attached image.