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