I want to change signal height in waveforms. Of course, I know how to do it in GUI for selected signals, but I want to
a) Change default height for signal. I looked in Preferences-> Waveform options, but I didn't find there this option
b) Change height for group of signals in *.do file. I used macro language to add signals, like
Of course I can to do it manually. And manually I can make it with GUI - select all and then change height.
But there is a lot of signals in my project, so I'll go crazy if I would define each signal in *.do file.
May be there is ability to make in cycle? For example read names of signals in array, and then add them it in cycle like wave -height 25 NameArray(i) ?
Of course I can to do it manually. And manually I can make it with GUI - select all and then change height.
But there is a lot of signals in my project, so I'll go crazy if I would define each signal in *.do file.
May be there is ability to make in cycle? For example read names of signals in array, and then add them it in cycle like wave -height 25 NameArray(i) ?
Doesn't your .do file explicitly call out every signal that it plots, e.g., "wave -noreg ..." I would think it would be an easy task to copy those lines, paste them, and then do a global replace in the pasted lines.
Yes It does, in auto generated do-file there is list of UUT-interface signals.
But I want to add to waveform signals from inside instances ( /fifo_top_tb/UUT/deeper/anddeeper/andmoredeeper/label1/*)
Or may be I can get list of instance signals and use it?