请大神们看看这个简单的程序,跪求能详细解释一下。

2019-07-16 03:41发布

程序如下,要在数码管上显示0-999.位选锁存器是74hc138。

#include<reg52.h>
#define uchar unsigned char
#define uint  unsigned int
uchar a,bai,shi,ge;
uint  temp;
uchar code table[]={
0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6f};
void init();
void display(uchar bai,uchar shi,uchar ge);
void delay(uchar z);
void main()
{
init();
  while(1)
    {
if(a==20)
{
  a=0;
  temp++;
  if(temp==1000)
  {
    temp=0;
  }
}
bai=temp/100;
shi=temp%100/10;
ge=temp%10;
     display(bai,shi,ge);
    }
}
void init()
{
TMOD=0x01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
EA=1;
ET0=1;
TR0=1;
}
void timer0() interrupt 1
{
TH0=(65535-50000)/256;
TL0=(65535-50000)%256;
a++;
}
void display(uchar bai,uchar shi,uchar ge)
{
P0=table[bai];
P2=0;
delay(1);

P0=table[shi];
P2=1;
delay(1);

P0=table[ge];
P2=2;
delay(1);
}
void delay(uchar z)
{
uchar i,j;
for(i=z;i>0;i--)
  for(j=110;j>0;j--);
}
能解释下a在这里的作用吗?还有那个延时函数在这里有什么用?不加上它行吗?
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。