数据驱动、坚持为客户提供有价值的服务和内容
源代码如下(在课本上摘抄的) # include sbit P10=P1^0; void main(void) { P10=0; EX0=1; EA= 1 ; while(1); } void int()_func(void) interrupt 0 //中断 { P10=~P10; } 源代码就是这样,问题如下 1 主程序