RetroArch/ctr/ctr_config.c
aliaspider aeeb2a62d6 (3DS) - add an audio driver using the DSP.
- add some hooks to inspect memory usage.
2015-10-27 01:06:34 +01:00

19 lines
401 B
C

#ifndef CTR_STACK_SIZE
#define CTR_STACK_SIZE 0x100000
#endif
#ifndef CTR_LINEAR_HEAP_SIZE
#define CTR_LINEAR_HEAP_SIZE 0x600000
#endif
#ifndef CTR_MAX_HEAP_SIZE
#define CTR_MAX_HEAP_SIZE 0x6000000
#endif
int __stacksize__ = CTR_STACK_SIZE;
unsigned int __linear_heap_size = CTR_LINEAR_HEAP_SIZE;
unsigned int __heap_size = CTR_MAX_HEAP_SIZE + CTR_STACK_SIZE;