Subversion Repositories NaviCtrl

Rev

Rev 1 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 41
1
#ifndef _RAMFUNC_H
1
#ifndef _RAMFUNC_H
2
 #define _RAMFUNC_H
2
#define _RAMFUNC_H
3
 
3
 
4
typedef  void (*pFunction)(void);
4
typedef  void (*pFunction)(void);
5
#define __ramfunc __attribute__ ((long_call, section (".ramfunc")))
5
#define __ramfunc __attribute__ ((long_call, section (".ramfunc")))
6
 
6
 
7
__ramfunc void Execute_Bootloader(void);
7
__ramfunc void Execute_Bootloader(void);
8
#endif
8
#endif
9
 
9