david_
New Contributor
7 years agoMixed language ModelSim/Questa simulations with altera_mf
Hi I have a mixed language design using SystemVerilog, Verilog and VHDL. In this design there are a number of Intel FPGA components, which are either VHDL or Verilog. I am having an issue when tryi...
- 7 years ago
If you're using the Intel Edition ModelSim software, you need not compile the FPGA device libraries again. All you need to do is to include them in the vsim command using the -L <lib_name> .
altera_mf for VHDL
and altera_mf_ver for Verilog
For ex,
vsim -work ... -L altera_mf_ver include any other device specific libraries this way. On the safer side you could add both VHDL as well as Verilog libraries to the simulation using the -L altera_mf -L altera_mf_ver ... options and try.