#ifndef C_CPP_INTELLISENSE_HELPER_H #define C_CPP_INTELLISENSE_HELPER_H #ifdef __INTELLISENSE__ /* Tips to make IntelliSense work with code written for Renesas CC-RL compiler */ /* 4.2.2 Macro http://tool-support.renesas.com/autoupdate/support/onlinehelp/csp/V8.06.00/CS+.chm/Compiler-CCRL.chm/Output/ccrl04c0202y.html http://tool-support.renesas.com/autoupdate/support/onlinehelp/ja-JP/csp/V8.06.00/CS+.chm/Compiler-CCRL.chm/Output/ccrl04c0202y.html */ #define __CCRL__ 1 /* 4.2.1 Reserved words http://tool-support.renesas.com/autoupdate/support/onlinehelp/csp/V8.06.00/CS+.chm/Compiler-CCRL.chm/Output/ccrl04c0201y.html http://tool-support.renesas.com/autoupdate/support/onlinehelp/ja-JP/csp/V8.06.00/CS+.chm/Compiler-CCRL.chm/Output/ccrl04c0201y.html */ #define __saddr #define __callt #define __near #define __far #define __sectop( secname ) ( ( void * ) 0U ) #define __secend( secname ) ( ( void * ) 0U ) /* 4.2.4 #pragma directive http://tool-support.renesas.com/autoupdate/support/onlinehelp/csp/V8.06.00/CS+.chm/Compiler-CCRL.chm/Output/ccrl04c0204y.html http://tool-support.renesas.com/autoupdate/support/onlinehelp/ja-JP/csp/V8.06.00/CS+.chm/Compiler-CCRL.chm/Output/ccrl04c0204y.html */ #pragma diag_suppress 661 /* 4.2.7 Intrinsic functions http://tool-support.renesas.com/autoupdate/support/onlinehelp/csp/V8.06.00/CS+.chm/Compiler-CCRL.chm/Output/ccrl04c0207y.html http://tool-support.renesas.com/autoupdate/support/onlinehelp/ja-JP/csp/V8.06.00/CS+.chm/Compiler-CCRL.chm/Output/ccrl04c0207y.html */ #include "builtin.h" #endif /* __INTELLISENSE__ */ #endif /* C_CPP_INTELLISENSE_HELPER_H */