2013-01-18 02:40:37 +00:00
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
|
|
//*************************************************************************
|
|
|
|
//
|
2021-03-20 21:46:00 +00:00
|
|
|
// Code available from: https://verilator.org
|
|
|
|
//
|
2024-01-01 08:19:59 +00:00
|
|
|
// Copyright 2003-2024 by Wilson Snyder. This program is free software; you can
|
2013-01-18 02:40: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
|
2013-01-18 02:40: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
|
2013-01-18 02:40:37 +00:00
|
|
|
//
|
|
|
|
//*************************************************************************
|
|
|
|
///
|
|
|
|
/// \file
|
2021-03-20 21:46:00 +00:00
|
|
|
/// \brief Verilator program version information header
|
2013-01-18 02:40:37 +00:00
|
|
|
///
|
|
|
|
//*************************************************************************
|
2019-10-05 00:17:11 +00:00
|
|
|
|
2021-03-20 21:46:00 +00:00
|
|
|
/// Verilator product name, e.g. "Verilator"
|
2013-01-18 02:40:37 +00:00
|
|
|
// Autoconf substitutes this with the strings from AC_INIT.
|
2020-04-14 02:51:35 +00:00
|
|
|
#define VERILATOR_PRODUCT "@PACKAGE_NAME@"
|
2021-03-20 21:46:00 +00:00
|
|
|
|
2022-03-12 16:17:39 +00:00
|
|
|
/// Verilator version name, e.g. "1.002 2000-01-01"
|
2021-03-20 21:46:00 +00:00
|
|
|
// Autoconf substitutes this with the strings from AC_INIT.
|
2020-04-14 02:51:35 +00:00
|
|
|
#define VERILATOR_VERSION "@PACKAGE_VERSION@"
|
2022-03-12 16:17:39 +00:00
|
|
|
|
|
|
|
/// Verilator version number as integer
|
|
|
|
/// As major * 100000 + minor * 1000, e.g. 1002000 == 1.002
|
|
|
|
// Autoconf substitutes this with the strings from AC_INIT.
|
|
|
|
#define VERILATOR_VERSION_INTEGER @VERILATOR_VERSION_INTEGER@
|