Rename prj to insert it into nightly test.
[bertos.git] / boards / sam3n-ek / benchmark / sam3n-ek_kernel_footprint / main.c
1 // Emtpy main.c file generated by the wizard
2 #include <cpu/irq.h>
3
4 static void init(void)
5 {
6         IRQ_ENABLE;
7         // insert initialization calls here
8 }
9
10 int main(void)
11 {
12         init();
13         while (1)
14         {
15                 // your code goes here
16         }
17
18         return 0;
19 }
20