summaryrefslogtreecommitdiff
path: root/src/systemc/ext/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/ext/utils')
-rw-r--r--src/systemc/ext/utils/_using.hh1
-rw-r--r--src/systemc/ext/utils/sc_trace_file.hh3
2 files changed, 4 insertions, 0 deletions
diff --git a/src/systemc/ext/utils/_using.hh b/src/systemc/ext/utils/_using.hh
index e6477c7cb..16b3e4031 100644
--- a/src/systemc/ext/utils/_using.hh
+++ b/src/systemc/ext/utils/_using.hh
@@ -71,6 +71,7 @@ using sc_core::sc_create_vcd_trace_file;
using sc_core::sc_close_vcd_trace_file;
using sc_core::sc_write_comment;
using sc_core::sc_trace;
+using sc_core::sc_trace_delta_cycles;
using sc_core::sc_exception;
diff --git a/src/systemc/ext/utils/sc_trace_file.hh b/src/systemc/ext/utils/sc_trace_file.hh
index 9281d47e6..db50e3967 100644
--- a/src/systemc/ext/utils/sc_trace_file.hh
+++ b/src/systemc/ext/utils/sc_trace_file.hh
@@ -167,6 +167,9 @@ void sc_trace(sc_trace_file *, const sc_dt::uint64 *,
void sc_trace(sc_trace_file *, const unsigned int &,
const std::string &, const char **enum_literals);
+// Deprecated
+void sc_trace_delta_cycles(sc_trace_file *, bool on=true);
+
template <class T>
void
sc_trace(sc_trace_file *, const sc_signal_in_if<T> &, const std::string &)