switches to FST tracing

This commit is contained in:
Eyck Jentzsch 2024-07-24 06:51:29 +02:00
parent 722b015f82
commit 25b1be719e
2 changed files with 3 additions and 2 deletions

View File

@ -14,4 +14,5 @@ if { $distro == "CentOS" && ![info exists ::env(PROJECT)] && ![info exists ::env
module load tools/gcc-riscv64-unknown-elf/13
module load tools/cmake
module load tools/utilities
module load tools/utilities
module load tools/scviewer

View File

@ -75,7 +75,7 @@ int sc_main(int argc, char *argv[]) {
auto tx_trace_type = static_cast<scc::tracer::file_type>(trace_level >> 1); // bit3-bit1 define the kind of transaction trace
auto trace_default_on = parser.is_set("trace-default-on");
cfg.set_value("$$$scc_tracer$$$.tx_trace_type", static_cast<unsigned>(scc::tracer::file_type::FTR));
cfg.set_value("$$$scc_tracer$$$.sig_trace_type", static_cast<unsigned>(scc::tracer::file_type::SC_VCD));
cfg.set_value("$$$scc_tracer$$$.sig_trace_type", static_cast<unsigned>(scc::tracer::file_type::FST));
tracer = scc::make_unique<scc::configurable_tracer>(file_name, tx_trace_type, enable_sig_trace, trace_default_on);
}
///////////////////////////////////////////////////////////////////////////