Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / template / main.c @ 880

History | View | Annotate | Download (120 Bytes)

1 16 bcoltin
#include <dragonfly_lib.h>
2
3 857 bcoltin
int main(void)
4
{
5
        dragonfly_init(ALL_ON);
6 880 bcoltin
        bom_leds_on(BOM_ALL);
7
        while(1){}
8 16 bcoltin
        return 0;
9
}
10 773 kwoo