![]() |
|
|
|||||||
![]() |
VHDL - Saving results from a simulation |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Hello,
Could you possibly tell me if there is a way to save the resulting information from a ModelSim simulation? I would like to save these waveforms as a text file. Thanks. Guilherme Corręa. =?iso-8859-1?q?Guilherme_Corr=EAa?= |
|
|
|
|
#2 |
|
Posts: n/a
|
Try:
vsim -c top_tb vsim> add log -r / vsim> run -all;exit This would create a WLF file for you, after that you can convert to a VCD (ASCII) format if your TEXT - but why do you need a text file? Regards Ajeetha, CVC www.noveldv.com Guilherme Corręa wrote: > Hello, > > Could you possibly tell me if there is a way to save the resulting > information from a ModelSim simulation? > I would like to save these waveforms as a text file. > > Thanks. > Guilherme Corręa. |
|
|
|
#3 |
|
Posts: n/a
|
Another option is to use the list window, you can export this window to a
tabular list (amonst others). You will need to do some post processing on this file since it records the signal values for each delta, Hans www.ht-lab.com "Ajeetha" <> wrote in message news: oups.com... Try: vsim -c top_tb vsim> add log -r / vsim> run -all;exit This would create a WLF file for you, after that you can convert to a VCD (ASCII) format if your TEXT - but why do you need a text file? Regards Ajeetha, CVC www.noveldv.com Guilherme Corręa wrote: > Hello, > > Could you possibly tell me if there is a way to save the resulting > information from a ModelSim simulation? > I would like to save these waveforms as a text file. > > Thanks. > Guilherme Corręa. |
|