blob: dfc640d2ff49c75013eb3e2f5d455addf0758a7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <libultraship.h>
#include <macros.h>
#include <segments.h>
#define MEMORY_POOL_SIZE 0xAB630
/**
* Memory pool variable prevents code segments flowing into the memory pool
* for easier portability.
* @warning should not really be used.
*/
u8 sMemoryPool[MEMORY_POOL_SIZE];
|