changing circuitry to disable RTC, update initialization to match
[fw/openalt] / fiq / fiq.h
1 #ifndef _FIQ_H_
2 #define _FIQ_H_
3
4 void fiqInit (void);
5 int fiqEnable (void);
6 int fiqDisable (void);
7 unsigned int fiqGetCount (void);
8 void fiqClearCount (void);
9 void fiqISR (void);
10
11 #endif