mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-07-31 07:56:03 -04:00
13 lines
165 B
C
13 lines
165 B
C
#include <ultra64.h>
|
|
|
|
s32 __osAiDeviceBusy(void)
|
|
{
|
|
register s32 status = IO_READ(AI_STATUS_REG);
|
|
|
|
if (status & AI_STATUS_FIFO_FULL) {
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|