summaryrefslogtreecommitdiff
path: root/src/os/__osSetGlobalIntMask.c
blob: c800bb334b50513a6e0454cbab01cf46ad2e3ad7 (plain)
1
2
3
4
5
6
7
8
9
#include "libultra_internal.h"
#include "hardware.h"
#include "new_func.h"

void __osSetGlobalIntMask(s32 arg0) {
    register u32 prev = __osDisableInt();
    __OSGlobalIntMask |= arg0;
    __osRestoreInt(prev);
}