aboutsummaryrefslogtreecommitdiffstats
path: root/test/ardmake/hardware/cores/arduino/main.cxx
blob: 52351e4c98bbd269941ff94b40509b51f48dc2ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int main(void)
{
	init();

	setup();
    
	for (;;)
		loop();
        
	return 0;
}