Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/lib/src/__osResetGlobalIntMask.c
7857 views
1
#include "libultra_internal.h"
2
#include "new_func.h"
3
4
void __osResetGlobalIntMask(u32 mask) {
5
register u32 prev;
6
prev = __osDisableInt();
7
__OSGlobalIntMask &= ~(-0x402 & mask);
8
__osRestoreInt(prev);
9
}
10
11