summaryrefslogtreecommitdiff
path: root/tb/top/conspiracion.cpp
blob: d4bdbcba69e0f859eea27bea2e80ffdd61d655b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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();
}