pic14regs.h

来自「picc」· C头文件 代码 · 共 23 行

H
23
字号
#ifndef __DEVICE_INCLUDE_PIC14REGS_H__
#define __DEVICE_INCLUDE_PIC14REGS_H__ 1

#if defined(SDCC_PROCESSOR)
  #ifndef _CONCAT
  #undef  _CONCAT2
  #define _CONCAT(a,b)	_CONCAT2(a,b)
  #define _CONCAT2(a,b)	a ## b
  #endif

  /* May not paste proc ## .h as pic16f877.h is no valid
   * preprocessor token. So this is a bit fragile... */
  #define INC_PIC(proc)	<_CONCAT(pic,proc).h>

  #include INC_PIC(SDCC_PROCESSOR)
#else
  /* SDCC_PROCESSOR undefined */
  #warning SDCC_PROCESSOR undefined, no processor-specific header included.
#endif

#endif /* __DEVICE_INCLUDE_PIC14REGS_H__ */

⌨️ 快捷键说明

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