发布网友 发布时间:2022-05-14 03:09
共3个回答
热心网友 时间:2024-02-23 02:50
#include <reg51.h>
#define uchar unsigned char
uchar code table[]={0xff,0xfe,0xfc,0xf8,0xf0,0xe0,0xc0,0x80,0x00};
uchar i;
void main()
{
IT0=1;
EX0=1;
IT1=1;
EX1=1;
EA=1;
while(1)
{
P2=table[i];
}
}
void t0()interrupt 0
{
i++;
if(i==9)
i=0;
}
void t1()interrupt 2
{
i--;
if(i==255)
i=8;
}
热心网友 时间:2024-02-23 02:50
这个不用中断做吧热心网友 时间:2024-02-23 02:51
你是想要源程序还是想要搭个外围电路?