pub trait AcknowledgePicInterrupt {
    // Required method
    fn acknowledge_interrupt(&mut self) -> Option<u8>;
}
Expand description

A device that can handle an x86 PIC interrupt request.

Required Methods§

source

fn acknowledge_interrupt(&mut self) -> Option<u8>

Gets the current pending IRQ and sets it in service.

Implementors§