ModelSim 'restart' , / testbench , .
.
Usually the design has not changed, and you just want to run it against the updated testbench. In this case, you can restart the simulation by executing a custom script that you invoke with the "do {script -name}" command when necessary.
vlog -reportprogress 300 -work work testbench.v
restart -f
run 1us
Assumptions: testbench file = testbench.v; simulation time = 1us
source
share