#include "hello.h" #include "verilated.h" import mod; double sc_time_stamp() { return 0; } int main(int argc, char** argv) { VerilatedContext* contextp = new VerilatedContext; contextp->commandArgs(argc, argv); hello* top = new hello{contextp}; mod::say("hello module!"); while (!contextp->gotFinish()) { top->eval(); } delete top; delete contextp; return 0; }