29 lines
875 B
C++
29 lines
875 B
C++
// Verilated -*- C++ -*-
|
|
// DESCRIPTION: Verilator output: Symbol table implementation internals
|
|
|
|
#include "Vtop__pch.h"
|
|
#include "Vtop.h"
|
|
#include "Vtop___024root.h"
|
|
|
|
// FUNCTIONS
|
|
Vtop__Syms::~Vtop__Syms()
|
|
{
|
|
}
|
|
|
|
Vtop__Syms::Vtop__Syms(VerilatedContext* contextp, const char* namep, Vtop* modelp)
|
|
: VerilatedSyms{contextp}
|
|
// Setup internal state of the Syms class
|
|
, __Vm_modelp{modelp}
|
|
, __Vm_threadPoolp{static_cast<VlThreadPool*>(contextp->threadPoolp())}
|
|
// Setup module instances
|
|
, TOP{this, namep}
|
|
{
|
|
// Check resources
|
|
Verilated::stackCheck(41);
|
|
// Configure time unit / time precision
|
|
_vm_contextp__->timeunit(-12);
|
|
_vm_contextp__->timeprecision(-12);
|
|
// Setup each module's pointers to their submodules
|
|
// Setup each module's pointer back to symbol table (for public functions)
|
|
TOP.__Vconfigure(true);
|
|
}
|