Imported Upstream version 2.9.0
[debian/cc1111] / device / examples / startupcode / src / startup_code.c
1 // INCLUDES & DEFINES ===============================================
2
3 #define __FILE_STARTUP_CODE_C
4 // All that has to be included and / or defined is done here
5
6 #include "../inc/startup_code.h"
7
8 // END INCLUDES & DEFINES ===========================================
9
10 void main()
11 {
12     // Init Hardware muss als erstes erfolgen
13     InitHardware();
14
15     printf( "\n\rSoftware vom : ");
16     printf( __DATE__ );
17     printf(" ");
18     printf( __TIME__ );
19
20     while( 1 );
21 }