mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-07-30 15:43:21 -04:00
13 lines
263 B
C
13 lines
263 B
C
#ifndef OS_INTERRUPT_H
|
|
#define OS_INTERRUPT_H
|
|
#include "types.h"
|
|
|
|
|
|
BOOL OSDisableInterrupts(void);
|
|
BOOL OSEnableInterrupts(void);
|
|
BOOL OSRestoreInterrupts(BOOL status);
|
|
|
|
void __RAS_OSDisableInterrupts_begin(void);
|
|
void __RAS_OSDisableInterrupts_end(void);
|
|
|
|
#endif |