📄 cpu.h
字号:
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
target cpu
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
#define CPU_51 0
#if(CPU_51) ///////////////////
#include <reg51.h>
#define STACK_POINTER 0x60
#else
#include <reg52.h>
#define STACK_POINTER 0xd0
#endif
#define uchar unsigned char
#define uint unsigned int
#define ulong unsigned long
#include <intrins.h>
#define DisableInterrupt() EA=0
#define EnableInterrupt() EA=1
#define NOP() _nop_()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -