firmware/interrupt.h
author root@rika
Thu, 23 Apr 2009 19:10:12 +0200
changeset 30 7fd00015f62f
parent 2 2f55e5dd591d
permissions -rw-r--r--
several changes..
     1 /*
     2  * Project Frontplatte
     3  *
     4  * interrupt.h  -  handle interrupts
     5  *
     6  * This file is released under the GNU General Public License. Refer
     7  * to the COPYING file distributed with this package.
     8  *
     9  * (c) 2007 Carsten Presser cpresser AT fsing.uni-sb.de
    10  */
    11 
    12 #ifndef __INTERRUPT_H
    13 #define __INTERRUPT_H
    14 
    15 
    16 /** P R O T O T Y P E S ******************************************************/
    17 void low_isr(void);
    18 void high_isr(void);
    19 
    20 #endif //INTERRUPT_H
    21 
    22 
    23 
    24