summaryrefslogtreecommitdiff
path: root/tb/main.cpp
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-09-17 22:10:39 -0600
committerAlejandro Soto <alejandro@34project.org>2022-09-17 22:10:39 -0600
commitb0cb20496d88cd017c4c51243d16ac3b060cc1d6 (patch)
treeb73bb171b9454501a8a3e101ab9d5f05c6b72945 /tb/main.cpp
parenta9aafdf34ed44f115edf43f29a733eb82f366eb6 (diff)
Update project structure to match Verilator Makefile
Diffstat (limited to 'tb/main.cpp')
-rw-r--r--tb/main.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/tb/main.cpp b/tb/main.cpp
deleted file mode 100644
index d4bdbcb..0000000
--- a/tb/main.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <verilated.h>
-#include <cstdio>
-
-#include "Vconspiracion.h"
-
-int main(int argc, char **argv)
-{
- Verilated::commandArgs(argc, argv); // Remember args
- Verilated::traceEverOn(true);
-
- Vconspiracion top;
- // Do not instead make Vtop as a file-scope static
- // variable, as the "C++ static initialization order fiasco"
- // may cause a crash
-
- top.eval();
-
- top.final();
-}