C Interrupts

How are interrupts executed in C? Where are interrupts stored in the memory? What actually occurs when interrupts are encountered?

Questions by brijux   answers by brijux

Showing Answers 1 - 3 of 3 Answers

When ever interrupt will occurs (ex: press keypoard or etc...) while excuting C programming the control stop execution and pushed current data in stack and switch to interrupt handler and then call ISR after excuting return to interrupt handler by using IRET function call. interrupt handler retun to user programming and continue execution from next instructions..

i hope this will be useful better to understanding...

Regards
Kannan R

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions