mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-06-03 10:32:19 -04:00
5c23113592
* libultra from sm64 integrated; 3 libultra functions matched * All of libultra done! authored-by: farisawan-2000 <farisawan.2000@gmail.com>
10 lines
215 B
C
10 lines
215 B
C
#include "libultra_internal.h"
|
|
#include "hardware.h"
|
|
#include "new_func.h"
|
|
|
|
void __osSetGlobalIntMask(s32 arg0) {
|
|
register u32 prev = __osDisableInt();
|
|
__OSGlobalIntMask |= arg0;
|
|
__osRestoreInt(prev);
|
|
}
|