37 lines
825 B
C++
37 lines
825 B
C++
// Verilated -*- C++ -*-
|
|
// DESCRIPTION: Verilator output: Symbol table internal header
|
|
//
|
|
// Internal details; most calling programs do not need this header,
|
|
// unless using verilator public meta comments.
|
|
|
|
#ifndef _VTB_TOP__SYMS_H_
|
|
#define _VTB_TOP__SYMS_H_ // guard
|
|
|
|
#include "verilated_heavy.h"
|
|
|
|
// INCLUDE MODULE CLASSES
|
|
#include "Vtb_top.h"
|
|
#include "Vtb_top___024unit.h"
|
|
|
|
// SYMS CLASS
|
|
class Vtb_top__Syms : public VerilatedSyms {
|
|
public:
|
|
|
|
// LOCAL STATE
|
|
const char* __Vm_namep;
|
|
bool __Vm_didInit;
|
|
|
|
// SUBCELL STATE
|
|
Vtb_top* TOPp;
|
|
|
|
// CREATORS
|
|
Vtb_top__Syms(Vtb_top* topp, const char* namep);
|
|
~Vtb_top__Syms() {}
|
|
|
|
// METHODS
|
|
inline const char* name() { return __Vm_namep; }
|
|
|
|
} VL_ATTR_ALIGNED(VL_CACHE_LINE_BYTES);
|
|
|
|
#endif // guard
|