Modestus Moon OS  R4
CS 450 project
interrupts.h
Go to the documentation of this file.
1 #ifndef _INTERRUPTS_H
2 #define _INTERRUPTS_H
3 
4 /*
5  Procedure..: init_irq
6  Description..: Installs the initial interrupt handlers for
7  the first 32 irq lines. Most do a panic for now.
8 */
9 void init_irq(void);
10 
11 /*
12  Procedure..: init_pic
13  Description..: Initializes the programmable interrupt controllers
14  and performs the necessary remapping of IRQs. Leaves interrupts
15  turned off.
16 */
17 void init_pic(void);
18 
19 #endif
void init_irq(void)
Definition: interrupts.c:68
void init_pic(void)
Definition: interrupts.c:109