#includesbit p10=P1^0;sbit p11=P1^1;void t0isr() interrupt 1{TL0=6;p10=!p10;}void t1isr() interrupt 3{TH0=156;p11=!p11;}main(){TMOD=0x03;TH0=156;TL0=6;ET0=1;ET1=1;TR0=1;TR1=1;EA=1;while(1);}