OSDN Git Service

Add Floppy & DMA Driver (imperfect)
[vaneos/vaneosmain.git] / include / Interrupt.h~
1 /*
2 *Interrupt Header
3 *(C) 2014 VOSystems.
4 */
5
6 #ifndef INTERRUPT_H
7 #define INTERRUPT_H
8
9 void Timer_Interrupt_asm(void);
10 void KeyBoard_Interrupt_asm(void);
11 void INTERRUPT_NOTHING(void);
12 void out_virtual86mode_interrupt(void);
13 void in_virtual86mode_interrupt(void);
14
15 void enter_interrupt(void);
16 void interrupt_done(void);
17 void exit_interrupt(void);
18 void keyboard_interrupt(void);
19 void timer_interrupt(void);
20
21 void enable();
22 void disable();
23
24 #endif