Rename `OSMESG_800BE048` to `nuPiMesgBuf`
This commit is contained in:
parent
1243f13789
commit
b136e35f4a
|
|
@ -133,7 +133,6 @@ extern s32 D_A9EF0;
|
||||||
extern s32 D_800C4B30;
|
extern s32 D_800C4B30;
|
||||||
|
|
||||||
extern OSPiHandle* CART_HANDLE;
|
extern OSPiHandle* CART_HANDLE;
|
||||||
extern OSMesg OSMESG_800BE048[0x32];
|
|
||||||
|
|
||||||
extern OSMesgQueue MQ_800E7988;
|
extern OSMesgQueue MQ_800E7988;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -729,6 +729,7 @@ extern NUCallBackList* nuSiCallBackList;/* Callback function list */
|
||||||
/* pi variables */
|
/* pi variables */
|
||||||
/*--------------------------------------*/
|
/*--------------------------------------*/
|
||||||
extern OSMesgQueue nuPiMgrMesgQ; /* PI Manager queue */
|
extern OSMesgQueue nuPiMgrMesgQ; /* PI Manager queue */
|
||||||
|
extern OSMesg nuPiMesgBuf[NU_PI_MESG_NUM];
|
||||||
extern OSPiHandle* nuPiCartHandle;
|
extern OSPiHandle* nuPiCartHandle;
|
||||||
extern OSPiHandle* nuPiSramHandle;
|
extern OSPiHandle* nuPiSramHandle;
|
||||||
extern OSPiHandle* nuPiDDRomHandle;
|
extern OSPiHandle* nuPiDDRomHandle;
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@ nuThreadIdle = 0x800AF440;
|
||||||
nuStackIdle = 0x800B17A0;
|
nuStackIdle = 0x800B17A0;
|
||||||
nuPiCartHandle = 0x800E7A20;
|
nuPiCartHandle = 0x800E7A20;
|
||||||
nuPiMgrMesgQ = 0x800BE030;
|
nuPiMgrMesgQ = 0x800BE030;
|
||||||
|
nuPiMesgBuf = 0x800BE048;
|
||||||
|
|
||||||
nuBoot = 0x8007F880;
|
nuBoot = 0x8007F880;
|
||||||
nuScCreateScheduler = 0x80088C50; // rom:0x19050
|
nuScCreateScheduler = 0x80088C50; // rom:0x19050
|
||||||
|
|
@ -923,7 +924,6 @@ OSMESG_800BE194 = 0x800BE194;
|
||||||
OSMESG_800B1870 = 0x800B1870;
|
OSMESG_800B1870 = 0x800B1870;
|
||||||
OSMESG_800B17D0 = 0x800B17D0;
|
OSMESG_800B17D0 = 0x800B17D0;
|
||||||
OSMESG_800B17E0 = 0x800B17E0;
|
OSMESG_800B17E0 = 0x800B17E0;
|
||||||
OSMESG_800BE048 = 0x800BE048;
|
|
||||||
OSMESG_800B9C58 = 0x800B9C58;
|
OSMESG_800B9C58 = 0x800B9C58;
|
||||||
OSMESG_800B9C80 = 0x800B9C80;
|
OSMESG_800B9C80 = 0x800B9C80;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ void nuSiMgrRestart(void) {
|
||||||
INCLUDE_ASM(const s32, "_ob_icy_coast", nuSiMgrThread);
|
INCLUDE_ASM(const s32, "_ob_icy_coast", nuSiMgrThread);
|
||||||
|
|
||||||
void nuPiInit(void) {
|
void nuPiInit(void) {
|
||||||
osCreatePiManager(OS_PRIORITY_PIMGR, &nuPiMgrMesgQ, OSMESG_800BE048, sizeof(OSMESG_800BE048) / sizeof(OSMesg));
|
osCreatePiManager(OS_PRIORITY_PIMGR, &nuPiMgrMesgQ, nuPiMesgBuf, NU_PI_MESG_NUM);
|
||||||
nuPiCartHandle = osCartRomInit();
|
nuPiCartHandle = osCartRomInit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue