1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-22 13:25:00 +00:00
oot/src/libultra_boot_O2/osPiGetCmdQueue.c
2020-03-22 22:20:03 +01:00

10 lines
155 B
C

#include <global.h>
OSMesgQueue* osPiGetCmdQueue() {
if (!__osPiDevMgr.initialized) {
return NULL;
}
return __osPiDevMgr.cmdQueue;
}