mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
10 lines
224 B
C
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];
|