本帖最后由 木鱼21 于 2014-10-4 18:33 编辑
有人在吗?谁能帮我看看这2个中断程序,及其作用。
void init0()
{
EX0=1;
IT0=1;
EA=1;
P1=0xf0;
}
void int0_time() interrupt 0
{
uchar temp;
temp=kayscan();
if(temp!=0x7f)
{
key=temp;
}
P1=0xf0;
}
void time0()
{
TMOD=0x01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
EA=1;
ET0=1;
TR0=1;
PT0=1;
PX0=0;
}
void time0_interrupt() interrupt 1
{
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
,,,, |