1#include "libultra_internal.h" 2#include "hardware.h" 3#include "new_func.h" 4 5void __osSetGlobalIntMask(s32 arg0) { 6 register u32 prev = __osDisableInt(); 7 __OSGlobalIntMask |= arg0; 8 __osRestoreInt(prev); 9} 10 11