在 Windows 下,我喜欢在批处理模式下运行 Vivado 仿真器。 我创建了仿真批文件 (.bat) ,包含以下命令: xvlog file1.vxvhdl file2.vhdxvlog top.vxelab -debug typical top -s top_simxsim top_sim -t xsim_run.tcl当我运行批文件,执行第一条命令后脚本中止。如何正确在批模式下运行 Vivado 仿真器? 解决方法: 在 Windows 平台上,xvlog、xvhdl、xelab 以及 xsim 文件都是批处理文件,带 .bat 扩展名。Windows 不可执行文件带 .exe 扩展名。 如果您不喜欢在批处理模式下运行 Vivado 仿真器,要知道,在 Windows 下从另一个中调用批处理文件需要在批处理文件名前面使用一个调用。 在 Linux 中,xvlog、xvhdl、xelab 以及 xsim 都是外壳脚本,它们能够像可执行文件那样被调用。 因此,无需针对 Linux 改变调用机制。 请看下列示例:
run_xsim.bat (Windows) call xvlog file1.vcall xvhdl file2.vhdcall xvlog top.vcall xelab -debug typical top -s top_simcall xsim top_sim -t xsim_run.tcl run_xsim.sh (Linux) xvlog file1.vxvhdl file2.vhdxvlog top.vxelab -debug typical top -s top_simxsim top_sim -t xsim_run.tcl
|