| Author |
Message |
dariush
Joined: 16 Mar 2003 Posts: 58
|
28 Jun 2003 10:45 systemc vcd |
|
|
|
|
Hi
How can I simulate a program which is written in systemc?
How can I create waveforms for my simulation?
bye
|
|
| Back to top |
|
 |
geconom
Joined: 12 Feb 2002 Posts: 309 Helped: 3
|
28 Jun 2003 18:17 systemc-2.0.1.exe |
|
|
|
|
There exist commercial simulators which treat SystemC just like VHDL or Verilog.I think Active-HDL is offering that and Modelsim too (not sure about the second). If you do not have them or you do not have money to spend you can use the free simulation kernel which is distributed from www.systemc.org (OSCI) and use any C/C++ compiler you like to perform simulation. To see waveforms you can make a VCD dump file during simulation, using SystemC calls, and view them after simulation with an open-source VCD viewer.
Read the manual and the discussions in www.systemc.org and you will find all you want.
|
|
| Back to top |
|
 |
dariush
Joined: 16 Mar 2003 Posts: 58
|
02 Jul 2003 6:44 systemc trace vcd file |
|
|
|
|
Hi geconom
How can I download OSCI and use it?
I can simulate my files and create VCD dump file.
after that what should I do?
thanks
bye
|
|
| Back to top |
|
 |
geconom
Joined: 12 Feb 2002 Posts: 309 Helped: 3
|
02 Jul 2003 8:57 install gtkwave systemc |
|
|
|
|
| OSCI is Open SystemC Initiative or something like that. Just go to http://www.systemc.org and download the latest core language package and the documentation for your platform. As for the VCD viewer, go to http://www.cs.man.ac.uk/apt/tools/gtkwave/ and get GTKWave. If you tell me the platform you are using (Windows, Linux, Solaris), I may offer more help.
|
|
| Back to top |
|
 |
dariush
Joined: 16 Mar 2003 Posts: 58
|
06 Jul 2003 8:57 ghraib 2.0.1 exe |
|
|
|
|
Hi geconom
My platform is windows NT/2000.
thanks
bye
|
|
| Back to top |
|
 |
elcielo
Joined: 13 Jun 2002 Posts: 854 Helped: 6
|
06 Jul 2003 10:16 vcd file for systemc |
|
|
|
|
https://www.systemc.org/download.php/systemc/13/18/systemc-2.0.1.exe
install.
|
|
| Back to top |
|
 |
semicon
Joined: 18 Feb 2004 Posts: 12
|
18 Feb 2004 7:30 systemc viewer |
|
|
|
|
modelsim5.8 easy to use.
.vcd convert to .WLF
vcd2wlf <source.vcd><target wlf>
|
|
| Back to top |
|
 |
Google AdSense

|
18 Feb 2004 7:30 Ads |
|
|
|
|
|
|
| Back to top |
|
 |
omara007
Joined: 06 Jan 2003 Posts: 1283 Helped: 39 Location: Dubai
|
25 Sep 2004 21:00 gtkwave for solaris 10 |
|
|
|
|
hi guys ..
how can i make a VCD dump file if I'm using VC++ 6 for compiling SystemC ..?
and if I have Modelsim .. how can I view the waveform using it ?
|
|
| Back to top |
|
 |
yesme@
Joined: 21 Jun 2005 Posts: 70 Helped: 8
|
26 Feb 2006 18:33 create file.vcd with systemc |
|
|
|
|
I've downloaded Gtkwave from h**p://www.cs.man.ac.uk/apt/tools/gtkwave/ and I tried to install in Cygwin environment but without success. There is something happen but I don't know why. The problem happen in ./configure process.
Here is the message:
"The glib-config script installed by GLIB could not be found ... "
|
|
| Back to top |
|
 |
bikashagarwal2
Joined: 02 Aug 2006 Posts: 1
|
02 Aug 2006 9:53 create dump file with systemc |
|
|
|
|
if u r using Vc++ ,
in the main.cpp
u have to create VCD file ,
sc_trace_file *filepointer_name = sc_create_vcd_trace_file("output")in that vCD file u have to trace the signals which u want to see
sc_trace(filepointer_name,signal name,"name of the signal u want to see in the output");
|
|
| Back to top |
|
 |