Files
2023-08-03 00:16:21 +02:00

16 lines
245 B
C

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