Last change
on this file since 28 was
1,
checked in by buchmann, 17 years ago
|
Initial import from CVS repository
|
File size:
1.2 KB
|
Line | |
---|
1 | /*------------------------------------------------------------\ |
---|
2 | | | |
---|
3 | | Tool : systemcass | |
---|
4 | | | |
---|
5 | | File : sc_vcd_trace.h | |
---|
6 | | | |
---|
7 | | Author : Kingbo Paul-Jerome | |
---|
8 | | Buchmann Richard | |
---|
9 | | | |
---|
10 | | Date : 09_07_2004 | |
---|
11 | | | |
---|
12 | \------------------------------------------------------------*/ |
---|
13 | #ifndef SC_VCD_TRACE_H |
---|
14 | #define SC_VCD_TRACE_H |
---|
15 | |
---|
16 | #include "sc_fwd.h" |
---|
17 | |
---|
18 | // ---------------------------------------------------------------------------- |
---|
19 | namespace sc_core { |
---|
20 | |
---|
21 | // Create VCD file |
---|
22 | extern sc_trace_file *sc_create_vcd_trace_file(const char* name); |
---|
23 | extern void sc_close_vcd_trace_file( sc_trace_file* tf ); |
---|
24 | |
---|
25 | } // end of sc_core namespace |
---|
26 | |
---|
27 | using sc_core::sc_create_vcd_trace_file; |
---|
28 | using sc_core::sc_close_vcd_trace_file; |
---|
29 | |
---|
30 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.