aboutsummaryrefslogtreecommitdiffstats
path: root/test/ardmake/hardware/cores/arduino/main.cpp
blob: cc6e81d906c85233998836bc5dbc383e507309db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <WProgram.h>

int main(void)
{
	init();

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