Forum Discussion
Quartus Pro an Lite different handling of VHDL entities problem
- 2 years ago
Hi,
Have to use something like below:
rsm: entity work.spi_master_writeonly generic map (.....) port map(....)
Also can do like below as well:
use work.spi_master_writeonly;
...
rsm: spi_master_writeonly generic map (.....) port map(....)
Pro version is more strict compared to Lite version.
Thanks,
Best Regards,
Sheng
p/s: If any answer from the community or Intel Support are helpful, please feel free to give best answer.
Hi,
Have to use something like below:
rsm: entity work.spi_master_writeonly generic map (.....) port map(....)
Also can do like below as well:
use work.spi_master_writeonly;
...
rsm: spi_master_writeonly generic map (.....) port map(....)
Pro version is more strict compared to Lite version.
Thanks,
Best Regards,
Sheng
p/s: If any answer from the community or Intel Support are helpful, please feel free to give best answer.
Thanks for that. I don't suppose there's a document that lists these differences in strictness, as I'm seeing other problems?
Not being a VHDL guru I'm surprised that these differences are allowed in the language specification.