forked from github/verilator
25 lines
498 B
C++
25 lines
498 B
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
// any use, without warranty, 2019 by Wilson Snyder.
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
#include "Vt_timescale_parse.h"
|
|
|
|
VM_PREFIX* tb = nullptr;
|
|
|
|
double sc_time_stamp() {
|
|
return 2 * 1e9; // e.g. 2 seconds in ns units
|
|
}
|
|
|
|
int main() {
|
|
tb = new VM_PREFIX{"tb"};
|
|
|
|
tb->eval();
|
|
tb->eval();
|
|
tb->eval();
|
|
|
|
tb->final();
|
|
VL_DO_DANGLING(delete tb, tb);
|
|
}
|