2016-08-14 02:21:46 +02:00
|
|
|
//! # IRQ handling
|
2016-08-14 18:10:28 +02:00
|
|
|
//!
|
2016-08-14 02:21:46 +02:00
|
|
|
//! This module defines IRQ handling functions. These functions should all be #[naked],
|
|
|
|
//! unsafe, extern, and end in `iretq`
|
|
|
|
|
2016-08-14 18:10:28 +02:00
|
|
|
/// Interupt Request handler.
|
2016-08-14 02:21:46 +02:00
|
|
|
#[naked]
|
|
|
|
pub unsafe extern fn irq() {
|
|
|
|
|
|
|
|
}
|