mirror of
https://github.com/verilator/verilator.git
synced 2025-01-24 07:14:22 +00:00
d4f7f5297a
Includes `timescale, $printtimescale, $timeformat. VL_TIME_MULTIPLIER, VL_TIME_PRECISION, VL_TIME_UNIT have been removed and the time precision must now match the SystemC time precision. To get closer behavior to older versions, use e.g. --timescale-override "1ps/1ps".
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//*************************************************************************
|
|
// DESCRIPTION: Verilator: Link modules/signals together
|
|
//
|
|
// Code available from: https://verilator.org
|
|
//
|
|
//*************************************************************************
|
|
//
|
|
// Copyright 2003-2020 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
|
|
//
|
|
//*************************************************************************
|
|
|
|
#ifndef _V3LINKLEVEL_H_
|
|
#define _V3LINKLEVEL_H_ 1
|
|
|
|
#include "config_build.h"
|
|
#include "verilatedos.h"
|
|
|
|
#include "V3Error.h"
|
|
#include "V3Ast.h"
|
|
|
|
//============================================================================
|
|
|
|
class V3LinkLevel {
|
|
private:
|
|
typedef std::vector<AstNodeModule*> ModVec;
|
|
|
|
static void timescaling(const ModVec& mods);
|
|
static void wrapTopCell(AstNetlist* rootp);
|
|
static void wrapTopPackages(AstNetlist* rootp);
|
|
|
|
public:
|
|
static void modSortByLevel();
|
|
static void wrapTop(AstNetlist* rootp);
|
|
};
|
|
|
|
#endif // Guard
|