Can an interrupt be processed by software without the need for hardware suppport? Assume an x86 architecture.
Tell me more
×
Unix & Linux Stack Exchange is a question and answer site for
users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.
closed as off topic by Gilles, Stéphane Gimenez, Renan, Ulrich Dangel, jw013 Aug 31 '12 at 20:15
Questions on Unix & Linux Stack Exchange are expected to relate to Unix or Linux within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
I think you are mixing what you are trying to ask. There are hardware interrupts generated by events on various devices. But you can definitely look at the question here: http://stackoverflow.com/questions/1245809/what-is-int-21h About DOS Interrupt 21h which was used to handle certain Software Only functions like program exit. |
|||
|
|
int 0x80that used to invoke a system call in Linux is a case in point), also doing several stupid things wins you an interrupt (1 / 0,sqrt(-1.0)are examples). – vonbrand Feb 10 at 1:54