Questions tagged [interrupt-handling]

The concept of handling system interrupts in an application or embedded system.

The concept of handling system interrupts in an application.

This tag may also refer to an operating-system-specific way of handling interrupts, or interrupt handling in a specific type of microcontroller or processor.

Use this tag only if you have reason to believe that your issue is directly related to interrupt handling. Do not use this tag if your application is using interrupt handling, but interrupt handling does not cause the issue your are asking about.

828 questions
-3
votes
1 answer

Change IVT of 8086 / 88

as you know when interrupt happened ,8086 get code type of interrupt and multiple it in 4,then Check it in IVT. know I wanna change IVT in 8086,I'm using emu8086. What should I do for it?
Moein Hosseini
  • 4,309
  • 15
  • 68
  • 106
-3
votes
1 answer

ATmega2560 using UART interrupt to control global flag

I recently met a problem when I was playing with an ATmega2560, and I really don't understand what's wrong with it. Here is my code. main: #include "Definitions.h" int main(void) { Initialization(); while (1) { //_delay_ms(1); // or…
Bryant.C
  • 11
  • 2
-4
votes
1 answer

How to perform a calculation that triggers interrupt 0 without using the "int" command.?

I´m trying to solve this but I don't know how to start. If someone could give advice how to think about this task it would be great. hello db "Hello!",0 hello_len equ $-hello section .text start: ; EXERCISE: ; TASK: register isr0 for interrupt…
neo
  • 1
  • 1
1 2 3
55
56