What happens in an interrupt service routine?

前端 未结 4 743
庸人自扰
庸人自扰 2021-01-31 10:17

Can someone please explain to me what happens inside an interrupt service routine (although it depends upon specific routine, a general explanation is enough)? This always used

4条回答
  •  清歌不尽
    2021-01-31 10:39

    While the 8086 is executing a program an interrupt breaks the normal sequence of execution of instruction, divert its execution to some other program called interrupt service Routine (ISR). after executing, control return the back again to the main program.

提交回复
热议问题