Forum Discussion
Altera_Forum
Honored Contributor
12 years agoThat trace looks like it may be from Verilog-XL; an interpretive simulator that no longer exists.
In Modelsim, you can use the step and see commands to get similar output. For longer traces, you may want to use a Tcl script.proc linetrace1000 {} { for { set n 0} { $n < 1000 } {incr n} { step; see 0 }}