其他版本的都已经好多年不更新了....
为啥不用XC8编译器呢? 都主推X IDE+XCx编译器这么久了,不要太怀旧了嘛.
// Register: SSP1CON1
#define SSP1CON1 SSP1CON1
extern volatile unsigned char SSP1CON1 __at(0x215);
#ifndef _LIB_BUILD
asm("SSP1CON1 equ 0215h");
#endif
// aliases
extern volatile unsigned char SSPCON __at(0x215);
#ifndef _LIB_BUILD
asm("SSPCON equ 0215h");
#endif
extern volatile unsigned char SSPCON1 __at(0x215);
#ifndef _LIB_BUILD
asm("SSPCON1 equ 0215h");
#endif
|