◄Summary► ◄Detail► ◄Key to Flags► ────────────────────────────────────────────────────────────────────────────── Interrupt Flags: O D I T S Z A P C ═════════════════ 0 0 Syntax: INT number Generates a software interrupt. An 8-bit constant operand (0 to 255) specifies the interrupt procedure to be called. The call is made by indexing the interrupt number into the Interrupt Descriptor Table (IDT) starting at segment 0, offset 0. The IDT contains 4-byte pointers to interrupt procedures. When an interrupt is called, the flags CS and IP are pushed onto the stack (in that order) and the trap and interrupt flags are cleared. STI can be used to restore interrupts. To return from an interrupt, use the IRET instruction. -♦-