mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
9 lines
244 B
C
9 lines
244 B
C
#include "types.h"
|
|
|
|
#define IRQMGR_STACK_SIZE 0x1000
|
|
#define PADMGR_STACK_SIZE 0x1000
|
|
#define GRAPH_STACK_SIZE 0x2000
|
|
|
|
extern u8 irqmgrStack [IRQMGR_STACK_SIZE];
|
|
extern u8 padmgrStack [PADMGR_STACK_SIZE];
|
|
extern u8 graphStack[GRAPH_STACK_SIZE]; |