|
|
 |
Steps to generate a stimulus file from an existing wlf file:
vsim -view my_wlf.wlf
view list
add list -r /* (log stimulus signals)
write tssi my_wlf.vec (two files my_wlf.def and my_wlf.vec are generated in pwd)
quit -sim
On the shell prompt type:
/linux/bin/tssi2mti my_wlf.def my_wlf.vec > my_wlf.do
tssi2mti is available in the platform specific bin directories.
The .do file generated will contain the force commands that were applied as well as the corresponding "run" statements.
You can run this file as any other do file:
vsim -do mystim.do |
|
|
|
|