1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-13 12:59:59 +00:00
oot/src/libultra_boot_O2/osEPiStartDma.c
2020-03-22 22:20:03 +01:00

23 lines
487 B
C

#include <global.h>
s32 osEPiStartDma(OSPiHandle* handle, OSIoMesg* mb, s32 direction) {
s32 ret;
if (!__osPiDevMgr.initialized) {
return -1;
}
mb->piHandle = handle;
if (direction == OS_READ) {
mb->hdr.type = 0xf;
} else {
mb->hdr.type = 0x10;
}
if (mb->hdr.pri == 1) {
ret = osJamMesg(osPiGetCmdQueue(), (OSMesg)mb, 0);
} else {
ret = osSendMesg(osPiGetCmdQueue(), (OSMesg)mb, 0);
}
return ret;
}