blob: e6b0de27d998eef50f8b057eedd0d7e6bb6c2be6 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "libultra_internal.h"
#include "new_func.h"
void __osResetGlobalIntMask(u32 mask) {
register u32 prev;
prev = __osDisableInt();
__OSGlobalIntMask &= ~(-0x402 & mask);
__osRestoreInt(prev);
}
|