modes of operation

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
elias

modes of operation

Post by elias »

is linux protected mdoe or v86 mode? wat are teh benefits of v86 mode if interrupts are disabled? i know the kbd needs an interrupt, as does the clock, but if there disabled in pmode, why use it at all?
Slasher

Re:modes of operation

Post by Slasher »

Hi,
you have it all wrong! interrupts are always present. it how hardware report their state to the cpu and also a way of calling system code!
what differs is the way they are handled, in real mode the interrupt vector table (IVT) holds a pointer in the form segment:offset to the interrupt service routine while in protected mode the interrupts are handle by the Interrupt Descriptor Table. the IVT has a fixed address while the IDT can be setup in any address. read the intel manuals. :)
elias

Re:modes of operation

Post by elias »

thanx. im currently reading the intel manuels, but this one question has jsut been bugging me for so long, and am too impatient to search for an answer in the docs. im still gonna read them, but thanx for answering it
Post Reply