// 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__SYMS_H_ #define _VTB__SYMS_H_ // guard #include "verilated_heavy.h" // INCLUDE MODULE CLASSES #include "Vtb.h" // SYMS CLASS class Vtb__Syms : public VerilatedSyms { public: // LOCAL STATE const char* __Vm_namep; bool __Vm_didInit; // SUBCELL STATE Vtb* TOPp; // CREATORS Vtb__Syms(Vtb* topp, const char* namep); ~Vtb__Syms() = default; // METHODS inline const char* name() { return __Vm_namep; } } VL_ATTR_ALIGNED(VL_CACHE_LINE_BYTES); #endif // guard