...T0IE ; 判断是否为T0中断 goto other_int btfss INTCON,T0IF ; it ’s the time of T0 int goto other_int bcf INTCON,T0IF ; 是T0中断,清除中断标志 movlw 0x10 ; 微秒的高位字节加上定时时间 256X16分频=4096=0x1000的高位(0x10) addwf us+1 goto end_int other_int ; 可添加其他中断服务代码 nop ; other isr code can be added ;********************************** end_int ; 恢复现...