2013-05-19 02:17:17 +02:00
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
|
|
|
// without warranty.
|
2020-03-21 16:24:24 +01:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2013-05-19 02:17:17 +02:00
|
|
|
|
2017-10-25 01:58:52 +02:00
|
|
|
#include VM_PREFIX_INCLUDE
|
2013-05-19 02:17:17 +02:00
|
|
|
|
|
|
|
|
VM_PREFIX* tb = NULL;
|
|
|
|
|
bool pass = true;
|
|
|
|
|
|
2019-11-10 02:35:12 +01:00
|
|
|
double sc_time_stamp() { return 0; }
|
2013-05-19 02:17:17 +02:00
|
|
|
|
2018-06-21 01:01:19 +02:00
|
|
|
#ifdef SYSTEMC_VERSION
|
|
|
|
|
int sc_main(int, char**)
|
|
|
|
|
#else
|
|
|
|
|
int main()
|
|
|
|
|
#endif
|
|
|
|
|
{
|
2013-05-19 02:17:17 +02:00
|
|
|
Verilated::debug(0);
|
2018-08-25 15:52:45 +02:00
|
|
|
tb = new VM_PREFIX("tb");
|
2013-05-19 02:17:17 +02:00
|
|
|
|
|
|
|
|
// Just a constructor test
|
2020-01-09 01:33:47 +01:00
|
|
|
VL_PRINTF("*-* All Finished *-*\n");
|
2013-05-19 02:17:17 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|