aboutsummaryrefslogtreecommitdiff
path: root/core/obj_dir/Vtb__Syms.cpp
diff options
context:
space:
mode:
authorAditya Naik2021-05-08 12:51:18 -0400
committerAditya Naik2021-05-08 12:51:18 -0400
commit1acccc74b1036d9d3847fdcc60c392125a03be85 (patch)
tree609c192f1b3e1b4ab89e1992741d988f4120138c /core/obj_dir/Vtb__Syms.cpp
Initial
Added work on RV64 I core to date, including tb
Diffstat (limited to 'core/obj_dir/Vtb__Syms.cpp')
-rw-r--r--core/obj_dir/Vtb__Syms.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/core/obj_dir/Vtb__Syms.cpp b/core/obj_dir/Vtb__Syms.cpp
new file mode 100644
index 0000000..5f8019a
--- /dev/null
+++ b/core/obj_dir/Vtb__Syms.cpp
@@ -0,0 +1,21 @@
+// Verilated -*- C++ -*-
+// DESCRIPTION: Verilator output: Symbol table implementation internals
+
+#include "Vtb__Syms.h"
+#include "Vtb.h"
+
+
+
+// FUNCTIONS
+Vtb__Syms::Vtb__Syms(Vtb* topp, const char* namep)
+ // Setup locals
+ : __Vm_namep(namep)
+ , __Vm_didInit(false)
+ // Setup submodule names
+{
+ // Pointer to top level
+ TOPp = topp;
+ // Setup each module's pointers to their submodules
+ // Setup each module's pointer back to symbol table (for public functions)
+ TOPp->__Vconfigure(this, true);
+}