mirror of
https://github.com/pret/pokestadium.git
synced 2026-03-22 01:34:25 -05:00
25 lines
515 B
C
25 lines
515 B
C
#ifndef _VARIABLES_H_
|
|
#define _VARIABLES_H_
|
|
|
|
#include "ultra64.h"
|
|
|
|
// thread pris
|
|
#define THREAD_PRI_IDLE_INIT 100
|
|
#define THREAD_PRI_RESET 30
|
|
|
|
// thread IDs
|
|
#define THREAD_ID_IDLE 1
|
|
#define THREAD_ID_RESET 21
|
|
|
|
#define POOL_END_4MB 0x80400000
|
|
#define POOL_END_6MB 0x80600000
|
|
|
|
/*
|
|
* Dynamic heap with an indetermate amount of space. This pool can either end at 4MB or
|
|
* 6MB depending on osMemSize, which is really strange as it should be using the whole
|
|
* 8MB of the expansion pak.
|
|
*/
|
|
extern u8 gPool[1];
|
|
|
|
#endif
|