mirror of
https://github.com/zeldaret/oot
synced 2026-06-02 02:00:24 -04:00
10 lines
185 B
C
10 lines
185 B
C
#include <global.h>
|
|
#include <ultra64/hardware.h>
|
|
|
|
s32 __osSiRawWriteIo(void *a0, u32 a1)
|
|
{
|
|
if (__osSiDeviceBusy())
|
|
return -1;
|
|
HW_REG((u32)a0, u32) = a1;
|
|
return 0;
|
|
} |