blob: e7f69f1c6266994d14031a42baa3afb968d4c48b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
===============================================================================
Name : main.c
Author :
Version :
Copyright : Copyright (C)
Description : main definition
===============================================================================
*/
void boot_Main(void);
int main(void)
{
#if 1
boot_Main();
#endif
/* If we ever reach this point, then there is something very wrong. */
return -1;
}
|