00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00020 #ifndef __TARGET_H__
00021 #define __TARGET_H__
00022
00023
00024 #ifdef __cplusplus
00025 extern "C" {
00026 #endif
00027
00028
00029
00030
00034 #define Fosc 12000000
00035
00040 #define Fcclk (Fosc*5)
00041
00046 #define Fcco (Fcclk*4)
00047
00055 #define Fpclk ((Fcclk/4)*4)
00056
00060 #define TARGET_END_OF_RAM 0x40007fff
00061
00065 void target_init(void);
00066
00067
00068 #ifdef __cplusplus
00069 }
00070 #endif
00071
00072
00073 #endif // __TARGET_H