I'm writing my own protected mode operating system and need to know how to modify the interrupt table so that certain ones (print string, etc.) are redirected to the command prompt application or other applications. How do I modify the table?
|
|
First of all, using interrupts for system calls is really not the "nice" way to actually implement them anymore. If you're targeting x64, then you should definitely look into But, if you still want to implement syscalls via interrupts, then read on. Of course, you'll probably need to modify the interrupt table either way in order to actually interact with the hardware. In the Protected Mode of x86, interrupts are placed in the IDT, which is short for an Interrupt Descriptor Table. That table can contain either a Task Gate Descriptor, an Interrupt Gate Descriptor, or a Trap Gate Descriptor. The table is indexed in a similar way to the Real Mode Interrupt Vector Table - e.g. the I don't really see the point in simply rephrasing the Intel manual, which explains these issues very clearly, so I suggest you just have a read (though you should have those manuals by now). Interrupt handling is described in chapter 6 of that document. |
|||
|
|
