verilator/src/V3Tristate.h

33 lines
1009 B
C
Raw Normal View History

// -*- mode: C++; c-file-style: "cc-mode" -*-
2009-01-06 16:03:57 +00:00
//*************************************************************************
// DESCRIPTION: Verilator: Add Unknown assigns
//
2019-11-08 03:33:59 +00:00
// Code available from: https://verilator.org
2009-01-06 16:03:57 +00:00
//
//*************************************************************************
//
2024-01-01 08:19:59 +00:00
// Copyright 2003-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
2009-01-06 16:03:57 +00:00
//
//*************************************************************************
#ifndef VERILATOR_V3TRISTATE_H_
#define VERILATOR_V3TRISTATE_H_
2009-01-06 16:03:57 +00:00
#include "config_build.h"
#include "verilatedos.h"
class AstNetlist;
2009-01-06 16:03:57 +00:00
//============================================================================
class V3Tristate final {
2009-01-06 16:03:57 +00:00
public:
static void tristateAll(AstNetlist* nodep) VL_MT_DISABLED;
2009-01-06 16:03:57 +00:00
};
#endif // Guard