process: 0
#include "reg52.h" sbit LED1=P2^0; //将P2.0管脚定义为LED1 void main() { LED1=0; //LED1端口设置为低电平 while(1) { } }