mirror of
https://github.com/verilator/verilator.git
synced 2025-01-07 15:17:36 +00:00
51 lines
1.0 KiB
C++
51 lines
1.0 KiB
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2010 by Wilson Snyder.
|
|
|
|
#include <verilated.h>
|
|
#include "Vt_order_quad.h"
|
|
|
|
//======================================================================
|
|
|
|
unsigned int main_time = 0;
|
|
|
|
double sc_time_stamp() {
|
|
return main_time;
|
|
}
|
|
|
|
VM_PREFIX* topp = NULL;
|
|
bool fail = false;
|
|
|
|
void check(QData got, QData exp) {
|
|
if (got != exp) {
|
|
VL_PRINTF("%%Error: got=0x%" VL_PRI64 "x exp=0x%" VL_PRI64 "x\n", got, exp);
|
|
fail = true;
|
|
}
|
|
}
|
|
|
|
int main(int argc, char *argv[]) {
|
|
topp = new VM_PREFIX;
|
|
|
|
Verilated::debug(0);
|
|
|
|
topp->a0 = 0;
|
|
topp->eval();
|
|
check(topp->y, VL_ULL(0x0));
|
|
|
|
topp->a0 = 15;
|
|
topp->eval();
|
|
check(topp->y, VL_ULL(0x3c00000000));
|
|
|
|
topp->final();
|
|
if (!fail) {
|
|
VL_PRINTF("*-* All Finished *-*\n");
|
|
topp->final();
|
|
} else {
|
|
vl_fatal(__FILE__,__LINE__,"top", "Unexpected results\n");
|
|
}
|
|
return 0;
|
|
}
|