This commit is contained in:
2024-07-14 04:03:23 +03:00
parent d71ea508e1
commit 927028192e
73 changed files with 2984 additions and 63 deletions

View File

@ -0,0 +1,26 @@
// Verilated -*- C++ -*-
// DESCRIPTION: Verilator output: Symbol table implementation internals
#include "VbibpTB__Syms.h"
#include "VbibpTB.h"
#include "VbibpTB___024root.h"
// FUNCTIONS
VbibpTB__Syms::~VbibpTB__Syms()
{
}
VbibpTB__Syms::VbibpTB__Syms(VerilatedContext* contextp, const char* namep, VbibpTB* modelp)
: VerilatedSyms{contextp}
// Setup internal state of the Syms class
, __Vm_modelp{modelp}
// Setup module instances
, TOP{this, namep}
{
// 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);
}