mirror of
https://github.com/verilator/verilator.git
synced 2024-12-28 18:27:34 +00:00
25 lines
976 B
C++
25 lines
976 B
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//=============================================================================
|
|
//
|
|
// Code available from: https://verilator.org
|
|
//
|
|
// Copyright 2001-2024 by Wilson Snyder. 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-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
//
|
|
//=============================================================================
|
|
///
|
|
/// \file
|
|
/// \brief Verilated tracing in VCD Format implementation code
|
|
///
|
|
/// This file is deprecated, only verilated_vcd_sc.h is needed.
|
|
/// It is provided only for backward compatibility with user's linker scripts.
|
|
///
|
|
//=============================================================================
|
|
|
|
#ifdef VL_NO_LEGACY
|
|
#error "verilated_vcd_sc.cpp is deprecated; verilated_vcd_sc.h is self-sufficient"
|
|
#endif
|