blob: 780da7cb7bff9f08f77569d28269e4809b196d21 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "PR/os_internal.h"
void __osResetGlobalIntMask(OSHWIntr mask) {
register u32 saveMask = __osDisableInt();
__OSGlobalIntMask &= ~(mask & ~OS_IM_RCP);
__osRestoreInt(saveMask);
}
|