19 lines
186 B
C++
19 lines
186 B
C++
|
/*
|
||
|
* router_example.cpp
|
||
|
*
|
||
|
* Created on: 02.12.2018
|
||
|
* Author: eyck
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "top.h"
|
||
|
|
||
|
int sc_main(int argc, char* argv[])
|
||
|
{
|
||
|
Top top("top");
|
||
|
sc_start();
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|