在win10中执行uvm实战中的例子

一、安装modelsim

二、在文件夹下编写bat脚本

 编写的脚本为:(名字为exex.bat)

vlib work
vlog -f filelist.f
vsim -c top_tb +UVM_TESTNAME=base_test -do "run -all;exit" -l top_tb.log -voptargs=+acc

其中-c 是为了不启动modelsim的图形界面

filelist.f的内容为:

../../dut/dut.sv
top_tb.sv

三、执行

在上述的目录执行上述的bat脚本即可

./exec.bat



参考文章:

你可能感兴趣的:(uvm,uvm,数字ic,fpga)