![]() |
|
How many interrupts are possible? - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Assembly (https://sinister.li/Forum-Assembly) +--- Thread: How many interrupts are possible? (/Thread-How-many-interrupts-are-possible) |
How many interrupts are possible? - Alan Turing - 05-11-2014 Can I put an interrupt into an interrupt? And how many interrupts can I use? RE: How many interrupts are possible? - w00t - 05-11-2014 Yes, an interrupt can call other interrupts, though it is generally bad form. The maximum number of traditional interrupts you can have is 255. On some systems, there will be an interrupt where the first parameter is an integer that refers to what function is to be ran. RE: How many interrupts are possible? - Alan Turing - 05-11-2014 (05-11-2014, 02:59 PM)w00t Wrote: Yes, an interrupt can call other interrupts, though it is generally bad form. Ok, thanks for the response |