mirror of
https://github.com/verilator/verilator.git
synced 2025-01-01 04:07:34 +00:00
32 lines
1011 B
C++
32 lines
1011 B
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//*************************************************************************
|
|
//
|
|
// Code available from: https://verilator.org
|
|
//
|
|
// Copyright 2010-2023 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 old string and data-type header
|
|
///
|
|
/// This file is deprecated, and provided for backwards compatibility.
|
|
/// Include verilated.h instead.
|
|
///
|
|
//*************************************************************************
|
|
|
|
#ifndef VERILATOR_VERILATED_HEAVY_H_
|
|
#define VERILATOR_VERILATED_HEAVY_H_
|
|
|
|
#ifdef VL_NO_LEGACY
|
|
#error "Include <verilated.h> instead of <verilated_heavy.h>"
|
|
#endif
|
|
|
|
#include "verilated.h"
|
|
|
|
#endif // Guard
|