firmware/interrupt.h
author cpresser@fsing.uni-sb.de
Wed, 25 Mar 2009 17:48:05 +0100
changeset 28 6f5b9a001194
parent 2 2f55e5dd591d
permissions -rw-r--r--
added some missing values to the schematic
     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