C51编译器中常用的中断函数定义语法如下,其中n是指();m是指()。Void函数名() interrupt nsing m
举一反三
- 中断函数定义的格式为:函数类型 函数名 n using n其中:interrupt 后面的n 是 。
- C51提供的中断函数语法为:返回值类型 函数名 (形参)interrupt n,n对应中断源的编号,若n=4,则对应的中断源为。
- C51中断函数的关键字是() A: using B: interrupt C: delay D: void
- 中断函数不同之处是在定义时后面带interrupt m修饰符。
- 编写一个定时器0中断的中断函数(空函数),下列定义正确的是? A: void aaa0( )interrupt 0 {} B: void int0( )interrupt 1 {} C: void time1( )interrupt 1 {} D: void time1( )interrupt 0 {}