OOStuBS - Technische Informatik II (TI-II)  2.4
interruptmanager.cc
gehe zur Dokumentation dieser Datei
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
2  * Technische Informatik II *
3  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
4  * *
5  * I N T E R R U P T _ M A N A G E R *
6  * *
7 \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
8 
9 /* * * * * * * * * * * * * * * * * * * * * * * * *\
10 # INCLUDES #
11 \* * * * * * * * * * * * * * * * * * * * * * * * */
13 #include <object/imanager.h>
14 
15 void InterruptManager::assign(int iNum, InterruptHandler& handler){
16  InterruptStorage::assign(iNum, handler);
17  allow((PIC::Interrupts)iNum);
18 }