mirror of
https://github.com/MiSTer-devel/PCFX_MiSTer.git
synced 2026-04-19 03:04:49 +00:00
44 lines
1.4 KiB
C++
44 lines
1.4 KiB
C++
// Verilated -*- C++ -*-
|
|
// DESCRIPTION: main() calling loop, created with Verilator --main
|
|
|
|
#include "verilated.h"
|
|
#include "Vpcfx_top_tb.h"
|
|
|
|
//======================
|
|
|
|
int main(int argc, char** argv, char**) {
|
|
// Setup context, defaults, and parse command line
|
|
Verilated::debug(0);
|
|
const std::unique_ptr<VerilatedContext> contextp{new VerilatedContext};
|
|
contextp->traceEverOn(true);
|
|
contextp->commandArgs(argc, argv);
|
|
|
|
// Construct the Verilated model, from Vtop.h generated from Verilating
|
|
const std::unique_ptr<Vpcfx_top_tb> topp{new Vpcfx_top_tb{contextp.get(), ""}};
|
|
|
|
// Simulate until $finish
|
|
while (VL_LIKELY(!contextp->gotFinish())) {
|
|
// Evaluate model
|
|
topp->eval();
|
|
// Advance time
|
|
if (!topp->eventsPending()) break;
|
|
contextp->time(topp->nextTimeSlot());
|
|
}
|
|
|
|
if (VL_LIKELY(!contextp->gotFinish())) {
|
|
VL_DEBUG_IF(VL_PRINTF("+ Exiting without $finish; no events left\n"););
|
|
}
|
|
|
|
// Execute 'final' processes
|
|
topp->final();
|
|
|
|
// Print statistical summary report
|
|
contextp->statsPrintSummary();
|
|
|
|
return 0;
|
|
}
|
|
|
|
// Local Variables:
|
|
// compile-command: "verilator --cc --exe pcfx_top_tb.cpp --build -j 0 --timing --assert -O3 --x-assign fast --x-initial fast --trace-fst --trace-threads 1 -Wno-TIMESCALEMOD --top-module pcfx_top_tb --relative-includes -F pcfx_top.files pcfx_top_tb.sv"
|
|
// End:
|