用8051的定时器T0定时,用方式1,定时时间5ms,晶振频率为11.0592MHz,以下中断服务程序的功能是( )。void time0( ) interrupt 1{ static chartime;static unsigned char period=200;static unsigned char high=50;TH0=0xee;TL0=0x00;if(++time==high) p1_0=0 ;else if (time==period ){time=0;P1^0=1; }}
A. P1.0输出周期为2s,占空比为25%的脉冲信号
B. P1.0输出周期为1s,占空比为25%的脉冲信号
C. P1.0输出周期为1s,占空比为20%的脉冲信号
D. P1.0输出周期为2s,占空比为50%的脉冲信号