MyOS Kernel
|
#include <stdint.h>
Go to the source code of this file.
Data Structures | |
struct | registers_t |
Typedefs | |
typedef void(* | isr_t) (registers_t *) |
Type of an ISR handler function pointer. | |
Functions | |
void | isr_install () |
void | isr_register_handler (int n, isr_t handler) |
void isr_install | ( | ) |
Install the interrupt handlers into the IDT.
void isr_register_handler | ( | int | n, |
isr_t | handler | ||
) |
Register an IRQ handler
n | the IRQ to register a handler for |
handler | the handler to register |