modelsim do文件仿真

Posted billyz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了modelsim do文件仿真相关的知识,希望对你有一定的参考价值。

1.编写sim.do文件

##### Quit the Simulation #####
quit -sim
 
##### Make work directory && Create the Project/Lib #####
if {[file exists work]} {
file delete -force
work vlib work
puts "Successfully Created work1 directory"
} else {
vlib work
puts "Successfully Created work directory"
}
 
##### Compile the verilog #####
vlog ../testbench/counter_tb.v
vlog ../prj/ip/counter.v
 
##### Start Simulation #####
vsim -t ps -novopt -L lpm -L altera_mf -L altera_primitives work.counter_tb
radix hex
add wave -position insertpoint sim:/counter_tb/counter0/*
run -all

2.modelsim_run.bat文件

modelsim -do sim.do

以上是关于modelsim do文件仿真的主要内容,如果未能解决你的问题,请参考以下文章

.do文件进行Quartus调用modelSIM仿真设定

modelsim do文件仿真

怎么用modelsim打开.do文件啊

Modelsim中使用TCL脚本编写do文件实现自动化仿真

Modelsim自动化仿真之do文件书写

如何使用bat文件和do文件生成不依赖路径的modelsim仿真