Forum Discussion
Hi,
To configure Quartus to use Altera-Modelsim as the simulator go to Assignments > Settings > EDA Tool Settings > Simulation Make sure “Modelsim-Altera” is selected as the tool Next go to Tools > Options > General > EDA Tools sure that the path next to ModelsimAltera is configured correctly (example path=C:\altera\13.0sp1\mode-sim_ase\win32aloem)
- We have to write the testbench in HDL.
- Since you are using IP we should use the scripts(msim_setup.tcl) to load the libraries or supporting files.
- The Quartus® Prime software generates simulation files for each IP core during IP generation,The IP generation output also includes scripts to compile and run any testbench.
In your FFT design you can find msim_setup.tcl file read the file which will help you in simulating.create a simple scrtip including your IP msim_srtup & testbench.vhd.
It should look like
set QSYS_SIMDIR C:/Users/anandr1x/Desktop/fftpro
source mentor/msim_setup.tcl
#dev_com
# Override the top-level name (so that elab is useful)
set TOP_LEVEL_NAME fftprotb
# Compile the standalone IP.
com
# Compile the user top-level vlog -sv ../../top.sv
vlog -sv fftprotb.v
# Elaborate the design.
elabLet me know if this has helped resolve the issue you are facing or if you need any further assistance.
Regards
Anand
Can you suggest any video tutorial links in youtube or somewhere which helps me to see all this process. Because as I told I am new to this quartus. It will help me to navigate through tool features easily.
- AnandRaj_S_Intel6 years ago
Regular Contributor
Hi
Refer below links which may helps me to see all this process.
https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/ug/ug_gs_msa_qii.pdf
https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/ug/archives/ug_intro_to_megafunctions_140.pdf
INTEL FPGA TECHNICAL TRAINING look for simulation topics
https://www.intel.com/content/www/us/en/programmable/support/training/catalog.html?courseType=Online
Regards
ANAND