2012-04-12 21:08:20 -04:00
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
2010-01-24 18:37:01 -05:00
|
|
|
//=============================================================================
|
|
|
|
|
//
|
2021-03-20 17:46:00 -04:00
|
|
|
// Code available from: https://verilator.org
|
2010-01-24 18:37:01 -05:00
|
|
|
//
|
2026-01-26 20:24:34 -05:00
|
|
|
// This program is free software; you 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-FileCopyrightText: 2001-2026 Wilson Snyder
|
2020-03-21 11:24:24 -04:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
2010-01-24 18:37:01 -05:00
|
|
|
//
|
|
|
|
|
//=============================================================================
|
|
|
|
|
///
|
|
|
|
|
/// \file
|
2021-03-20 17:46:00 -04:00
|
|
|
/// \brief Verilated tracing in VCD Format implementation code
|
|
|
|
|
///
|
2022-11-29 22:17:50 -05: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 18:37:01 -05:00
|
|
|
///
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
2022-11-29 22:17:50 -05:00
|
|
|
#ifdef VL_NO_LEGACY
|
|
|
|
|
#error "verilated_vcd_sc.cpp is deprecated; verilated_vcd_sc.h is self-sufficient"
|
2020-08-29 10:45:47 -04:00
|
|
|
#endif
|