2012-04-13 01:08:20 +00:00
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
2010-01-24 23:37:01 +00:00
|
|
|
//=============================================================================
|
|
|
|
//
|
2021-03-20 21:46:00 +00:00
|
|
|
// Code available from: https://verilator.org
|
2010-01-24 23:37:01 +00:00
|
|
|
//
|
2024-01-01 08:19:59 +00:00
|
|
|
// Copyright 2001-2024 by Wilson Snyder. This program is free software; you
|
2020-03-21 15:24:24 +00:00
|
|
|
// can redistribute it and/or modify it under the terms of either the GNU
|
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
// Version 2.0.
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
2010-01-24 23:37:01 +00:00
|
|
|
//
|
|
|
|
//=============================================================================
|
|
|
|
///
|
|
|
|
/// \file
|
2021-03-20 21:46:00 +00:00
|
|
|
/// \brief Verilated tracing in VCD Format implementation code
|
|
|
|
///
|
2022-11-30 03:17:50 +00:00
|
|
|
/// This file is deprecated, only verilated_vcd_sc.h is needed.
|
|
|
|
/// It is provided only for backward compatibility with user's linker scripts.
|
2010-01-24 23:37:01 +00:00
|
|
|
///
|
|
|
|
//=============================================================================
|
|
|
|
|
2022-11-30 03:17:50 +00:00
|
|
|
#ifdef VL_NO_LEGACY
|
|
|
|
#error "verilated_vcd_sc.cpp is deprecated; verilated_vcd_sc.h is self-sufficient"
|
2020-08-29 14:45:47 +00:00
|
|
|
#endif
|