• 2022-06-01
    外中断0的中断函数中,n 是多少 ? void int0f(void) interrupt n using 1
  • 0

    内容

    • 0

      编写一个定时器0中断的中断函数(空函数),下列定义正确的是? A: void aaa0( )interrupt 0 {} B: void int0( )interrupt 1 {} C: void time1( )interrupt 1 {} D: void time1( )interrupt 0 {}

    • 1

      下列 中断函数的声明,在编译时不会发生错误? A: void intsub() interrupt 50 using 2; B: int intsub() interrupt 0 using 4 C: void intsub (uchar a) interrupt 30 using 1; D: void intsub () interrupt 15 using 3

    • 2

      ‌要编写外部中断0的中断服务程序,按如下编写: void int ____() interrupt n 其中n应为____。

    • 3

      外部中断0的中断服务程序格式为( )。 A: void Int0Service(void) interrupt 0 { //函数体语句 } B: void Int0Service(void) interrupt 1 { //函数体语句 } C: void Int0Service(void) interrupt 2 { //函数体语句 } D: void Int0Service(void) interrupt 3 { //函数体语句 }

    • 4

      定义的函数void Function(void) interrupt 0 using 2{...}是由 中断触发时调用