闪烁一个LED小灯
#include"reg51.h"
sbit LED1 = P2^0; //定义P2^0的管脚为LED1
void main()
{
while(1)
{
LED1 = 0;
Delay(1000);
LED1 = 1;
Delay(1000);
}
}
void Delay(unsigned int a)
{
unsigned char b:
for(; a>0;a--)
{
for(b=110;b>0;b--);
}
}