summaryrefslogtreecommitdiff
path: root/src/libultra_boot_O2/osPiGetCmdQueue.c
blob: 1f097a926921e5e2e8f1a26e23cd01c4a256e70d (plain)
1
2
3
4
5
6
7
8
9
#include <global.h>

OSMesgQueue* osPiGetCmdQueue() {
    if (!__osPiDevMgr.initialized) {
        return NULL;
    }

    return __osPiDevMgr.cmdQueue;
}