Files
ac-decomp/rel/sys_stacks.c
T
2023-03-13 11:58:42 +00:00

10 lines
224 B
C

#include "types.h"
#define IRQMGR_STACK_SIZE 0x1000
#define PADMGR_STACK_SIZE 0x1000
#define GRAPH_STACK_SIZE 0x2000
u8 graphStack[GRAPH_STACK_SIZE];
u8 padmgrStack [PADMGR_STACK_SIZE];
u8 irqmgrStack [IRQMGR_STACK_SIZE];