mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 05:00:12 +00:00
12 lines
228 B
C
12 lines
228 B
C
#ifndef GUARD_MAIN_H
|
|
#define GUARD_MAIN_H
|
|
|
|
typedef void (*IntrCallback)(void);
|
|
|
|
extern IntrCallback gIntrCallbacks[6];
|
|
|
|
void AckInterrupt(u16);
|
|
bool8 EnableInterrupts(void);
|
|
bool8 DisableInterrupts(void);
|
|
|
|
#endif // GUARD_MAIN_H
|