Subversion Repositories Code-Repo

Compare Revisions

Ignore whitespace Rev 332 → Rev 333

/PIC Stuff/PICX_12F1840_Pulse_Generator/INTERRUPTS.h
0,0 → 1,12
#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