1
Fork 0
sm64/lib/src/__osResetGlobalIntMask.c

10 lines
217 B
C
Raw Normal View History

2020-12-03 14:26:38 -05:00
#include "libultra_internal.h"
#include "new_func.h"
void __osResetGlobalIntMask(u32 mask) {
register u32 prev;
prev = __osDisableInt();
__OSGlobalIntMask &= ~(-0x402 & mask);
__osRestoreInt(prev);
}