features.h

来自「sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu」· C头文件 代码 · 共 47 行

H
47
字号
/** DS390/DS400 specific features. */#ifndef __SDC51_ASM_DS390_FEATURES_H#define __SDC51_ASM_DS390_FEATURES_H   1#define _REENTRANT	reentrant#define _CODE		code/* define _AUTOMEM to indicate the default storage class for   automatic variables. To be used with pointers to automatic variables.   Cannot be used in reentrant declared functions!   void foo(void)   {     char Ar[10];     char _AUTOMEM * pAr = Ar;   }*/#if defined(SDCC_STACK_AUTO)  #if defined(SDCC_USE_XSTACK)    #define _AUTOMEM pdata  #else    #define _AUTOMEM idata  #endif#elif defined(SDCC_MODEL_SMALL)  #define _AUTOMEM data#else  #define _AUTOMEM xdata#endif/* define _STATMEM to indicate the default storage class for   global/static variables. To be used with pointers to static variables.   char Ar[10];   void foo(void)   {     char _STATMEM * pAr = Ar;   }*/#if defined(SDCC_MODEL_SMALL)  #define _STATMEM data#else  #define _STATMEM xdata#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?