Forum Discussion
Altera_Forum
Honored Contributor
10 years agoWhat I did is loading msim_setup.tcl in my custom script like below.
# Triple Speed Ethernet MAC source ./../altera_tse_sim/mentor/msim_setup.tcl set QSYS_SIMDIR "./../altera_tse_sim/" set QUARTUS_INSTALL_DIR "c:/altera/13.1/quartus/" # Compile device library files dev_com # Compile the design files in correct order com Where altera_tse is the name of my TSE IP, altera_tse_sim is the silumation lib folder Quartus II software generated. QSYS_SIMDIR and QUARTUS_INSTALL_DIR parameters are used in the msim_setup.tcl. I have learnt this way from the TSE's testbench. I like that.