Add proper symbol for `nuStackIdle`

This commit is contained in:
gijs 2023-10-21 21:23:37 +02:00
parent a3f0f1a003
commit 1a1dd9503f
3 changed files with 6 additions and 4 deletions

View File

@ -60,7 +60,7 @@ extern "C" {
/*--------------------------------------*/
/* NUSYS STACK SIZE */
/*--------------------------------------*/
#define NU_IDLE_STACK_SIZE 0x2000 /* Idle thread */
//#define NU_IDLE_STACK_SIZE 0x2000 /* Idle thread */
#define NU_RMON_STACK_SIZE 0x2000 /* Rmon thread */
#define NU_MAIN_STACK_SIZE NU_SPEC_BOOT_STACK_SIZE /* Main thread */

View File

@ -27,7 +27,7 @@ nuSiMesgQ = 0x800E9B88;
nuSiMesgBuf = 0x800BBE60;
siMgrThread = 0x800BBE80;
nuThreadIdle = 0x800AF440;
nuStackIdle = 0x800B17A0;
nuStackIdle = 0x800B0010;
nuPiCartHandle = 0x800E7A20;
nuPiMgrMesgQ = 0x800BE030;
nuPiMesgBuf = 0x800BE048;

View File

@ -2,14 +2,16 @@
#include "nu/nusys.h"
#define NU_IDLE_STACK_SIZE 0x1790
extern OSThread nuThreadIdle;
extern u64 nuStackIdle[];
extern u64 nuStackIdle[NU_IDLE_STACK_SIZE / sizeof(u64)];
void nuIdle(void* arg);
void nuBoot(void) {
osInitialize();
osCreateThread(&nuThreadIdle, NU_IDLE_THREAD_ID, nuIdle, NULL, nuStackIdle, NU_MAIN_THREAD_PRI);
osCreateThread(&nuThreadIdle, NU_IDLE_THREAD_ID, nuIdle, NULL, nuStackIdle + NU_IDLE_STACK_SIZE / sizeof(u64), NU_MAIN_THREAD_PRI);
osStartThread(&nuThreadIdle);
}