pokestadium/include/variables.h
2023-09-01 14:16:26 -04:00

17 lines
371 B
C

#ifndef _VARIABLES_H_
#define _VARIABLES_H_
#include "ultra64.h"
#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