Sends a notification when interrupt has been handled, and the PIC can handle another interrupt.
(&mut self)
| 34 | |
| 35 | // Sends a notification when interrupt has been handled, and the PIC can handle another interrupt. |
| 36 | unsafe fn intrend(&mut self) |
| 37 | { |
| 38 | self.cmd.write(INTREND_CMD); |
| 39 | } |
| 40 | |
| 41 | // Read the interrupt mask for the PIC. |
| 42 | unsafe fn mask_read(&mut self) -> u8 |