With GtkWave I can simply open a vcd waveform file from the command line as follows:
PS> gtkwave waves.vcd
Now, I'm needing to switch to modelsim, and need this feature as well. How can I open a modelsim wlf waveform file from the command line and have it open a waves window the same way as gtkwave? I want to do something like this:
PS> start vsim -do "wave open vsim.wlf"
ERROR: bad tcl syntax...
The best I can do so far is just open the wave window:
PS> start vsim -do "view wave"