Subversion Repositories Code-Repo

Rev

Rev 272 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
163 Kevin 1
#ifndef INTERRUPTS_H
2
#define INTERRUPTS_H
3
 
4
// Enable all interrupts (high and low priority)
5
void Interrupt_Enable(void);
6
 
7
// Disable all interrupts (high and low priority)
8
void Interrupt_Disable(void);
9
 
10
void interrupt InterruptHandlerHigh(void);
11
 
12
#endif