38 lines
921 B
C++
38 lines
921 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 VERILATED_VTB__SYMS_H_
|
|
#define VERILATED_VTB__SYMS_H_ // guard
|
|
|
|
#include "verilated.h"
|
|
|
|
// INCLUDE MODEL CLASS
|
|
|
|
#include "Vtb.h"
|
|
|
|
// INCLUDE MODULE CLASSES
|
|
#include "Vtb___024root.h"
|
|
|
|
// SYMS CLASS (contains all model state)
|
|
class Vtb__Syms final : public VerilatedSyms {
|
|
public:
|
|
// INTERNAL STATE
|
|
Vtb* const __Vm_modelp;
|
|
bool __Vm_didInit = false;
|
|
|
|
// MODULE INSTANCE STATE
|
|
Vtb___024root TOP;
|
|
|
|
// CONSTRUCTORS
|
|
Vtb__Syms(VerilatedContext* contextp, const char* namep, Vtb* modelp);
|
|
~Vtb__Syms();
|
|
|
|
// METHODS
|
|
const char* name() { return TOP.name(); }
|
|
} VL_ATTR_ALIGNED(VL_CACHE_LINE_BYTES);
|
|
|
|
#endif // guard
|