16 lines
308 B
C
16 lines
308 B
C
// Main starting point for host simulator.
|
|
//
|
|
// Copyright (C) 2016-2018 Kevin O'Connor <kevin@koconnor.net>
|
|
//
|
|
// 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;
|
|
}
|