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