小弟初学51单片机 编写了一段C语言程序 但编译不过 ,不知道是什么问题希望哪位高手指导一下
程序:#include <Stdio.h>
#include <Reg51.h>
void timer() interrupt using 1
{
TH0=0xf0;
TL0=0x0c;
P1^0=! P1^0;
}
main()
{
TH0=0xf0;
TL0=0x0c;
TR0=1;
ET0=1;
EA=1;
while(1);
}
參考答案:#include <Stdio.h>
#include <Reg51.h>
sbit P1_0=P1^0;
void timer() interrupt 1 using 1
{
TH0=0xf0;
TL0=0x0c;
P1_0=!P1_0;
}
main()
{
TH0=0xf0;
TL0=0x0c;
TR0=1;
ET0=1;
EA=1;
while(1);
}