aboutsummaryrefslogtreecommitdiff
path: root/robot/main.c
blob: 2f15e9710cf05068e2ca8934503d8f5ac539d2b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "main.h"
#include "hypervisor.h"
#include "setup.h"
#ifdef W2_SIM
#include "sim.h"
#endif

int main() {
#ifdef W2_SIM
	w2_sim_setup();
#endif

	w2_setup_main();

	for (;;) w2_hypervisor_main();

	// satisfy compiler
	return 0;
}