Files
Diddy-Kong-Racing/lib/src/osPiGetCmdQueue.c
T
2020-08-04 16:17:46 -05:00

13 lines
292 B
C

/* The comment below is needed for this file to be picked up by generate_ld */
/* RAM_POS: 0x800D37F0 */
#include "libultra_internal.h"
extern OSDevMgr __osPiDevMgr;
OSMesgQueue *osPiGetCmdQueue(void)
{
if (!__osPiDevMgr.active)
return NULL;
return __osPiDevMgr.cmdQueue;
}