Subversion Repositories Code-Repo

Rev

Rev 333 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef INTERRUPTS_H
#define INTERRUPTS_H

// Enable all interrupts (high and low priority)
void Interrupt_Enable(void);

// Disable all interrupts (high and low priority)
void Interrupt_Disable(void);

void interrupt InterruptHandler(void);

#endif