pub type IrqHandler = fn(IrqNumber);Expand description
Type alias for IRQ handler functions.
An IRQ handler is a function that takes the IRQ number that triggered the
interrupt. Handlers are registered via register_handler and invoked
by dispatch when the corresponding interrupt fires.