📄 linkage.h
字号:
/*****************************************************************************//* linkage.h v6.0.3 *//* Copyright (c) 1998-2006 Texas Instruments Incorporated *//*****************************************************************************/#ifndef _LINKAGE#define _LINKAGE/*--------------------------------------------------------------------------*//* Define _CODE_ACCESS ==> how to call RTS functions *//*--------------------------------------------------------------------------*/#ifndef _FAR_RTS#define _CODE_ACCESS#elif _FAR_RTS == 0#define _CODE_ACCESS near#else#define _CODE_ACCESS far#endif/*--------------------------------------------------------------------------*//* Define _DATA_ACCESS ==> how to access RTS global or static data *//*--------------------------------------------------------------------------*/#define _DATA_ACCESS far/*--------------------------------------------------------------------------*//* Define _IDECL ==> how inline functions are declared *//*--------------------------------------------------------------------------*/#ifdef _INLINE#define _IDECL static __inline#define _IDEFN static __inline#else#ifdef __cplusplus#define _IDECL extern "C" _CODE_ACCESS#else#define _IDECL extern _CODE_ACCESS#endif#define _IDEFN _CODE_ACCESS#endif#endif /* ifndef _LINKAGE */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -