1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2013 by Ted Campbell.
// SPDX-License-Identifier: CC0-1.0
#include "verilated.h"
#include "verilated_vcd_c.h"
#include VM_PREFIX_INCLUDE
double sc_time_stamp() { return 0; }
Vt_order_multidriven* vcore;
VerilatedVcdC* vcd;
uint64_t vtime;
#define PHASE_90
static void half_cycle(int clk) {
if (clk & 1) vcore->i_clk_wr = !vcore->i_clk_wr;
if (clk & 2) vcore->i_clk_rd = !vcore->i_clk_rd;
vtime += 10 / 2;
vcore->eval();
vcore->eval();
vcd->dump(vtime);
}
static void cycle() {
#ifdef PHASE_90
half_cycle(1);
half_cycle(2);
half_cycle(1);
half_cycle(2);
#else
half_cycle(3);
half_cycle(3);
#endif
}
int main() {
const std::unique_ptr<VerilatedContext> contextp{new VerilatedContext};
contextp->traceEverOn(true);
vcore = new VM_PREFIX{contextp.get()};
vcd = new VerilatedVcdC;
vcore->trace(vcd, 99);
vcd->open(VL_STRINGIFY(TEST_OBJ_DIR) "/simx.vcd");
vcore->i_clk_wr = 0;
vcore->i_clk_rd = 0;
for (int i = 0; i < 256; ++i) { //
cycle();
}
vcd->close();
vcore->final();
VL_DO_DANGLING(delete vcore, vcore);
printf("*-* All Finished *-*\n");
}
|