aboutsummaryrefslogtreecommitdiff
path: root/robot/main.c
blob: fbfd38bd7488494372bbf41345db77fea0cea9f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "main.h"
#include "hypervisor.h"
#include "setup.h"

int main() {
	w2_setup_main();

	for (;;) w2_hypervisor_main();

	// satisfy compiler
	return 0;
}