2016-05-25 18:37:40 +03:00
|
|
|
// Main starting point for host simulator.
|
|
|
|
//
|
2018-07-11 20:46:07 +03:00
|
|
|
// Copyright (C) 2016-2018 Kevin O'Connor <kevin@koconnor.net>
|
2016-05-25 18:37:40 +03:00
|
|
|
//
|
|
|
|
// This file may be distributed under the terms of the GNU GPLv3 license.
|
|
|
|
|
|
|
|
#include "sched.h" // sched_main
|
|
|
|
|
|
|
|
// Main entry point for simulator.
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
sched_main();
|
|
|
|
return 0;
|
|
|
|
}
|