2012-04-13 01:08:20 +00:00
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
2010-01-17 20:10:37 +00:00
|
|
|
//*************************************************************************
|
|
|
|
//
|
2021-03-20 21:46:00 +00:00
|
|
|
// Code available from: https://verilator.org
|
|
|
|
//
|
2023-01-01 15:18:39 +00:00
|
|
|
// Copyright 2010-2023 by Wilson Snyder. This program is free software; you can
|
2010-01-17 20:10:37 +00:00
|
|
|
// redistribute it and/or modify it under the terms of either the GNU
|
2020-03-21 15:24:24 +00:00
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
2010-01-17 20:10:37 +00:00
|
|
|
// Version 2.0.
|
2020-03-21 15:24:24 +00:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
2010-01-17 20:10:37 +00:00
|
|
|
//
|
|
|
|
//*************************************************************************
|
|
|
|
///
|
|
|
|
/// \file
|
2021-07-24 14:00:33 +00:00
|
|
|
/// \brief Verilated old string and data-type header
|
2010-01-17 20:10:37 +00:00
|
|
|
///
|
2021-07-24 14:00:33 +00:00
|
|
|
/// This file is deprecated, and provided for backwards compatibility.
|
|
|
|
/// Include verilated.h instead.
|
2010-01-17 20:10:37 +00:00
|
|
|
///
|
|
|
|
//*************************************************************************
|
2019-10-05 00:17:11 +00:00
|
|
|
|
2021-03-04 02:57:07 +00:00
|
|
|
#ifndef VERILATOR_VERILATED_HEAVY_H_
|
2021-03-20 21:46:00 +00:00
|
|
|
#define VERILATOR_VERILATED_HEAVY_H_
|
2010-01-17 20:10:37 +00:00
|
|
|
|
2021-07-24 14:00:33 +00:00
|
|
|
#ifdef VL_NO_LEGACY
|
|
|
|
#error "Include <verilated.h> instead of <verilated_heavy.h>"
|
|
|
|
#endif
|
2020-10-31 02:49:42 +00:00
|
|
|
|
2021-07-24 14:00:33 +00:00
|
|
|
#include "verilated.h"
|
2020-10-27 23:37:12 +00:00
|
|
|
|
2018-11-29 00:59:10 +00:00
|
|
|
#endif // Guard
|